Package l2p.gameserver.templates

Examples of l2p.gameserver.templates.L2EtcItem


      _armors.put(e.getKey(), new L2Armor((ArmorType) e.getValue().type, e.getValue().set));
    }
    _log.info("ItemTable: Loaded " + _armors.size() + " Armors.");
    for(Entry<Integer, Item> e : itemData.entrySet())
    {
      _etcItems.put(e.getKey(), new L2EtcItem((EtcItemType) e.getValue().type, e.getValue().set));
    }
    _log.info("ItemTable: Loaded " + _etcItems.size() + " Items.");
    new File("log/game/unimplemented_sa.txt").delete();
    for(Entry<Integer, Item> e : weaponData.entrySet())
    {
View Full Code Here


      assert _allTemplates[id.intValue()] == null;
      _allTemplates[id.intValue()] = item;
    }
    for(Integer id : _etcItems.keySet())
    {
      L2EtcItem item = _etcItems.get(id);
      assert _allTemplates[id.intValue()] == null;
      _allTemplates[id.intValue()] = item;
    }
  }
View Full Code Here

TOP

Related Classes of l2p.gameserver.templates.L2EtcItem

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.