23.10.2009, 15:17
Hi!
I'm updating my script to 0.3 but there is a problem:
A player can get a car in my script with /taxi and his name is then on the numberplate.
In 0.3 he only gets a random numberplate
Could anyone help me?
Here's my script:
Thanks for help!
adihash
I'm updating my script to 0.3 but there is a problem:
A player can get a car in my script with /taxi and his name is then on the numberplate.
In 0.3 he only gets a random numberplate
Could anyone help me?
Here's my script:
Код:
new Float:x,Float:y,Float:z; GetPlayerPos(playerid,x,y,z); new taxi=CreateVehicle(420,x+1,y,z,0,7,0,999999); new name[20]; GetPlayerName(playerid,name,20); SetVehicleNumberPlate(taxi, name); SetVehicleToRespawn(taxi);
adihash