From bb0b9dbea888cd621b6da3465da19f0794073cc1 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 13 Dec 2014 16:50:14 +0300 Subject: Add chat command for add item to trade. New chat command: /addtrade INDEX AMOUNT. Alias: /tradeadd This command have same patameters like /inttostorage. --- src/actions/actions.cpp | 18 ++++++++++++++++++ src/actions/actions.h | 1 + 2 files changed, 19 insertions(+) (limited to 'src/actions') diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp index a7c0466d2..c29d90a50 100644 --- a/src/actions/actions.cpp +++ b/src/actions/actions.cpp @@ -1438,7 +1438,25 @@ impHandler(invToStorage) { ItemAmountWindow::showWindow(ItemAmountWindow::StoreAdd, inventoryWindow, item); + } + return true; +} + +impHandler(tradeAdd) +{ + Item *item = nullptr; + const int amount = getAmountFromEvent(event, item); + if (!item || PlayerInfo::isItemProtected(item->getId())) return true; + + if (amount) + { + tradeWindow->tradeItem(item, amount, true); + } + else + { + ItemAmountWindow::showWindow(ItemAmountWindow::TradeAdd, + tradeWindow, item); } return true; } diff --git a/src/actions/actions.h b/src/actions/actions.h index eaf900fbe..0fd1f71c5 100644 --- a/src/actions/actions.h +++ b/src/actions/actions.h @@ -99,6 +99,7 @@ namespace Actions decHandler(useItem); decHandler(useItemInv); decHandler(invToStorage); + decHandler(tradeAdd); } // namespace Actions #undef decHandler -- cgit v1.2.3-60-g2f50