A-System error
#7

we can see from this error message:
Quote:

undefined symbol "cmd_setadmin"

that you've correctly included zcmd.

so that's not a problem here, if he wouldn't have included it, the errors wouldn't be the same. - just sayin'

there's one more thing which can cause these kind of errors,
you might've forgotten a closing bracket "}" somewhere right above that command


as an example, something like this
pawn Код:
CMD:someCmdAbove(playerid, params[])
{
    //some code
    return 1;
//missing closing bracket

CMD:setadmin(playerid, params[])
{
    //some code
    return 1;
}
would cause exactly that errors you've got there

Код:
error 029: invalid expression, assumed zero
error 017: undefined symbol "cmd_setadmin"
error 029: invalid expression, assumed zero
fatal error 107: too many error messages on one line
also, there might be more errors/warnings waiting for you as the pawn parser
couldn't finish his job and stopped at that line.
Meaning it didn't parse the code after that line
Reply


Messages In This Thread
A-System error - by DeoXel - 14.08.2014, 04:34
Re: A-System error - by Sawalha - 14.08.2014, 04:36
Re: A-System error - by DeoXel - 14.08.2014, 04:44
Re: A-System error - by GGW - 14.08.2014, 04:47
Re: A-System error - by DeoXel - 14.08.2014, 04:56
Re: A-System error - by DeoXel - 14.08.2014, 07:54
Re: A-System error - by CutX - 14.08.2014, 08:02

Forum Jump:


Users browsing this thread: 1 Guest(s)