Hi, when I want to call the public, I get an error: Public with name _test does not exist
code:
debug log: https://pastebin.com/078tjL6uPHP Code:
//OnGameModeInit
CallPublic ( cmdname, ID, " " ) ; //cmdname = "_test"
//separate public
forward _test( playerid, params { } ) ;
public _test( playerid, params { } ) { return print ( "Test Command" ) ;}