12.10.2011, 20:15
Okay, first you'll need to define a new integer (I guess that's by using #define. I'm sorry but I'm kinda new to PAWN. I can understand it just because I'm a C programmer :/ )
Then you make a command that changes it
for example:
Then you make a command that changes it
for example:
Quote:
if(strcmp(cmd, "/changerank", true) == 0) { if(PlayerInfo[playerid][pAdmin] >= 0) { (The integer responsible for the rank of ID of the player you entered changes) } } return 1; } |