Package l2p.gameserver.serverpackets

Examples of l2p.gameserver.serverpackets.ExHeroList


            break;
          }
          Olympiad.addSpectator(Integer.parseInt(command.substring(11)), player);
          break;
        case 4:
          player.sendPacket(new ExHeroList(Hero.getInstance().getHeroes()));
          break;
        case 5:
          StringBuffer replyMSG = new StringBuffer("<html><body>");
          if(Hero.getInstance().isInactiveHero(player.getObjectId()))
          {
View Full Code Here


    L2Player player = (L2Player) getSelf();
    if(player == null)
    {
      return;
    }
    player.sendPacket(new ExHeroList(_heroes));
  }
View Full Code Here

TOP

Related Classes of l2p.gameserver.serverpackets.ExHeroList

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.