From db42e06f31fe98a28dce8cc05c480b897ab8cb99 Mon Sep 17 00:00:00 2001 From: panikon Date: Wed, 7 May 2014 20:05:37 -0300 Subject: #Fixed issue 8175 *http://hercules.ws/board/tracker/issue-8175-missing-delequip/ *Documentation wrote by @emistry #Added return values for *delequip --- doc/script_commands.txt | 10 ++++++++++ src/map/script.c | 3 +++ 2 files changed, 13 insertions(+) diff --git a/doc/script_commands.txt b/doc/script_commands.txt index 6aa75e82a..bb714d856 100644 --- a/doc/script_commands.txt +++ b/doc/script_commands.txt @@ -5090,6 +5090,16 @@ Example: // Item Universal_Catalog_Gold (10 uses, effect: open shop) searchstores 10,1; +--------------------------------------- + +*delequip ; + +This command will destroy whatever is currently equipped in the invoking +character's specified equipment slot. For a full list of possible equipment +slots see 'getequipid'. + +This command will return 1 if an item was deleted and 0 otherwise. + --------------------------------------- //===================================== 4.1 - End of Player Item-Related Commands diff --git a/src/map/script.c b/src/map/script.c index c57b086f4..aea4d978f 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -7969,6 +7969,9 @@ BUILDIN(delequip) if(i >= 0) { pc->unequipitem(sd,i,3); //recalculate bonus pc->delitem(sd,i,1,0,2,LOG_TYPE_SCRIPT); + script_pushint(st,1); + } else { + script_pushint(st,0); } return true; -- cgit v1.2.3-70-g09d2