warning 235: public function lacks forward declaration (symbol "ProcuradoNivel")
public ProcuradoNivel()
public ProcuradoNivel()
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(WantedPoints[i] >= 1)
{
WantedPoints[i] -= 1;
SetPlayerWantedLevel(i, WantedPoints[i]);
format(gstring, sizeof(gstring), "Nнvel De Procurado: %d", WantedPoints[i]);
SendClientMessage(i, COLOR_YELLOW, gstring);
SetPlayerChatBubble(i, ".", COLOR_RED, 1, 1);
}
}
}
}