12.08.2013, 18:34
You can improve efficiency and make the code more neat by using a switch instead using if, else if, else if etc.
Just something i had to point out![Smiley](images/smilies/smile.png)
Example:
Just something i had to point out
![Smiley](images/smilies/smile.png)
Example:
pawn Код:
switch(PlayerInfo[i][pAdmin])
{
case 1: AdminRank = "Helper";
case 2: AdminRank = "Moderator";
}