31.10.2016, 15:01
This is just to help you working more effective,
Instead of:
Do this:
This has further nothing to do with your question, though it's just a tip, take it or leave it.
Instead of:
PHP код:
if(PlayerInfo[playerid][pAdmin] == 5)
{
// code here
}
else
{
// error code here
}
return 1;
PHP код:
if(PlayerInfo[playerid][pAdmin] != 5) return // error code
// Your code here, and vouila done.
return 1;