ACE3/addons/malyutka/functions/fnc_initSuitcase.sqf
Brandon Danyluk fc7b310529 Add realistic 9m14 behaviour
the 9m14 control joystick can attach 4 9m14 launchers at a time. Replicate that here
2021-05-08 02:48:40 -06:00

25 lines
540 B
Plaintext

#include "script_component.hpp"
/*
* Author: Brandon (TCVM)
* Initialise suitcase launcher
*
* Arguments:
* 0: Static Weapon <OBJECT>
* 1: Unit <OBJECT>
*
* Return Value:
* None
*
* Example:
* [cursorObject, player] call ace_malyutka_fnc_initSuitcase
*
* Public: No
*/
params ["_suitcase"];
_suitcase setVariable [QGVAR(plugTaken), false, true];
_suitcase setVariable [QGVAR(plugRope), objNull, true];
_suitcase setVariable [QGVAR(plugHeader), objNull, true];
_suitcase setVariable [QGVAR(attachedToPlugNumber), -1, true];