Need Car Number
#1

Some 1 can give me any script for car number for example the number to be Kawasaki , not XYZX DDD here >> http://imageshack.us/f/641/numberr.png/
Reply
#2

https://sampwiki.blast.hk/wiki/SetVehiclePlate
Reply
#3

i use this is my gamemode ?
pawn Код:
{
            SetVehicleNumberPlate(e, "{FF0000}text you want here ");
            SetVehicleToRespawn(e);
        }
change the hex code as its set to colour red.
Reply
#4

@[LHT]Bally where in gamemode to put this code??
Reply
#5

Quote:
Originally Posted by [LHT]Bally
Посмотреть сообщение
i use this is my gamemode ?
pawn Код:
{
            SetVehicleNumberPlate(e, "{FF0000}text you want here ");
            SetVehicleToRespawn(e);
        }
change the hex code as its set to colour red.
You missed the loop.

OT: Do you only want the 'Kawasaki' numberplate to show only on a certain vehicle?
Reply
#6

I wanna "Kawasaki" on all vehicles
Reply
#7

pawn Код:
for(new i=1;i<=MAX_VEHICLES;i++)
{
     SetVehicleNumberPlate(i,"Kawasaki");
     SetVehicleToRespawn(i);
}
Reply
#8

i have it under ongamemodeinit

this is all i have in there to do with plates , im sure someone will correct me if this is wrong

pawn Код:
for(new e=1; e<MAX_VEHICLES; e++)
        {
            SetVehicleNumberPlate(e, "{FFFFFF}Kawasaki");
            SetVehicleToRespawn(e);
        }
Reply
#9

[LHT]Bally I put that but again the number is like my 1st post
Reply
#10

Quote:
Originally Posted by deqn_0000
Посмотреть сообщение
[LHT]Bally I put that but again the number is like my 1st post
What do you mean? And make sure it's "<="

EDIT: Also make sure you do the loop after creating the vehicles.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)