18.03.2008, 20:49
Thank you very much 
I also added an example how you can make commands for a specific rank only
Example:
@ Rks, at the moment only 1 mode at a time

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;
}

