Problem Including IsPlayerLAdmin
#2

delete this from ur script :
Код:
strtok(const string[], &index)
{
	new length = strlen(string);
	while ((index < length) && (string[index] <= ' '))
	{
		index++;
	}

	new offset = index;
	new result[20];
	while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
	{
		result[index - offset] = string[index];
		index++;
	}
	result[index - offset] = EOS;
	return result;
}
and add in top of ur Script under the include :
Код:
#pragma unused ret_memcpy
Reply


Messages In This Thread
Problem Including IsPlayerLAdmin - by [SsC11]MAVERIK - 31.03.2010, 17:54
Re: Problem Including IsPlayerLAdmin - by aircombat - 31.03.2010, 18:03
Re: Problem Including IsPlayerLAdmin - by [SsC11]MAVERIK - 31.03.2010, 18:08
Re: Problem Including IsPlayerLAdmin - by aircombat - 31.03.2010, 18:12

Forum Jump:


Users browsing this thread: 1 Guest(s)