Quote:
Originally Posted by Bren
PHP код:
C:\Users\admin\Desktop\ZS\gamemodes\ZS.pwn(23874) : error 010: invalid function or declaration
C:\Users\admin\Desktop\ZS\gamemodes\ZS.pwn(23875) : error 010: invalid function or declaration
C:\Users\admin\Desktop\ZS\gamemodes\ZS.pwn(23876) : error 010: invalid function or declaration
C:\Users\admin\Desktop\ZS\gamemodes\ZS.pwn(23878) : error 010: invalid function or declaration
C:\Users\admin\Desktop\ZS\gamemodes\ZSs.pwn(23939) : error 017: undefined symbol "haveValue"
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
5 Errors.
|
Что за бездари пошли, не могут банальные ошибки поправить =\
PHP код:
bool:haveValue(const sourceArray[], value, limit = sizeof sourceArray) {
for (new i = 0; i < limit; i++) {
if (sourceArray[i] == value) return true;
}
return false;
}
for(new x; x < 6; x ++)
{
new value;
do {
value = random(10);
} while (haveValue(AdditionalReset, value, x));
AdditionalReset[x] = value;
}