Block command(s)
#1

^^^^^^^^
Reply
#2

Using ZCMD here u go
and a bool....
pawn Код:
new bool:commandsTog;


//example
CMD:togcmds(playerid, params[])
{
  // ad ur admin variables here such as IsPlayerAdmin or w/e ur using
  if(commandsTog == false)
  {
    commandsTog = true;
  }
  else
  {
   commandsTog = false ;
  }
  return 1;
}

//now in any command all u have to do is add this command somewhere @ the top of it
CMD:ah(playerid, params[])
{
  if(commandsTog == true) return SendClientMessage(playerid, -1, "Command is disabled");
  /*
     Coding w/e else u have suggest add somewhere at the top of the command so the cmd won't be
    executed... probably after the new's or something...
  */

  return 1;
}
Reply
#3

^^^^^^^^
Reply
#4

NB:Ensure This is at the top of the script [doesnt have to be top top just b4 the variable is ever called]
pawn Код:
bool:commandsTog;
//change to
new bool:commandsTog;
Reply
#5

^^^^^^^^
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)