Examples of delQuestState()


Examples of l2p.gameserver.model.L2Player.delQuestState()

      }
    }
    // If quest is repeatable, delete quest from list of quest of the player and from database (quest CAN be created again => repeatable)
    if(repeatable)
    {
      player.delQuestState(_quest.getName());
      Quest.deleteQuestInDb(this);
      _vars = null;
    }
    else
    { // Otherwise, delete variables for quest and update database (quest CANNOT be created again => not repeatable)
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.