mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
24 lines
568 B
Plaintext
24 lines
568 B
Plaintext
|
#include "script_component.hpp"
|
||
|
/*
|
||
|
* Author: Cuel, mharis001
|
||
|
* Adds a custom deploy handler.
|
||
|
* Code needs to return BOOL: true (allowed) / false (blocked).
|
||
|
*
|
||
|
* Arguments:
|
||
|
* 0: Code <CODE>
|
||
|
* - Passed [Unit <OBJECT>, Object being placed <OBJECT>, Cost <NUMBER>]
|
||
|
*
|
||
|
* Return Value:
|
||
|
* None
|
||
|
*
|
||
|
* Example:
|
||
|
* [{(_this select 0) getVariable ["isBobTheBuilder", false]}] call ace_fortify_fnc_addDeployHandler
|
||
|
*
|
||
|
* Public: Yes
|
||
|
*/
|
||
|
|
||
|
params [["_code", {}, [{}]]];
|
||
|
|
||
|
if (_code isEqualTo {} || {_code isEqualTo {true}}) exitWith {};
|
||
|
GVAR(deployHandlers) pushBack _code;
|