17.11.2017, 20:24
Hey there
Today i found this on Southclaw's github.
Anyway i tried to compile this, but i got this error
So i wanna ask, what is this?
Today i found this on Southclaw's github.
Код:
forward sif_debug_printf(handler, level, playerid, string[], {Float,_}:...); stock sif_debug_printf(handler, level, playerid, string[], {Float,_}:...) { if(!SIF_IS_VALID_HANDLER(handler)) return 0; if(dbg_Level[handler] < level) return 0; if(playerid != INVALID_PLAYER_ID && dbg_PlayerLevel[playerid][handler] < level) return 0; new str[256]; format(str, sizeof(str), string, ___(4)); sif_debug_print(handler, level, playerid, str); return 1; }
Код:
new str[256]; format(str, sizeof(str), string, ___(4)); sif_debug_print(handler, level, playerid, str);
Код:
error 017: undefined symbol "___"
Код:
format(str, sizeof(str), string, ___(4));