I need some help please
#2

Код:
C:\Documents and Settings\Test\Desktop\GameZone\gamemodes\GameZone. pwn(12136) : error 021: symbol already defined: "strtok"
strtok is already defined, you have defined 2 or more times strtok.

Код:
C:\Documents and Settings\Test\Desktop\GameZone\gamemodes\GameZone. pwn(12151) : error 047: array sizes do not match, or destination array is too small
Here is the definition of strtok:
pawn Код:
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;
}
https://sampwiki.blast.hk/wiki/Strtok
Reply


Messages In This Thread
I need some help please - by bcretu64 - 18.06.2011, 05:00
Re: I need some help please - by arturo clark - 18.06.2011, 06:24
Re: I need some help please - by bcretu64 - 18.06.2011, 09:02
Re: I need some help please - by bcretu64 - 18.06.2011, 09:04

Forum Jump:


Users browsing this thread: 1 Guest(s)