20.10.2010, 14:47
So there are two ways to do that.
pawn Код:
// Option 1:
new vehicleid = GetPlayerVehicleID(playerid);
SetVehiclePos(vehicleid, X, Y, Z); //fill in with your coordinates
//Option 2
SetVehiclePos(GetPlayerVehicleID(playerid), X, Y, Z); //Fill with your coordinates again