25.12.2011, 03:26
(
Last edited by §с†¶e®РµРe; 25/12/2011 at 05:37 AM.
)
FIXED
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;//25130
}
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(26621) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(26681) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(26734) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(27402) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(27461) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(28142) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(28170) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(28181) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(28241) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(28510) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(28537) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(28567) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(28575) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(28609) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(28617) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(28650) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(28695) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(28758) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(28816) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(28824) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(28859) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(28867) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(29094) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(29148) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(29201) : error 047: array sizes do not match, or destination array is too small
C:\Users\Haardik\Desktop\My Things\Street Life 1993\gamemodes\larp.pwn(29513) : error 047: array sizes do not match, or destination array is too small
Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
26 Errors.
cmd = strtok(cmdtext, idx);