Package lineage2.gameserver.model.items

Examples of lineage2.gameserver.model.items.ItemInstance.dropMe()


          long count = wordList.length > 3 ? Long.parseLong(wordList[3]) : 1;
          for (int i = 0; i < num; i++)
          {
            ItemInstance createditem = ItemFunctions.createItem(id);
            createditem.setCount(count);
            createditem.dropMe(activeChar, Location.findPointToStay(activeChar, 100));
          }
        }
        catch (NumberFormatException nfe)
        {
          activeChar.sendMessage("Specify a valid number.");
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.