a3_exile_occupation/scripts/eventHandlers/getOffBus.sqf
second_coming 6484c8c488 V45 Fixes
2016-06-05 03:52:03 +01:00

14 lines
351 B
Plaintext

// Triggered if a player gets off the public transport
_transport = _this select 0;
_unit = _this select 2;
_driver = driver _transport;
//_driver vehiclechat SC_occupyTransportGetOut;
if(_transport isKindOf "LandVehicle") then
{
_transport setFuel 0;
_transportDriver = driver _transport;
_transportDriver disableAI "MOVE";
};