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;
}
}
}