Basicly I want only a certain section of my script to run on server etc, like the create vehicle parts etc.. Then after that I want the player to move to the vehicle but this can not happen unless I somehow tell it to run that part of the script on the player(s) machine.
---snip from my script--
#EASTP
?!(local Server): Goto "NextE"
_vcl = "BISCamel2" createVehicle getpos _padid
_vcl setdir (getDir _padid)
_vcl setpos [getPos _padid select 0, getPos _padid select 1, (getPos _padid select 2) + 500]
#NextE
?!(local Player): Goto "Exit2"
_unitid MoveinDriver _vcl
_vcl action ["Engine on"]
goto "Exit2"
-----------------
Basicly it creates a Camel Plane somewere and sets it all up etc, then afterwards it needs to place the player in it, this does not happen, and as you can see I tried local player.
Any help would be welcome.