Hallo Leute, ich habe hier 2 Errors,wo ich nicht weiß von was sie kommen:
Ich hoffe ihr könnt mir helfen.
ZitatC:\Users\Jonas\Desktop\Life Of Sun By ROnNNNY\Life Of Sun By ROnNNNY [VERÖFFENTLICHT]\gamemodes\LoS_Update2.pwn(55038) : error 021: symbol already defined: "strtok"
C:\Users\Jonas\Desktop\Life Of Sun By ROnNNNY\Life Of Sun By ROnNNNY [VERÖFFENTLICHT]\gamemodes\LoS_Update2.pwn(55053) : error 047: array sizes do not match, or destination array is too small
Teil des Scripts:
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;
}
 
		 
		
		
	
