01.04.2009, 18:58
SetVehiclePos isnt synced, The best thing to do is store thier position to a variable, Put them in thier car, Then TP them and thier car back to the original position, Like this
pawn Код:
new Float:X, Float:Y, Float:Z;
GetPlayerPos(playerid,X,Y,Z);
PutPlayerInVehicle(playerid, pInfo[playerid][OwnCar], 0);
SeVehiclePos(pInfo[playerid][OwnCar], X, Y, Z);
SendClientMessage(playerid,c_green,"You have teleported your car to your position.");

