[SUPPORT] Mission vehicles warning + Bicycle handbrake

Sandbird

Valued Member!
This is the discussion and support thread for ESS - Enhanced Spawn Selection.

>> Release Thread Link <<

Please remember to check client and server RPT files for errors:

Client RPT: C:\Users\YourName\AppData\Local\ArmA 2 OA\arma2oa.RPT
Server RPT: FTP\server config directory\arma2oaserver.RPT

Launch your game with -showScriptErrors parameter while testing!

Don't forget to mention what mod and version you are running in your post!
Please wait for the thread to be reviewed and approved before commenting T_T
 
why not just set a GetIn EventHandler which tells the player that this vehicle is despawning on restart right in the vehicle spawn. So you dont have to check everytime for a variable and if the player is in a vehicle:

Yes this can be set on the server.pbo

Code:
_object addEventHandler ["GetIn",{
            _nil = [nil,(_this select 2),"loc",rTITLETEXT,"Warning: This vehicle will disappear on server restart!","PLAIN DOWN",5] call RE;
        }];

Credits to Vampire
 
Nice idea, didnt think of doing that!
Well the whole post was mostly for the bicycle thingy :) I added it inside my check for mission spawned vehicles and thought why not give them both.
 
Back
Top