a3_exile_occupation/scripts/reactions/getOffBus.sqf

11 lines
272 B
Plaintext
Raw Normal View History

2016-04-27 10:09:01 +00:00
// Triggered if a player gets off the public transport
_transport = _this select 0;
_unit = _this select 2;
if(_transport isKindOf "LandVehicle") then
{
_transport setFuel 0;
_transportDriver = driver _transport;
_transportDriver disableAI "MOVE";
2016-05-05 11:23:52 +00:00
};