summaryrefslogtreecommitdiff
path: root/npc/020-2-9
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-04-09 13:33:57 -0300
committerJesusaves <cpntb1@ymail.com>2021-04-09 13:33:57 -0300
commitcf18ce071c79ae37e14ea38943e0b1d88da70a7b (patch)
treef9159c9b60b3018300dd22ffba0d797bc5e828e5 /npc/020-2-9
parent8a4bf716002a017de77fe7df301ef8e4aaf00a2e (diff)
downloadserverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.gz
serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.bz2
serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.xz
serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.zip
Override
Diffstat (limited to 'npc/020-2-9')
-rw-r--r--npc/020-2-9/_import.txt5
-rw-r--r--npc/020-2-9/_warps.txt3
-rw-r--r--npc/020-2-9/hydusun.txt62
-rw-r--r--npc/020-2-9/yanis.txt18
4 files changed, 0 insertions, 88 deletions
diff --git a/npc/020-2-9/_import.txt b/npc/020-2-9/_import.txt
deleted file mode 100644
index bd0771e3..00000000
--- a/npc/020-2-9/_import.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-// Map 020-2-9: Tulimshar Townhall
-// This file is generated automatically. All manually added changes will be removed when running the Converter.
-"npc/020-2-9/_warps.txt",
-"npc/020-2-9/hydusun.txt",
-"npc/020-2-9/yanis.txt",
diff --git a/npc/020-2-9/_warps.txt b/npc/020-2-9/_warps.txt
deleted file mode 100644
index d9a8afc5..00000000
--- a/npc/020-2-9/_warps.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-// This file is generated automatically. All manually added changes will be removed when running the Converter.
-// Map 020-2-9: Tulimshar Townhall warps
-020-2-9,44,37,0 warp #020-2-9_44_37 0,0,020-1,280,141
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;
-}
diff --git a/npc/020-2-9/yanis.txt b/npc/020-2-9/yanis.txt
deleted file mode 100644
index d5c8ea53..00000000
--- a/npc/020-2-9/yanis.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-// The Mana World scripts.
-// Author:
-// Jesusalva
-// Description:
-// Yanis, town bureaucrat
-// THIS IS A PLACEHOLDER!
-
-020-2-9,44,27,0 script Yanis NPC_ELVEN_MAN_STANDING,{
- setq2 TonoriQuest_Kylian, getq2(TonoriQuest_Kylian) | KYLIAN_YANIS;
- mesn;
- mesq l("Welcome. I'm handling issues with trading licenses for the shop owners in Tulimshar. Can I help you?");
- // TODO: Livio and mifristcher are working here so I'll not write this script.
- close;
-
-OnInit:
- .distance = 4;
- end;
-}