Package games.stendhal.server.entity.npc.action

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


        add(ConversationStates.ATTENDING, "remove",
          new PlayerHasStorableEntityCondition(rentedSignList),
          ConversationStates.ATTENDING,
          "Ok, I am going to remove your sign.",
          new RemoveStorableEntityAction(rentedSignList));

        add(ConversationStates.ATTENDING, "remove",
          new NotCondition(new PlayerHasStorableEntityCondition(rentedSignList)),
          ConversationStates.ATTENDING,
          "You did not rent any sign, so I cannot remove one.", null);
View Full Code Here

TOP

Related Classes of games.stendhal.server.entity.npc.action.RemoveStorableEntityAction

Copyright © 2018 www.massapicom. 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.