Package games.stendhal.server.entity.item

Examples of games.stendhal.server.entity.item.Dice


      ConversationStates.ATTENDING,
      "OK, here are the dice. Just throw them when you're ready. Good luck!",
      new ChatAction() {
        public void fire(final Player player, final Sentence sentence, final EventRaiser npc) {
          player.drop("money", STAKE);
          final Dice dice = (Dice) SingletonRepository.getEntityManager()
              .getItem("dice");
          dice.setCroupierNPC((CroupierNPC) npc.getEntity());
          player.equipOrPutOnGround(dice);
        }
      });
   
    ricardo.add(ConversationStates.QUESTION_1,
View Full Code Here

TOP

Related Classes of games.stendhal.server.entity.item.Dice

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.