Package games.stendhal.server.entity.creature

Examples of games.stendhal.server.entity.creature.AttackableCreature.clearDropItemList()


       
        StendhalRPAction.placeat(zone, creature, Integer.parseInt(inspected.get("x")), Integer.parseInt(inspected.get("y")));
        zone.remove(inspected);
        creature.init();
        creature.setMaster(user.getTitle());
        creature.clearDropItemList();
        creature.put("title_type", "friend");
       
        //Suck some of the summoners HP depending on the summoned creature's level.
        user.damage(HP_FACTOR * creature.getLevel(), this);
        return true;
View Full Code Here


 
    StendhalRPAction.placeat(zone, creature, x, y);

    creature.init();
    creature.setMaster(player.getTitle());
    creature.clearDropItemList();
    creature.put("title_type", "friend");

    return true;
  }
 
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.