18.12.2012, 11:01
Oi galera, estou aqui perguntando de novo .
Bom, eu estava fazendo um sisteminha bбsico de fome, para ver se eu tф pegando a o jeitinho da coisa.. E deu estes erro. Analisem o code para min por favor.
Erros :
C:\Users\Raн\Documents\GM\gamemodes\ZRP.pwn(25) : error 055: start of function body without function header
C:\Users\Raн\Documents\GM\gamemodes\ZRP.pwn(26) : error 010: invalid function or declaration
C:\Users\Raн\Documents\GM\gamemodes\ZRP.pwn(30) : error 010: invalid function or declaration
(Vejam se ele esse sistema funcionarб tambйm por favor ?)
Bom, eu estava fazendo um sisteminha bбsico de fome, para ver se eu tф pegando a o jeitinho da coisa.. E deu estes erro. Analisem o code para min por favor.
pawn Код:
// Topo GM
new Fome[MAX_PLAYERS];
forward pFome(playerid);
public pFome();
{
if (Fome[playerid] => 10)
{
Fome[playerid]--;
}
else (Fome[playerid] =< 10)
{
Fome[playerid]--;
SetPlayerHealth(playerid, -10);
SendClientMessage(playerid, VERMELHO,"Vocк perdeu vida por estar com muita fome");
}
{
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/status", cmdtext, true, 10) == 0)
{
new stringFome[256];
SendClientMessage(playerid,VERDE,"Seus status:");
format(stringFome,sizeof(stringFome),"Fome: %d", Fome[playerid]);
SendClientMessage(playerid,0xFF9933AA, stringFome);
return 1;
}
return 0;
}
public OnGameModeInit()
{
SetGameModeText("ZBR-RP");
DisableInteriorEnterExits();
SetTimer("pFome", 3600000 , true);
return 1;
}
C:\Users\Raн\Documents\GM\gamemodes\ZRP.pwn(25) : error 055: start of function body without function header
C:\Users\Raн\Documents\GM\gamemodes\ZRP.pwn(26) : error 010: invalid function or declaration
C:\Users\Raн\Documents\GM\gamemodes\ZRP.pwn(30) : error 010: invalid function or declaration
(Vejam se ele esse sistema funcionarб tambйm por favor ?)