Package net.sf.l2j.gameserver.model.quest

Examples of net.sf.l2j.gameserver.model.quest.QuestState.exitQuest()


        if (qe != null)
        {
        QuestState qs = activeChar.getQuestState(qe.getName());
            if(qs != null)
            {
            qs.exitQuest(true);
            SystemMessage sm = new SystemMessage(SystemMessageId.S1_S2);
            sm.addString("Quest aborted.");
                activeChar.sendPacket(sm);
                sm = null;
            QuestList ql = new QuestList();
View Full Code Here


    // if player has quest 422: Repent Your Sins, remove it
    QuestState st = getQuestState("422_RepentYourSins");
   
    if (st != null)
    {
      st.exitQuest(true);
    }
   
    for (int i = 0; i < 3; i++)
    {
      _henna[i] = null;
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.