20.10.2011, 16:08
I kept the
And I replace this
To
But I got a warning
Should I add
pawn Код:
SetTimer("Online",60000,1);
pawn Код:
forward Online();
public Online()
{
for(new i = 0;i != MAX_PLAYERS;++i)
{
SetPlayerScore(i, GetPlayerScore(i)+1);
}
return 1;
}
pawn Код:
public Online()
{
for(new i = 0;i != MAX_PLAYERS;++i)
{
SetPlayerScore(i, GetPlayerScore(i)+1);
print("Called");
}
return 1;
}
pawn Код:
C:\Documents and Settings\orion\Фб ЭггсбцЬ мпх\Downloads\samp03csvr_R2-2_win32 (2)\gamemodes\Xtreamgaming.pwn(6650) : warning 235: public function lacks forward declaration (symbol "Online")
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Warning.
pawn Код:
forward Online();