pawn Код:
for(new d = 0 ; d < MAX_PLAYERVEHICLES; d++)
{
new Float:x, Float:y, Float:z, Float:angle, Float:health;
GetVehicleHealth(PlayerVehicleInfo[playerid][d][pvId], health);
PlayerVehicleInfo[playerid][d][pvHealth] = health;
GetVehiclePos(PlayerVehicleInfo[playerid][d][pvId], x, y, z);
GetVehicleZAngle(PlayerVehicleInfo[playerid][d][pvId], angle);
UpdatePlayerVehicleParkPosition(playerid, d, x, y, z, angle, health);
}