radio errror
#2

I add this to your 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 i think, not sure, you ave to add thiis

Код:
new tmp[25];
Reply


Messages In This Thread
radio errror - by bartje01 - 06.02.2010, 11:44
Re: radio errror - by scott1 - 06.02.2010, 11:52
Re: radio errror - by bartje01 - 06.02.2010, 12:03
Re: radio errror - by scott1 - 06.02.2010, 12:28
Re: radio errror - by bartje01 - 06.02.2010, 12:57

Forum Jump:


Users browsing this thread: 1 Guest(s)