[Duvida]Placa Carros -
Jorge_Hard - 07.03.2011
Como faзo pra tipo todos os carros do serve.
Fica com uma placa igual tipo troca todas por "- Teste -"
Ai todas placa fica teste.
alguem souber fala ai, ja vi num serve que todas placas vinham mudadas.
Agradeзo
Re: [Duvida]Placa Carros -
[AF]Junior - 07.03.2011
Final do OnGameModeInit
pawn Код:
for(new i=1; i<MAX_VEHICLES; i++)
{
SetVehicleNumberPlate(i, "- Teste -");
}
return 1;
}
Re: [Duvida]Placa Carros -
Jorge_Hard - 07.03.2011
Quote:
Originally Posted by [AF]Junior
Final do OnGameModeInit
pawn Код:
for(new i=1; i<MAX_VEHICLES; i++) { SetVehicleNumberPlate(i, "- Teste -"); } return 1; }
|
C:\Users\Jorge\Desktop\SAMP 0.3c\gamemodes\BBG3.pwn(4632) : error 010: invalid function or declaration
C:\Users\Jorge\Desktop\SAMP 0.3c\gamemodes\BBG3.pwn(4636) : error 010: invalid function or declaration
Re: [Duvida]Placa Carros -
GuikBretas - 07.03.2011
no GF/LARP num funciona :X
Re: [Duvida]Placa Carros -
[AF]Junior - 07.03.2011
pхe isso depois das #define
Re: [Duvida]Placa Carros -
Jorge_Hard - 07.03.2011
Quote:
Originally Posted by [AF]Junior
pхe isso depois das #define
|
Lol esse pragma tirou 20 Warnigns que tinha :O
Mais o comando ainda da
C:\Users\Jorge\Desktop\SAMP 0.3c\gamemodes\BBG3.pwn(4632) : error 010: invalid function or declaration
C:\Users\Jorge\Desktop\SAMP 0.3c\gamemodes\BBG3.pwn(4636) : error 010: invalid function or declaration
Re: [Duvida]Placa Carros -
[AF]Junior - 07.03.2011
Nem sei, mas tirei as suas warnings, rs.
Re: [Duvida]Placa Carros - rjjj - 07.03.2011
Coloque na sua public OnGameModeInit:
pawn Код:
for(new x = 0; x < MAX_VEHICLES; x++)
{
SetVehiclePlate(x, "- Teste -");
}
Requer a include KveH:
https://sampforum.blast.hk/showthread.php?tid=228434
Espero ter ajudado
Re: [Duvida]Placa Carros -
Jorge_Hard - 07.03.2011
2 Erros.
pawn Код:
C:\Users\Jorge\Desktop\SAMP 0.3c\gamemodes\BBG3.pwn(4630) : error 010: invalid function or declaration
C:\Users\Jorge\Desktop\SAMP 0.3c\gamemodes\BBG3.pwn(4632) : error 021: symbol already defined: "SetVehiclePlate"
Re: [Duvida]Placa Carros - rjjj - 07.03.2011
Quote:
Originally Posted by Jorge_Hard
2 Erros.
pawn Код:
C:\Users\Jorge\Desktop\SAMP 0.3c\gamemodes\BBG3.pwn(4630) : error 010: invalid function or declaration C:\Users\Jorge\Desktop\SAMP 0.3c\gamemodes\BBG3.pwn(4632) : error 021: symbol already defined: "SetVehiclePlate"
|
Aqui compilou normal
.
SetVehiclePlate jб estб definido no seu GM, ou seja, talvez voce ja tenha a include ou tenha outra funзгo com o nome SetVehiclePlate.
Se tiver apague-a
.
Espero ter ajudado