18.02.2009, 01:18
It is pointless to do this.
Why not do this?
pawn Код:
if (AccountInfo[i][AdminLevel] >= 1 || IsPlayerAdmin(i))
{
}
else
{
// my code is here
}
pawn Код:
if (AccountInfo[i][AdminLevel] < 1 || !IsPlayerAdmin(i))
{
//code here
}