diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-05-11 18:36:36 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-05-12 11:12:16 +0000 |
commit | d5417d521a7a8a8cd74587fc78176596e6ec96e9 (patch) | |
tree | 1f15b004627091a30c57f9f626cead501e7b2a14 | |
parent | 18203caad9953f87f21dea7266368390d1cf9be1 (diff) | |
download | serverdata-d5417d521a7a8a8cd74587fc78176596e6ec96e9.tar.gz serverdata-d5417d521a7a8a8cd74587fc78176596e6ec96e9.tar.bz2 serverdata-d5417d521a7a8a8cd74587fc78176596e6ec96e9.tar.xz serverdata-d5417d521a7a8a8cd74587fc78176596e6ec96e9.zip |
Candor's Bank.
Distance for Jessie and Tanisha.
-rw-r--r-- | npc/012-2-1/jessie.txt | 2 | ||||
-rw-r--r-- | npc/012-2-1/tanisha.txt | 2 | ||||
-rw-r--r-- | npc/012-2-3/cynric.txt | 34 |
3 files changed, 33 insertions, 5 deletions
diff --git a/npc/012-2-1/jessie.txt b/npc/012-2-1/jessie.txt index c00e868d..6de60252 100644 --- a/npc/012-2-1/jessie.txt +++ b/npc/012-2-1/jessie.txt @@ -13,6 +13,6 @@ OnInit: .sex = G_MALE; - .distance = 2; + .distance = 4; end; } diff --git a/npc/012-2-1/tanisha.txt b/npc/012-2-1/tanisha.txt index 94848971..2376c657 100644 --- a/npc/012-2-1/tanisha.txt +++ b/npc/012-2-1/tanisha.txt @@ -13,6 +13,6 @@ OnInit: .sex = G_FEMALE; - .distance = 2; + .distance = 4; end; } diff --git a/npc/012-2-3/cynric.txt b/npc/012-2-3/cynric.txt index ecf789f5..e243c30f 100644 --- a/npc/012-2-3/cynric.txt +++ b/npc/012-2-3/cynric.txt @@ -6,9 +6,37 @@ // 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: |