[ERROR] GiveCash
#5

under onplayercommandtext add :
Код:
new cmd[256];
bottom of ur script add :
Код:
//------------------------------------------------------------------------------------------------------
stock 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;
}
Reply


Messages In This Thread
[ERROR] GiveCash - by Samy_Romafia - 30.03.2010, 02:50
Re: [ERROR] GiveCash - by Samy_Romafia - 30.03.2010, 09:18
Re: [ERROR] GiveCash - by Samy_Romafia - 30.03.2010, 15:57
Re: [ERROR] GiveCash - by [MWR]Blood - 30.03.2010, 15:58
Re: [ERROR] GiveCash - by aircombat - 30.03.2010, 16:30

Forum Jump:


Users browsing this thread: 1 Guest(s)