diff options
Diffstat (limited to 'npc/020-2-9/hydusun.txt')
-rw-r--r-- | npc/020-2-9/hydusun.txt | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/npc/020-2-9/hydusun.txt b/npc/020-2-9/hydusun.txt deleted file mode 100644 index c4f55b92..00000000 --- a/npc/020-2-9/hydusun.txt +++ /dev/null @@ -1,62 +0,0 @@ -// 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: - .distance = 4; - - // Bank configuration - array_push($@BANK_NAME$, .name$); - array_push($@BANK_TOWN$, "Tulimshar"); - .bankid = getarraysize($@BANK_NAME$)-1; - end; -} |