23.06.2013, 00:15
estou com um problema com esses 2 warnings que nгo consigo arruma se alguem poder me ajuda '-'
Linha do erro:
pawn Код:
C:\Users\Caio Alaf\Desktop\samp\gamemodes\GM-GG.pwn(2614) : warning 204: symbol is assigned a value that is never used: "GuerranoParque"
C:\Users\Caio Alaf\Desktop\samp\gamemodes\GM-GG.pwn(2605) : warning 204: symbol is assigned a value that is never used: "GuerranoQuadra"
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
2 Warnings.
pawn Код:
new GuerranoQuadra;
new GuerranoParque;
public AztecasTomou(playerid)
{
if(PlayerNoTerritorio(playerid,MORRO))
{
GangZoneStopFlashForAll(morroterritorio);
GangZoneHideForAll(morroterritorio);
GangZoneShowForAll(morroterritorio,CorAztecas);
Dominando[playerid] = 0;
GuerranoMorro = 0;
SendClientMessageToAll(CorVagos, "-|TERRITУRIO|- Aztecas consegue tomar o controle de Las Colinas.");
}
else if(PlayerNoTerritorio(playerid,QUADRA))
{
GangZoneStopFlashForAll(quadraterritorio);
GangZoneHideForAll(quadraterritorio);
GangZoneShowForAll(quadraterritorio,CorAztecas);
Dominando[playerid] = 0;
GuerranoQuadra = 0;
SendClientMessageToAll(CorVagos, "-|TERRITУRIO|- Aztecas consegue tomar o controle da Quadra de Basquete.");
}
else if(PlayerNoTerritorio(playerid,PARQUE))
{
GangZoneStopFlashForAll(parqueterritorio);
GangZoneHideForAll(parqueterritorio);
GangZoneShowForAll(parqueterritorio,CorAztecas);
Dominando[playerid] = 0;
GuerranoParque = 0;
SendClientMessageToAll(CorVagos, "-|TERRITУRIO|- Aztecas consegue tomar o controle do Glenn Park.");
}
return 1;
}
Linha do erro:
pawn Код:
GuerranoParque = 0;