Examples of useAdminCommand()


Examples of com.l2jfrozen.gameserver.handler.IAdminCommandHandler.useAdminCommand()

        {
          GMAudit.auditGMAction(activeChar.getName()+" ["+activeChar.getObjectId()+"]", command, (activeChar.getTarget() != null?activeChar.getTarget().getName():"no-target"),_command.replace(command, ""));
         
        }

        ach.useAdminCommand(_command, activeChar);
      }
      else if(_command.equals("come_here") && activeChar.isGM())
      {
        comeHere(activeChar);
      }
View Full Code Here

Examples of com.l2jfrozen.gameserver.handler.IAdminCommandHandler.useAdminCommand()

      {
        GMAudit.auditGMAction(activeChar.getName()+" ["+activeChar.getObjectId()+"]", _command, (activeChar.getTarget() != null?activeChar.getTarget().getName():"no-target"));
       
      }
     
      ach.useAdminCommand(_command, activeChar);
    }
    else
    {
      activeChar.sendMessage("The command " + _command + " doesn't exists!");
      _log.log(Level.WARNING, "No handler registered for admin command '" + _command + "'");
View Full Code Here

Examples of net.sf.l2j.gameserver.handler.IAdminCommandHandler.useAdminCommand()

    IAdminCommandHandler ach = AdminCommandHandler.getInstance().getAdminCommandHandler("admin_"+_command);

    if (ach != null)
    {
      ach.useAdminCommand("admin_"+_command, activeChar);
    }
  }

  /* (non-Javadoc)
   * @see net.sf.l2j.gameserver.clientpackets.ClientBasePacket#getType()
View Full Code Here

Examples of net.sf.l2j.gameserver.handler.IAdminCommandHandler.useAdminCommand()

                }

        IAdminCommandHandler ach = AdminCommandHandler.getInstance().getAdminCommandHandler(_command);

        if (ach != null)
          ach.useAdminCommand(_command, activeChar);
        else
          _log.warning("No handler registered for bypass '"+_command+"'");
      }
      else if (_command.equals("come_here") && activeChar.getAccessLevel() >= Config.GM_ACCESSLEVEL)
      {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.