16.08.2011, 21:51
Cуdigo:
pawn Код:
if(dialogid == 4) // linha 856 ..
{
if(response == 0) // Se Ele Apertar Em Cancelar, Ou Seja, Aparecerб o Dialog Denovo, Obrigando ele a Escolher.
{
ShowPlayerDialog(playerid, GANG, DIALOG_STYLE_LIST, "Escolha o Seu Time","Zumbis\nHumanos","Selecionar","Cancelar");
}
if(response == 1)
{
if(listitem == 0)
{
gTeam[playerid] = Nazistas; // ou gTeam[playerid] == 1; ( Seta Ele Para Gang Aztecas )
SetPlayerSkin(playerid, 116); // Setarб Ele Para Skin 116, Dos Aztecas.
SendClientMessage(playerid, CorNazi,"Vocк Escolheu Ser Nazi.");
SpawnPlayer(playerid); // Spawn o Player
return true;
}
if(listitem == 1)
{
gTeam[playerid] = Mexicanos; // ou gTeam[playerid] == 2; ( Seta Ele Para Gang Grove )
SetPlayerSkin(playerid, 107); // Setarб Ele Para Skin 107, Dos Grove.
SendClientMessage(playerid, CorMexicano,"Vocк Escolheu Ser Mexicanos.");
SpawnPlayer(playerid); // Spawn o Player
return true;
}
if(listitem == 2)
{
gTeam[playerid] = Gangsters; // ou gTeam[playerid] == 3; ( Seta Ele Para Gang Ballas)
SetPlayerSkin(playerid, 102); // Setarб Ele Para Skin 107, Dos Ballas.
SendClientMessage(playerid, CorGangster,"Vocк Escolheu Ser Gangster.");
SpawnPlayer(playerid); // Spawn o Player
return true;
}
return true;
}
return true;
}
Erros:
pawn Код:
C:\Documents and Settings\Pedro Nobre\Ambiente de trabalho\Blank Gamemode\gamemodes\Blank.pwn(856) : error 010: invalid function or declaration
C:\Documents and Settings\Pedro Nobre\Ambiente de trabalho\Blank Gamemode\gamemodes\Blank.pwn(858) : error 010: invalid function or declaration
C:\Documents and Settings\Pedro Nobre\Ambiente de trabalho\Blank Gamemode\gamemodes\Blank.pwn(862) : error 010: invalid function or declaration
C:\Documents and Settings\Pedro Nobre\Ambiente de trabalho\Blank Gamemode\gamemodes\Blank.pwn(864) : error 010: invalid function or declaration
C:\Documents and Settings\Pedro Nobre\Ambiente de trabalho\Blank Gamemode\gamemodes\Blank.pwn(870) : error 010: invalid function or declaration
C:\Documents and Settings\Pedro Nobre\Ambiente de trabalho\Blank Gamemode\gamemodes\Blank.pwn(872) : error 010: invalid function or declaration
C:\Documents and Settings\Pedro Nobre\Ambiente de trabalho\Blank Gamemode\gamemodes\Blank.pwn(878) : error 010: invalid function or declaration
C:\Documents and Settings\Pedro Nobre\Ambiente de trabalho\Blank Gamemode\gamemodes\Blank.pwn(880) : error 010: invalid function or declaration
C:\Documents and Settings\Pedro Nobre\Ambiente de trabalho\Blank Gamemode\gamemodes\Blank.pwn(886) : error 010: invalid function or declaration
C:\Documents and Settings\Pedro Nobre\Ambiente de trabalho\Blank Gamemode\gamemodes\Blank.pwn(888) : error 010: invalid function or declaration
C:\Documents and Settings\Pedro Nobre\Ambiente de trabalho\Blank Gamemode\gamemodes\Blank.pwn(890) : error 010: invalid function or declaration