[ERROR] Help whats wrong ?
#1

Hey guys i have a huge problem here

Look at this error
Код:
error 021: symbol already defined: "strtok"
But the thing is that i dont have more the one of it

Код:
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
#2

Then delete that function because it's probably already in one of your includes.
Reply
#3

Quote:
Originally Posted by [HiC
TheKiller ]
Then delete that function because it's probably already in one of your includes.
Yeah well might bee but i think thats one part of an other error that i am trying to find out, but i never get it to work
You know anything about the ownable vehicles on LA:RP ? i have them in my own but i have a huge problem there.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)