// Like L2OFF you can't confirm a withdraw when you are in trade.
if(player.getActiveTradeList() != null)
{
player.sendMessage("You can't withdraw items when you are trading.");
player.sendPacket(ActionFailed.STATIC_PACKET);
return;
}
ItemContainer warehouse = player.getActiveWarehouse();
if(warehouse == null)