ACE3/addons/rearm/functions/fnc_disable.sqf

26 lines
443 B
Plaintext
Raw Normal View History

2016-02-25 09:18:31 +00:00
/*
* Author: GitHawk
* Disables rearm for a vehicle.
*
* Arguments:
2016-02-27 20:05:19 +00:00
* 0: Vehicle <OBJECT>
* 1: Disable <BOOL>(optional)
2016-02-25 09:18:31 +00:00
*
* 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]]
];
2016-02-27 20:05:19 +00:00
_vehicle setVariable [QGVAR(disabled), _disable, true];