What is this? " ____ "
#1

Hey there

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);
Anyway i tried to compile this, but i got this error
Код:
error 017: undefined symbol "___"
So i wanna ask, what is this?
Код:
format(str, sizeof(str), string, ___(4));
Reply


Messages In This Thread
What is this? " ____ " - by m4karow - 17.11.2017, 20:24
Re: What is this? " ____ " - by Sew_Sumi - 17.11.2017, 20:28
Re: What is this? " ____ " - by m4karow - 18.11.2017, 07:12
Re: What is this? " ____ " - by Codeah - 18.11.2017, 08:33
Re: What is this? " ____ " - by Konstantinos - 18.11.2017, 08:36
Re: What is this? " ____ " - by m4karow - 18.11.2017, 09:12
Re: What is this? " ____ " - by Misiur - 18.11.2017, 10:34
Re: What is this? " ____ " - by m4karow - 18.11.2017, 12:58
Re: What is this? " ____ " - by m4karow - 18.11.2017, 15:04

Forum Jump:


Users browsing this thread: 2 Guest(s)