From 3bb8ce54ba5fef1605bbfe49c827963ca7f2e0e0 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 13 Dec 2014 13:29:06 +0300 Subject: Add chat command for using item by inventory index. New chat command: /useinv INDEX --- src/actions/actions.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/actions/actions.cpp') diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp index d28edf826..bc641d331 100644 --- a/src/actions/actions.cpp +++ b/src/actions/actions.cpp @@ -1378,4 +1378,16 @@ impHandler(useItem) return true; } +impHandler(useItemInv) +{ + const int index = atoi(event.args.c_str()); + const Inventory *const inv = PlayerInfo::getInventory(); + if (inv) + { + Item *const item = inv->getItem(index); + PlayerInfo::useEquipItem(item, true); + } + return true; +} + } // namespace Actions -- cgit v1.2.3-70-g09d2