summaryrefslogtreecommitdiff
path: root/npc/012-2-3/cynric.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-05-27 14:56:31 -0300
committerJesusaves <cpntb1@ymail.com>2020-05-27 14:56:31 -0300
commit347df5f615f1886961138b9372b53c60513df7be (patch)
treee4c1201c157560611075ccd243a44b96f279b4e2 /npc/012-2-3/cynric.txt
parent00e39161670779562498528e6cfde20528739a39 (diff)
parent19ff29792c7767788255409755ace832a7396da0 (diff)
downloadserverdata-jesusalva/serena.tar.gz
serverdata-jesusalva/serena.tar.bz2
serverdata-jesusalva/serena.tar.xz
serverdata-jesusalva/serena.zip
Merge branch 'master' into jesusalva/serenajesusalva/serena
Diffstat (limited to 'npc/012-2-3/cynric.txt')
-rw-r--r--npc/012-2-3/cynric.txt36
1 files changed, 32 insertions, 4 deletions
diff --git a/npc/012-2-3/cynric.txt b/npc/012-2-3/cynric.txt
index 83e2c00b..e243c30f 100644
--- a/npc/012-2-3/cynric.txt
+++ b/npc/012-2-3/cynric.txt
@@ -6,13 +6,41 @@
// THIS IS A PLACEHOLDER!
012-2-3,27,28,0 script Cynric NPC_CYNRIC,{
- speech
- l("Welcome."),
- l("Someone was too lazy to even write a placeholder text, so please come back later");
+ mesn;
+ mesq l("Welcome to Candor's Bank!");
+ next;
+
+ do
+ {
+ select
+ l("I would like to store some items."),
+ l("I would like to perform money transactions."),
+ 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;
+ default:
+ closeclientdialog;
+ goodbye;
+ close;
+ }
+
+ } while (true);
close;
OnInit:
.sex = G_MALE;
- .distance = 2;
+ .distance = 4;
end;
}