Examples of ExNpcQuestHtmlMessage


Examples of lineage2.gameserver.network.serverpackets.ExNpcQuestHtmlMessage

    if (player == null)
    {
      return;
    }
    GameObject target = player.getTarget();
    NpcHtmlMessage npcReply = showQuestInfo ? new ExNpcQuestHtmlMessage(target == null ? 5 : target.getObjectId(), getQuestIntId()) : new NpcHtmlMessage(target == null ? 5 : target.getObjectId());
    npcReply.setFile("quests/" + getClass().getSimpleName() + "/" + fileName);
    if ((arg.length % 2) == 0)
    {
      for (int i = 0; i < arg.length; i += 2)
      {
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.ExNpcQuestHtmlMessage

    {
      showHtmlFile(player, res, showQuestInfo);
    }
    else
    {
      NpcHtmlMessage npcReply = showQuestInfo ? new ExNpcQuestHtmlMessage(npc == null ? 5 : npc.getObjectId(), getQuestIntId()) : new NpcHtmlMessage(npc == null ? 5 : npc.getObjectId());
      npcReply.setHtml(res);
      player.sendPacket(npcReply);
    }
    return true;
  }
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.