Examples of RPSlot


Examples of marauroa.common.game.RPSlot

   */
  public List<Item> getAllEquipped(final String name) {
    final List<Item> result = new LinkedList<Item>();

    for (final String slotName : Constants.CARRYING_SLOTS) {
      final RPSlot slot = getSlot(slotName);

      for (final RPObject object : slot) {
        if (object instanceof Item) {
          final Item item = (Item) object;
          if (item.getName().equals(name)) {
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.