summaryrefslogtreecommitdiff
path: root/npc/012-2-3/cynric.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/012-2-3/cynric.txt')
-rw-r--r--npc/012-2-3/cynric.txt54
1 files changed, 0 insertions, 54 deletions
diff --git a/npc/012-2-3/cynric.txt b/npc/012-2-3/cynric.txt
deleted file mode 100644
index 712e4270..00000000
--- a/npc/012-2-3/cynric.txt
+++ /dev/null
@@ -1,54 +0,0 @@
-// Evol scripts.
-// Author:
-// Micksha
-// Description:
-// Cynric, Candor's banker.
-// THIS IS A PLACEHOLDER!
-
-012-2-3,27,28,0 script Cynric NPC_CYNRIC,{
- 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$, "Candor");
- .bankid = getarraysize($@BANK_NAME$)-1;
- end;
-}