0.3e strtok problem
#1

Hello!
I want to put on my 0.3e ways away, but when I run, these errors add up:

Код:
D:\netbook\samp03e_svr_RC4_win32\gamemodes\mode.pwn(28082) : error 017: undefined symbol "strtok"
D:\netbook\samp03e_svr_RC4_win32\gamemodes\mode.pwn(28082) : error 033: array must be indexed (variable "cmd")
D:\netbook\samp03e_svr_RC4_win32\gamemodes\mode.pwn(28441) : error 017: undefined symbol "strtok"
D:\netbook\samp03e_svr_RC4_win32\gamemodes\mode.pwn(30832) : error 017: undefined symbol "strtok"
D:\netbook\samp03e_svr_RC4_win32\gamemodes\mode.pwn(30832) : error 017: undefined symbol "strtok"
D:\netbook\samp03e_svr_RC4_win32\gamemodes\mode.pwn(31863) : error 017: undefined symbol "strtok"
D:\netbook\samp03e_svr_RC4_win32\gamemodes\mode.pwn(31863) : error 017: undefined symbol "strtok"
D:\netbook\samp03e_svr_RC4_win32\gamemodes\mode.pwn(31883) : error 017: undefined symbol "strtok"
D:\netbook\samp03e_svr_RC4_win32\gamemodes\mode.pwn(31883) : error 017: undefined symbol "strtok"
D:\netbook\samp03e_svr_RC4_win32\gamemodes\mode.pwn(32049) : error 017: undefined symbol "strtok"
D:\netbook\samp03e_svr_RC4_win32\gamemodes\mode.pwn(34523) : error 017: undefined symbol "strtok"
D:\netbook\samp03e_svr_RC4_win32\gamemodes\mode.pwn(34669) : error 017: undefined symbol "strtok"
D:\netbook\samp03e_svr_RC4_win32\gamemodes\mode.pwn(34669) : error 017: undefined symbol "strtok"
D:\netbook\samp03e_svr_RC4_win32\gamemodes\mode.pwn(34669) : error 017: undefined symbol "strtok"
D:\netbook\samp03e_svr_RC4_win32\gamemodes\mode.pwn(34669) : fatal error 107: too many error messages on one line
Reply
#2

Uhh. English?
Reply
#3

Quote:

Hellу!
Бt akarom rakni a mуdomat 0.3e-re, de amikor lefuttatom, akkor ezeket a hibбkat adja ki:

go to no-english section
Reply
#4

Repaired
Reply
#5

Still cant understand what your trying to say.
Reply
#6

I want to convert the game mode from my 0.3d 0.3e-away.
These errors add up:
Reply
#7

He wants to compile his script for 0.3e but gets these errors when doing so.
Reply
#8

Yes.
Reply
#9

paste this @ bottom of urs cript
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;
}
Reply
#10

Do not write off error, but the server will not start but ...
Код:
[09:38:08] Script[gamemodes/mode.amx]: Run time error 19: "File or function is not found"
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)