mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
37 lines
927 B
Plaintext
37 lines
927 B
Plaintext
/*
|
|
* Author: Garth 'L-H' de Wet, Ruthberg, edited by commy2 for better MP and eventual AI support
|
|
* Cancels sandbag deployment
|
|
*
|
|
* Arguments:
|
|
* 0: unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [ACE_player] call ace_sandbag_fnc_deployCancel
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit"];
|
|
|
|
// enable running again
|
|
[_unit, "ACE_Sandbag", false] call EFUNC(common,setForceWalkStatus);
|
|
|
|
// delete placement dummy
|
|
deleteVehicle GVAR(sandBag);
|
|
|
|
// remove deployment pfh
|
|
[GVAR(deployPFH)] call CBA_fnc_removePerFrameHandler;
|
|
GVAR(deployPFH) = -1;
|
|
|
|
// remove mouse button actions
|
|
call EFUNC(interaction,hideMouseHint);
|
|
|
|
[_unit, "DefaultAction", _unit getVariable [QGVAR(Deploy), -1]] call EFUNC(common,removeActionEventHandler);
|
|
[_unit, "zoomtemp", _unit getVariable [QGVAR(Cancel), -1]] call EFUNC(common,removeActionEventHandler);
|
|
|
|
_unit setVariable [QGVAR(isDeploying), false, true];
|