summaryrefslogtreecommitdiff
path: root/world/map/npc/029-2/nyle.txt
diff options
context:
space:
mode:
authorCassy1 <cassy.tmw@gmail.com>2015-02-15 18:46:10 +0100
committerwushin <pasekei@gmail.com>2015-02-28 19:46:33 -0600
commit67bebdddefd6b439b1531b99956c9bd9465baf10 (patch)
treed68de38735f5e3042fc21751dc3033ce0b354a65 /world/map/npc/029-2/nyle.txt
parent1ec55a146d18d500adef7c562b4246e3bea4ce41 (diff)
downloadserverdata-67bebdddefd6b439b1531b99956c9bd9465baf10.tar.gz
serverdata-67bebdddefd6b439b1531b99956c9bd9465baf10.tar.bz2
serverdata-67bebdddefd6b439b1531b99956c9bd9465baf10.tar.xz
serverdata-67bebdddefd6b439b1531b99956c9bd9465baf10.zip
Add bank to Candor
Diffstat (limited to 'world/map/npc/029-2/nyle.txt')
-rw-r--r--world/map/npc/029-2/nyle.txt51
1 files changed, 51 insertions, 0 deletions
diff --git a/world/map/npc/029-2/nyle.txt b/world/map/npc/029-2/nyle.txt
new file mode 100644
index 00000000..7732b9aa
--- /dev/null
+++ b/world/map/npc/029-2/nyle.txt
@@ -0,0 +1,51 @@
+// Nyle is part of the Tutorial.
+// He explains how to use the bank.
+// Author: Cassy
+
+029-2,26,120,6|script|Nyle|101
+{
+ mes "[Nyle]";
+ mes "\"Visiting the bank too right? We're only a small village but Cynric is the best bank guy I know.\"";
+ menu
+ "Yeah, your right.", L_Close,
+ "What is banking?", L_Explain;
+
+L_Explain:
+ mes "[Nyle]";
+ mes "\"There are banks all over the world. Usually every important village or city has one.";
+ mes "You can save both items and money at a bank.\"";
+ menu
+ "How do I save items?", L_Items,
+ "How do I save money?", L_Money,
+ "Thanks!", L_Thanks;
+
+L_Items:
+ mes "[Nyle]";
+ mes "\"Let Cynric open your storage. You might also want to open your inventory.";
+ mes "Pick an item from either storage or inventory and choose what you want to do with it by clicking the right button.";
+ mes "You can also pick and drag items from one window into the other but this will move all items of this kind.";
+ next;
+ mes "Items in your storage are totally save. Banking itself is totally save.\"";
+ menu
+ "And how do I save money?", L_Money,
+ "Thanks!", L_Thanks;
+
+L_Money:
+ mes "[Nyle]";
+ mes "\"That's easy. Cynric will save your money when you ask him to deposit. Or you pick up your money by asking to withdraw.";
+ mes "You only have to tell him how much you want to deposit or withdraw.";
+ mes "Also you can ask how much he already save for you by checking your balance.";
+ next;
+ mes "Money in your storage is totally save. Banking itself is totally save.\"";
+ menu
+ "And how do I save items?", L_Items,
+ "Thanks!", L_Thanks;
+
+L_Thanks:
+ mes "[Nyle]";
+ mes "\"You are very welcome.\"";
+ goto L_Close;
+
+L_Close:
+ close;
+}