29.11.2012, 17:15
Honestly, I don't know what you're asking. I'm going to try to help by assuming that you're asking, "How do you teleport a player when he enters the state as a 'driver'?"
Under OnPlayerEnterVehicle create an 'if' statement similar to the one I'll create below.
Under OnPlayerEnterVehicle create an 'if' statement similar to the one I'll create below.
pawn Код:
if(ispassenger == 0) // This says that he's the driver
{
// Teleport player/vehicle to where ever you want here.
}