Examples of DropItemAction


Examples of games.stendhal.server.entity.npc.action.DropItemAction

        "So I can not give you the cloak! First the payment!",
        null);
   
    final List<ChatAction> actions = new LinkedList<ChatAction>();
    actions.add(new IncreaseXPAction(200));
    actions.add(new DropItemAction("steel arrow",20));
    actions.add(new ChatAction() {
      public void fire(final Player player, final Sentence sentence, final EventRaiser npc) {
        final Item cloak = SingletonRepository.getEntityManager().getItem("dwarf cloak");
        cloak.setInfoString("Phalk");
        cloak.setDescription("You see a brand new dwarf cloak, with the name 'Phalk' sewn into the label by Wrvil.");
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.