diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-12-14 06:52:34 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-12-14 23:52:47 +0300 |
commit | 16f3fe4fd1eeaa27ad093ea70b0a26054096bdb0 (patch) | |
tree | 71d5692dd6a9251ffcbdf05e1db9e6b737d653a4 /src | |
parent | d17b51770830d9e9e395d1b87b26572d8434fd57 (diff) | |
download | hercules-16f3fe4fd1eeaa27ad093ea70b0a26054096bdb0.tar.gz hercules-16f3fe4fd1eeaa27ad093ea70b0a26054096bdb0.tar.bz2 hercules-16f3fe4fd1eeaa27ad093ea70b0a26054096bdb0.tar.xz hercules-16f3fe4fd1eeaa27ad093ea70b0a26054096bdb0.zip |
Add script command expandInventoryResult.
This function send to client final expand status.
Diffstat (limited to 'src')
-rw-r--r-- | src/map/script.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/map/script.c b/src/map/script.c index cf192fce8..36b316320 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -24874,6 +24874,16 @@ static BUILDIN(expandInventoryAck) return true; } +// send final ack to inventory expand request +static BUILDIN(expandInventoryResult) +{ + struct map_session_data *sd = script_rid2sd(st); + if (sd == NULL) + return false; + clif->inventoryExpandResult(sd, script_getnum(st, 2)); + return true; +} + /** * Adds a built-in script function. * @@ -25615,6 +25625,7 @@ static void script_parse_builtin(void) BUILDIN_DEF(itempreview, "i"), BUILDIN_DEF(enchantitem, "iii"), BUILDIN_DEF(expandInventoryAck, "i?"), + BUILDIN_DEF(expandInventoryResult, "i"), }; int i, len = ARRAYLENGTH(BUILDIN); RECREATE(script->buildin, char *, script->buildin_count + len); // Pre-alloc to speed up @@ -26045,6 +26056,13 @@ static void script_hardcoded_constants(void) script->set_constant("EXPAND_INV_MISSING_ITEM", EXPAND_INVENTORY_MISSING_ITEM, false, false); script->set_constant("EXPAND_INV_MAX_SIZE", EXPAND_INVENTORY_MAX_SIZE, false, false); + script->constdb_comment("inventory expand final responds"); + script->set_constant("EXPAND_INV_RESULT_SUCCESS", EXPAND_INVENTORY_RESULT_SUCCESS, false, false); + script->set_constant("EXPAND_INV_RESULT_FAILED", EXPAND_INVENTORY_RESULT_FAILED, false, false); + script->set_constant("EXPAND_INV_RESULT_OTHER_WORK", EXPAND_INVENTORY_RESULT_OTHER_WORK, false, false); + script->set_constant("EXPAND_INV_RESULT_MISSING_ITEM", EXPAND_INVENTORY_RESULT_MISSING_ITEM, false, false); + script->set_constant("EXPAND_INV_RESULT_MAX_SIZE", EXPAND_INVENTORY_RESULT_MAX_SIZE, false, false); + script->constdb_comment("Renewal"); #ifdef RENEWAL script->set_constant("RENEWAL", 1, false, false); |