ACE3/addons/concertina_wire/XEH_postInit.sqf
2015-06-04 17:11:09 +02:00

12 lines
304 B
Plaintext

#include "script_component.hpp"
GVAR(placer) = objNull;
GVAR(deployPFH) = -1;
// Deploy concertina wire if interact menu is opened
["interactMenuOpened", {
if (GVAR(deployPFH) != -1) then {
GVAR(placer) setVariable [QGVAR(wireDeployed), true];
};
}] call EFUNC(common,addEventHandler);