diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-03-08 11:50:35 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-03-08 11:50:35 -0300 |
commit | 9b3c9eab184fd4d750f4c93114207a687e36881b (patch) | |
tree | f08c5dd6bc91217f301f73a05234c7985644191c /npc | |
parent | a578e3d0bac1cc558407131cbd5c78d06709f3a1 (diff) | |
download | serverdata-9b3c9eab184fd4d750f4c93114207a687e36881b.tar.gz serverdata-9b3c9eab184fd4d750f4c93114207a687e36881b.tar.bz2 serverdata-9b3c9eab184fd4d750f4c93114207a687e36881b.tar.xz serverdata-9b3c9eab184fd4d750f4c93114207a687e36881b.zip |
Hercules Ultimate Storage System. Implemented for Quirin.
This means that items stored by Quirin will be segregated from official storage
Diffstat (limited to 'npc')
-rw-r--r-- | npc/003-1/quirino.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/npc/003-1/quirino.txt b/npc/003-1/quirino.txt index 412f40e25..cd55882fb 100644 --- a/npc/003-1/quirino.txt +++ b/npc/003-1/quirino.txt @@ -59,6 +59,7 @@ L_Register: l("Yeah, sign me up!"), l("No, not at the moment."), l("Does it counts to Honor Ranking?"), + l("You are holding a few items of mine..."), l("Information"); switch (@menu) { @@ -68,7 +69,13 @@ L_Register: close; case 3: quirinHonor(); + break; case 4: + openstorage(2, STORAGE_ACCESS_GET); + closeclientdialog; + close; + break; + case 5: quirinInfo(); } goto L_Register; @@ -137,7 +144,7 @@ L_Full: mes ""; if (@menu == 2) { closeclientdialog; - charcommand("@storeall"); + charcommand("@storeall 2"); } close; |