Package l2p.gameserver.handler

Examples of l2p.gameserver.handler.IUserCommandHandler


    L2Player activeChar = getClient().getActiveChar();
    if(activeChar == null)
    {
      return;
    }
    IUserCommandHandler handler = UserCommandHandler.getInstance().getUserCommandHandler(_command);
    if(handler == null)
    {
      activeChar.sendMessage(new CustomMessage("common.S1NotImplemented", activeChar).addString(String.valueOf(_command)));
    }
    else
    {
      handler.useUserCommand(_command, activeChar);
    }
  }
View Full Code Here

TOP

Related Classes of l2p.gameserver.handler.IUserCommandHandler

Copyright © 2018 www.massapicom. 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.