Package net.sf.l2j.gameserver.model.L2Multisell

Examples of net.sf.l2j.gameserver.model.L2Multisell.MultiSellListContainer


  public void runImpl()
    {
      if(_amount < 1 || _amount > 5000)
        return;

        MultiSellListContainer list = L2Multisell.getInstance().getList(_listId);
        if(list == null) return;

        L2PcInstance player = getClient().getActiveChar();
        if(player == null) return;

        for(MultiSellEntry entry : list.getEntries())
        {
            if(entry.getEntryId() == _entryId)
            {
              doExchange(player,entry,list.getApplyTaxes(), list.getMaintainEnchantment(), _enchantment);
              return;
            }
        }
    }
View Full Code Here

TOP

Related Classes of net.sf.l2j.gameserver.model.L2Multisell.MultiSellListContainer

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.