13.02.2009, 21:35
Quote:
|
Originally Posted by harrold
No a yellow marker i don't wanna lock the doors
|
Quote:
|
Originally Posted by wiki.samp
SetVehicleParamsForPlayer(vehicleid,playerid,objec tive,doorslocked)
vehicle ID of the car playerid ID of the player objective Show a marker above the car for this player? doorslocked 0 means open,1 means locked |
pawn Код:
for(new i=0;i <MAX_PLAYERS; i++)
{
SetVehicleParamsForPlayer(GetPlayerVehicleID(i),i,1,0);
return 1;
}

