fatal error 107: too many error messages on one line
#1

pawn Code:
if (strlen(PASSWORD) != 0){ format(sendcmd, sizeof(sendcmd), "password %s", PASSWORD); SendRconCommand(sendcmd),}
Something wrong....
Please help
pawn Code:
error 029: invalid expression, assumed zero
 error 001: expected token: ",", but found ";"
 error 029: invalid expression, assumed zero
 fatal error 107: too many error messages on one line
Reply
#2

if (strlen(PASSWORD) != 0){ format(sendcmd, sizeof(sendcmd), "password %s", PASSWORD); SendRconCommand(sendcmd);}
Try that,you got a period at end of the last function,instead of semicolon,
Reply
#3

If you insist on putting this all on one line...:

pawn Code:
if(strlen(PASSWORD) != 0) { format(sendcmd, sizeof(sendcmd), "password %s", PASSWORD); SendRconCommand(sendcmd); }
Reply
#4

pawn Code:
if (strlen(PASSWORD) != 0)
{
 format(sendcmd, sizeof(sendcmd), "password %s", PASSWORD);
 SendRconCommand(sendcmd);
}

This?

EDIT: Umm he is faster D:
Reply
#5

If i edit this... Almost every lane
error 010: invalid function or declaration

Edit: i cant remove this, i cant edit this, if i edit other lanes will be damaged.
Reply
#6

UP....
Reply
#7

Bump.
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)