Examples of StoreMessageCommand


Examples of games.stendhal.server.core.engine.dbcommand.StoreMessageCommand

              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...");
            } else {
              DBCommandQueue.get().enqueue(new StoreMessageCommand("Wilfred", partnerName, husband.getName() + " has divorced from you!" , "N"));
            }
            if (husband.isEquipped("money", 200*husband.getLevel())) {
              husband.drop("money", 200*husband.getLevel());
            } else {
              final int xp = (int) (husband.getXP() * 0.03);
 
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.