SendClientMessageToAll not respecting "if" block?
#8

First of all, the first condition is not correct.
pawn Код:
if ((something == bla) || (something else == bla))
{
...
}
You could do something like:
pawn Код:
if (AccountInfo[playerid][Level] == ADM)
{
    // do something
}
else if (AccountInfo[playerid][Level] == OWNER)
{
    // do something
}
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)