Package net.sf.l2j.gameserver.serverpackets

Examples of net.sf.l2j.gameserver.serverpackets.ExShowQuestMark


    QuestList ql = new QuestList();
    getPlayer().sendPacket(ql);
   
    int questId = getQuest().getQuestIntId();
    if (questId > 0 && questId < 999 && cond > 0)
      getPlayer().sendPacket(new ExShowQuestMark(questId));
  }
View Full Code Here

TOP

Related Classes of net.sf.l2j.gameserver.serverpackets.ExShowQuestMark

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.