[DUVIDA]Placa
#1

Eu tava querendo colocar pra aparecer a placa ali onde tб o %d
pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++)
{
    new vehicle = GetPlayerVehicleID(i);
    if(vehicle > 0)
    {
        format(string, sizeof(string), "JKL-%d",vehicle);
        SetVehicleNumberPlate(vehicle,string);
    }
}
Alguйm pode me tirar a dъvida ? :/
Reply
#2

Sei o que vocк estб procurando, vi sua dъvida em outro tуpico em relaзгo б isso do ID dos veнculos nas placas dos mesmo .

Isto deve resolver o seu problema

Coloque:

pawn Код:
//No OnGameModeInit:

for(new x = 0; x < MAX_VEHICLES; x++)
{
    new text[14];
    format(text, sizeof(text), "JKL-%i",x);
    SetVehicleNumberPlate(x,text);
    SetVehicleToRespawn(x);
}
Espero ter ajudado
Reply
#3

rjjj sempre owando kk ate eu usei
Reply
#4

Rjj este cуdigo irб apenas botar o numero mбximo de veiculos na placa.

faz asssim:

pawn Код:
for(new x = 0; x < MAX_VEHICLES; x++)
{
    new text[14];
    new Gato[7][10] = {"A","b","G","h","A","T","O" };
    format(text, sizeof(text), "%d%d%d-%i",random(Gato),random(Gato),random(Gato), x);
    SetVehicleNumberPlate(x,text);
    SetVehicleToRespawn(x);
}

Espero nгo ter ajudado.
Reply
#5

Espero nгo ter ajudado. KKK gostei !
Reply
#6

[QUOTE='[Full]Garfield[XDB];1118582']Rjj este cуdigo irб apenas botar o numero mбximo de veiculos na placa.

faz asssim:

pawn Код:
for(new x = 0; x < MAX_VEHICLES; x++)
{
    new text[14];
    new Gato[7][10] = {"A","b","G","h","A","T","O" };
    format(text, sizeof(text), "%d%d%d-%i",random(Gato),random(Gato),random(Gato), x);
    SetVehicleNumberPlate(x,text);
    SetVehicleToRespawn(x);
}
error 035: argument type mismatch (argument 1)

Linha 2720:
format(text, sizeof(text), "%d%d%d-%i",random(Gato),random(Gato),random(Gato), x);
Reply
#7

pawn Код:
for(new x = 0; x < MAX_VEHICLES; x++)
{
    new text[64];
    format(text, sizeof(text), "XD-%d%d%d",random(8),random(8),random(8));
    SetVehicleNumberPlate(x, text);
    SetVehicleToRespawn(x);
}
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)