17.07.2010, 05:31
pawn Код:
if (strcmp(cmd, "/removeadm", true)==0)
{
if (PlayerInfo[playerid][pAdmin] >= 1338)
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD1, "USE: /removeadm [PlayerName]");
return 1;
}
PlayerInfo[playerid][pAdmin] = 0;
}
return 1;
}