How to see all admins commands?
#2

One way
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
  if(!strcmp(cmd, "/admincommands", true))
  {
     if(IsPlayerAdmin(playerid))
     {
          SendClientMessage(playerid,COLOR_WHITE,"/slap /kick /warn /ban"); //Add more
          return 1;
     }
     return 0;
}
2nd wany for zcmd
pawn Код:
CMD:admincommands(playerid,params[])
{
     if(IsPlayerAdmin(playerid))
     {
          SendClientMessage(playerid,COLOR_WHITE,"/slap /kick /warn /ban"); //Add more
          return 1;
     }
     return 1;
}
Reply


Messages In This Thread
How to see all admins commands? - by UlanHafiz - 01.09.2013, 13:31
Re: How to see all admins commands? - by IceBilizard - 01.09.2013, 13:40

Forum Jump:


Users browsing this thread: 2 Guest(s)