/* * Author: Fisher, SilentSpike * Toggle Simulation on object. * * Arguments: * 0: The module logic * * Return Value: * None * * Public: No */ #include "script_component.hpp" params ["_logic"]; if !(local _logic) exitWith {}; private _object = attachedTo _logic; if (isNull _object) then { [LSTRING(NothingSelected)] call EFUNC(common,displayTextStructured); } else { [QEGVAR(common,enableSimulationGlobal), [_object, !(simulationEnabled _object)]] call CBA_fnc_serverEvent; }; deleteVehicle _logic;