02.06.2014, 13:36
hello guys im back to scripting but i have lost my mind please tell me what to do i have this error
and my lines are
Код:
C:\Users\Ashwin\Desktop\Land of Paradise\gamemodes\larp.pwn(25115) : error 021: symbol already defined: "strtok"
Код:
25114 :strtok(const string[], &index)
25115 :{
25116 : new length = strlen(string);
25117 : while ((index < length) && (string[index] <= ' '))
25118 : {
25119 : index++;
25120 : }
25121 :
25122 : new offset = index;
25123 : new result[20];
25124 : while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
25125 : {
25126 : result[index - offset] = string[index];
25127 : index++;
25128 : }
25129 : result[index - offset] = EOS;
25130 : return result;
25131 :}

