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 ++++++++++++ src/actions/actions.h | 1 + 2 files changed, 13 insertions(+) (limited to 'src/actions') 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 diff --git a/src/actions/actions.h b/src/actions/actions.h index 3ccd916d0..5d7482642 100644 --- a/src/actions/actions.h +++ b/src/actions/actions.h @@ -97,6 +97,7 @@ namespace Actions decHandler(catchPet); decHandler(mercenaryFire); decHandler(useItem); + decHandler(useItemInv); } // namespace Actions #undef decHandler -- cgit v1.2.3-70-g09d2