Examples of ItemClass


Examples of l2p.gameserver.model.items.L2ItemInstance.ItemClass

    }
    if(max < countPerPage)
    {
      max = countPerPage;
    }
    ItemClass itemClass = itemType > 8 ? null : ItemClass.values()[itemType];
    TreeMap<String, TreeMap<Long, Item>> allItems = getItems(type);
    if(allItems == null)
    {
      show("Неизвестная ошибка", player, npc);
      return;
View Full Code Here

Examples of lineage2.gameserver.templates.item.ItemTemplate.ItemClass

    catch (Exception e)
    {
      show("incorrect data", player, npc);
      return;
    }
    ItemClass itemClass = itemType >= ItemClass.values().length ? null : ItemClass.values()[itemType];
    TreeMap<String, TreeMap<Long, Item>> allItems = getItems(type);
    if (allItems == null)
    {
      show("Error - this type of objects found", player, npc);
      return;
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.