Examples of subXP()


Examples of games.stendhal.server.entity.player.Player.subXP()

              }
              if (wife.isEquipped("money", 200*wife.getLevel())) {
                wife.drop("money", 200*wife.getLevel());
              } else {
                final int xp = (int) (wife.getXP() * 0.03);
                wife.subXP(xp);
              }
              wife.removeQuest(marriage.getQuestSlot());
              wife.removeQuest(marriage.getSpouseQuestSlot());
              wife.sendPrivateText(husband.getName() + " has divorced from you.");
              npc.say("What a pity...what a pity...and you two were married so happily, too...");
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.