/pm and /o
#2

bottom of ur filterscript :
Код:
//------------------------------------------------------------------------------------------------------------
stock strrest(const string[], &index)
{
	new length = strlen(string);
	while ((index < length) && (string[index] <= ' '))
	{
		index++;
	}
	new offset = index;
	new result[128];
	while ((index < length) && ((index - offset) < (sizeof(result) - 1)))
	{
		result[index - offset] = string[index];
		index++;
	}
	result[index - offset] = EOS;
	return result;
}
//----------------------------------------------------------
________
Suzuki dl1000 v-strom
Reply


Messages In This Thread
/pm and /o - by RoneyRemington - 01.03.2010, 00:47
Re: /pm and /o - by aircombat - 01.03.2010, 00:57
Re: /pm and /o - by RoneyRemington - 01.03.2010, 00:59
Re: /pm and /o - by aircombat - 01.03.2010, 01:00

Forum Jump:


Users browsing this thread: 1 Guest(s)