diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-08-30 00:09:12 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-09-19 22:24:50 +0300 |
commit | 3e6199fd739d811fdc15139ce4743fa4596c5473 (patch) | |
tree | 1ce2464cf2c7b62147837bd36a8bc456556f9990 /src/map/clif.h | |
parent | 0830dbf7552811fcacb83691bbdb93ee6715c5dd (diff) | |
download | hercules-3e6199fd739d811fdc15139ce4743fa4596c5473.tar.gz hercules-3e6199fd739d811fdc15139ce4743fa4596c5473.tar.bz2 hercules-3e6199fd739d811fdc15139ce4743fa4596c5473.tar.xz hercules-3e6199fd739d811fdc15139ce4743fa4596c5473.zip |
Update storage packet for 2018-08-29 RE.
Diffstat (limited to 'src/map/clif.h')
-rw-r--r-- | src/map/clif.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/map/clif.h b/src/map/clif.h index e3b2a90d3..2de2ddc7d 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -986,7 +986,11 @@ struct clif_interface { void (*openvendingAck) (int fd, int result); void (*vendingreport) (struct map_session_data* sd, int index, int amount, uint32 char_id, int zeny); /* storage handling */ - void (*storagelist) (struct map_session_data* sd, struct item* items, int items_length); + void (*storageList) (struct map_session_data* sd, struct item* items, int items_length); + void (*guildStorageList) (struct map_session_data* sd, struct item* items, int items_length); + void (*storageItems) (struct map_session_data* sd, struct item* items, int items_length); + void (*storageStart) (struct map_session_data* sd, const char* name); + void (*storageEnd) (struct map_session_data* sd); void (*updatestorageamount) (struct map_session_data* sd, int amount, int max_amount); void (*storageitemadded) (struct map_session_data* sd, struct item* i, int index, int amount); void (*storageitemremoved) (struct map_session_data* sd, int index, int amount); |