ACE3/addons/rearm/functions/fnc_disable.sqf
GitHawk d0509830e3 Some things
Made params nicer, replaced some forEach and used params in XEH_respawn
2016-05-12 14:55:40 +02:00

26 lines
443 B
Plaintext

/*
* Author: GitHawk
* Disables rearm for a vehicle.
*
* Arguments:
* 0: Vehicle <OBJECT>
* 1: Disable <BOOL><OPTIONAL>
*
* Return Value:
* None
*
* Example:
* [tank] call ace_rearm_fnc_disable
* [tank, false] call ace_rearm_fnc_disable
*
* Public: Yes
*/
#include "script_component.hpp"
params [
["_vehicle", objNull, [objNull]],
["_disable", true, [true]]
];
_vehicle setVariable [QGVAR(disabled), _disable, true];