31.12.2010, 18:29
Trying to compile after I made my timer, this is the warning I get
The code I wrote
under game mode init
and the function
Note: It works fine in-game but I want the code to be clean.
Код:
TDM.pwn(279) : warning 235: public function lacks forward declaration (symbol "myfunction")
under game mode init
Код:
SetTimer("myfunction",200000, 1);
Код:
public myfunction(playerid) { SendClientMessage(playerid, COLOR_YELLOW, "Enjoy your stay at Hudgens Funserver"); return 1; }