ACE3/addons/sandbag/functions/fnc_deployCancel.sqf
2015-06-02 20:15:31 +02:00

34 lines
813 B
Plaintext

/*
* Author: Garth 'L-H' de Wet, Ruthberg
* Cancels sandbag deployment
*
* Arguments:
* None
*
* Return Value:
* None
*
* Example:
* call ace_sandbag_fnc_deployCancel;
*
* Public: No
*/
#include "script_component.hpp"
if (isNull GVAR(placer)) exitWith {};
[GVAR(deployPFH)] call cba_fnc_removePerFrameHandler;
if (!isNull (GVAR(sandBag))) then {
deleteVehicle GVAR(sandBag);
};
[GVAR(placer), "ACE_Sandbag", false] call EFUNC(Common,setForceWalkStatus);
call EFUNC(interaction,hideMouseHint);
[GVAR(placer), "DefaultAction", GVAR(placer) getVariable [QGVAR(Deploy), -1]] call EFUNC(Common,removeActionEventHandler);
[GVAR(placer), "zoomtemp", GVAR(placer) getVariable [QGVAR(Cancel), -1]] call EFUNC(Common,removeActionEventHandler);
GVAR(sandBag) = objNull;
GVAR(placer) = objNull;