Plates
#1

Is it possible to set all cars the same number plate?
Reply
#2

Set it under OnVehicleSpawn
Reply
#3

Yes it is. And don't listen to Hal. All vehicles have the same plate by default.
Reply
#4

Quote:
Originally Posted by Hal
Посмотреть сообщение
Set it under OnVehicleSpawn
It sets as XYRZ 000
Reply
#5

If you want one custom plate on every vehicle set it under OnGameModeInit. Make sure the code is below the cars you have created.
Reply
#6

just add this below all vehicles at "OnGameModeInit"
pawn Код:
for(new v=0; v<MAX_VEHICLES; v++){
SetVehicleNumberPlate(v, "YOURPLATE");
}
Reply
#7

Did that,it's not working
Reply
#8

The way its done is just as said above,
Paste to OnGameModeInit()

pawn Код:
for(new i=1; i<MAX_VEHICLES; i++)
{
    SetVehicleNumberPlate(i, "SA-MP.COM");
}
Reply
#9

Quote:
Originally Posted by Anthonyx3'
Посмотреть сообщение
The way its done is just as said above,
Paste to OnGameModeInit()

pawn Код:
for(new i=1; i<MAX_VEHICLES; i++)
{
    SetVehicleNumberPlate(i, "SA-MP.COM");
}
Ive told you that i already did that but its just not working!
The numberplate its set to XYZR 000
Reply
#10

which rc version are you using?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)