Package com.l2jfrozen.gameserver.templates

Examples of com.l2jfrozen.gameserver.templates.L2EtcItem


    {
      _currentItem.item = new L2Weapon((L2WeaponType) _currentItem.type, _currentItem.set);
    }
    else if(_currentItem.type instanceof L2EtcItemType)
    {
      _currentItem.item = new L2EtcItem((L2EtcItemType) _currentItem.type, _currentItem.set);
    }
    else
      throw new Error("Unknown item type " + _currentItem.type);
  }
View Full Code Here


    }
    if(list.size() == 0)
    {
      for(Item item : itemData.values())
      {
        list.add(new L2EtcItem((L2EtcItemType) item.type, item.set));
      }
    }
    return list;
  }
View Full Code Here

TOP

Related Classes of com.l2jfrozen.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.