E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(25136) : error 021: symbol already defined: "strtok"
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(25151) : error 047: array sizes do not match, or destination array is too small
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(26624) : error 047: array sizes do not match, or destination array is too small
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(26684) : error 047: array sizes do not match, or destination array is too small
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(26737) : error 047: array sizes do not match, or destination array is too small
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(27412) : error 047: array sizes do not match, or destination array is too small
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(27471) : error 047: array sizes do not match, or destination array is too small
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(28152) : error 047: array sizes do not match, or destination array is too small
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(28180) : error 047: array sizes do not match, or destination array is too small
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(28191) : error 047: array sizes do not match, or destination array is too small
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(28251) : error 047: array sizes do not match, or destination array is too small
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(28521) : error 047: array sizes do not match, or destination array is too small
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(28548) : error 047: array sizes do not match, or destination array is too small
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(28578) : error 047: array sizes do not match, or destination array is too small
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(28586) : error 047: array sizes do not match, or destination array is too small
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(28620) : error 047: array sizes do not match, or destination array is too small
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(28628) : error 047: array sizes do not match, or destination array is too small
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(28661) : error 047: array sizes do not match, or destination array is too small
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(28706) : error 047: array sizes do not match, or destination array is too small
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(28769) : error 047: array sizes do not match, or destination array is too small
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(28827) : error 047: array sizes do not match, or destination array is too small
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(28835) : error 047: array sizes do not match, or destination array is too small
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(28870) : error 047: array sizes do not match, or destination array is too small
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(28878) : error 047: array sizes do not match, or destination array is too small
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(29073) : error 047: array sizes do not match, or destination array is too small
E:\GTB640~1.ASA\SERVER~1\SA-MPS~2\Raven-RP\GAMEMO~1\larp.pwn(29127) : 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.
26 errors = Missing breacket |
strtok(const string[], &index)
{
tmp = strtok(cmdtext, idx);
stock strtok(const string[], &index,seperator=' ')
{
new length = strlen(string);
new offset = index;
new result[MAX_STRING];
while ((index < length) && (string[index] != seperator) && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = string[index];
index++;
}
result[index - offset] = EOS;
if ((index < length) && (string[index] == seperator))
{
index++;
}
return result;
}