18.03.2008, 20:51
Quote:
Originally Posted by =>Sandra<=
Thank you very much
I also added an example how you can make commands for a specific rank only Example: Code:
if(strcmp(cmdtext, "/command", true)==0) { if(GetPlayerRank(playerid) == 3) { //rest of command } else { SendClientMessage(playerid, 0xFF0000AA, "Sorry, this command is only for players with rank 3"); } return 1; } |