13.10.2014, 21:15
Certamente se estб funзгo estб com o parвmetros certos deve ser em alguma linha prуxima.
Na linha acima (Linha: 24231) estб faltando um parenteses.
A variбvel health jб foi definida em um nнvel superior.
Exemplo:
O aviso ocorre por existir uma variбvel local ( que morre depois de fechar uma chave ) e uma global com o mesmo nome.
Код:
C:\Documents and Settings\Administrador\Desktop\samp03\gamemodes\BUL.pwn(24232) : error 001: expected token: ")", but found "{"
Код:
warning 219: local variable "health" shadows a variable at a preceding level
Exemplo:
pawn Код:
//Topo do game mode
/new health; // variбvel global
public OnPlayerSpawn(playerid)
{
new health; // variбvel local
return 1;
}// A variбvel й destruнda depois de ler estб chave.