diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-10-24 12:48:53 +0000 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-10-24 12:48:53 +0000 |
commit | 1a3d323af19764546552b1d621c65303c1fb3005 (patch) | |
tree | 5e70a62dc756d5a10fe558fe6e3efefcf5ef1a97 /npc/020-2-9/hydusun.txt | |
parent | 8077efb70e0af1c54a84859f73c96de21c60107b (diff) | |
download | serverdata-1a3d323af19764546552b1d621c65303c1fb3005.tar.gz serverdata-1a3d323af19764546552b1d621c65303c1fb3005.tar.bz2 serverdata-1a3d323af19764546552b1d621c65303c1fb3005.tar.xz serverdata-1a3d323af19764546552b1d621c65303c1fb3005.zip |
CONTENT III SUPER MERGE REQUEST
Included:
* Tulimshar Casino
* Placeholder fixing/filling
* Food Questline
* Rossy Quest
* Galimatia Quest (mostly by Livio)
* Edourard bugs
* Blood Donor Quest (from Moubootaur Legends)
* Merchant Guild Quest
* Mundane Bugfix
* La Marine
* Hurns Doctor easter eggs
* Sailing to Argaes with Legion
* Other things not relevant enough to be noted down, I guess
Diffstat (limited to 'npc/020-2-9/hydusun.txt')
-rw-r--r-- | npc/020-2-9/hydusun.txt | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/npc/020-2-9/hydusun.txt b/npc/020-2-9/hydusun.txt new file mode 100644 index 00000000..b80c1e78 --- /dev/null +++ b/npc/020-2-9/hydusun.txt @@ -0,0 +1,63 @@ +// The Mana World scripts. +// Author: +// Jesusalva +// Description: +// Hydusun the Tulimshar storage guy. +// THIS IS A PLACEHOLDER! + +020-2-9,35,25,0 script Hydusun NPC_RICHARD_LEGACY,{ + // Storage/Banking function not unlocked in Artis + if (!getq(ArtisQuests_Lloyd)) { + speech + l("Oh hey!"), + l("I was supposed to act as storagekeeper, but I forgot my key."), + l("Come back later, perhaps I can find it."); + close; + } + mesn; + mesq l("Welcome to %s's Bank!", l($@BANK_TOWN$[.bankid])); + next; + + do + { + select + l("I would like to store some items."), + l("I would like to perform money transactions."), + l("Is there any request for me?"), + menuaction(l("Quit")); + + mes ""; + + switch (@menu) { + case 1: + mesn; + mesq l("Sure thing! I'll have your items transported here from Artis before you realize!"); + next; + closeclientdialog(); + openstorage(); + close; + case 2: + MerchantGuild_Bank(); + break; + case 3: + MerchantGuild_Quests(.bankid); + break; + default: + closeclientdialog; + goodbye; + close; + } + + } while (true); + close; + +OnInit: + .bodytype = BODYTYPE_3; + .distance = 4; + + // Bank configuration + array_push($@BANK_NAME$, .name$); + array_push($@BANK_TOWN$, "Tulimshar"); + .bankid = getarraysize($@BANK_NAME$)-1; + end; +} |