summaryrefslogtreecommitdiff
path: root/world/map/npc/026-2/testnpcs.txt
diff options
context:
space:
mode:
authorwushin <pasekei@gmail.com>2016-04-21 15:37:05 -0500
committerwushin <pasekei@gmail.com>2016-04-23 18:53:23 -0500
commit3f175b590d284ef413be0be25c7f74392523414b (patch)
tree2af26d2602696e6623c75dd54bd28a32e0767c0b /world/map/npc/026-2/testnpcs.txt
parentcab5e80475f0fa1370b8587c519bb6b6b7c6190a (diff)
downloadserverdata-3f175b590d284ef413be0be25c7f74392523414b.tar.gz
serverdata-3f175b590d284ef413be0be25c7f74392523414b.tar.bz2
serverdata-3f175b590d284ef413be0be25c7f74392523414b.tar.xz
serverdata-3f175b590d284ef413be0be25c7f74392523414b.zip
Deadmere - Undead Town
Diffstat (limited to 'world/map/npc/026-2/testnpcs.txt')
-rw-r--r--world/map/npc/026-2/testnpcs.txt63
1 files changed, 63 insertions, 0 deletions
diff --git a/world/map/npc/026-2/testnpcs.txt b/world/map/npc/026-2/testnpcs.txt
new file mode 100644
index 00000000..8bac0ab0
--- /dev/null
+++ b/world/map/npc/026-2/testnpcs.txt
@@ -0,0 +1,63 @@
+//several NPCs in the Reid's Inn
+
+026-2,64,32,0|script|Lovers|303
+{
+ mes "You see a man and a woman holding each other very tight.";
+ next;
+ mes "They are kissing and whispering things to each other you can't hear.";
+ next;
+ mes "Now the woman giggles. They don't notice you.";
+ next;
+ mes "Maybe it's better not to bother them.";
+ close;
+}
+
+026-2,34,59,0|script|Archibald|306
+{
+//the broken grammar is intentional
+ mes "[Archibald]";
+ mes "\"Me need to prepare the food. Me helping the chef cook.\"";
+ next;
+ mes "\"Person doesn't disturb me when me is making the food\"";
+ close;
+}
+
+026-2,41,30,0|script|Darnel|308
+{
+ set @drunker, rand(4);
+ if (@drunker == 0) goto L_0;
+ if (@drunker == 1) goto L_1;
+ if (@drunker == 2) goto L_2;
+ if (@drunker == 3) goto L_3;
+ end;
+L_0:
+ mes "[Darnel]";
+ mes "\"zzzZZZzzz...\"";
+ goto L_Close;
+L_1:
+ mes "[Darnel]";
+ mes "\"Ish that a Zzombee?...\"";
+ goto L_Close;
+L_2:
+ mes "[Darnel]";
+ mes "\"Auuu... Hiccup... Don't byte mee... \"";
+ goto L_Close;
+L_3:
+ mes "[Darnel]";
+ mes "\"Moar Bearr...Pleash!\"";
+ goto L_Close;
+
+L_Close:
+ set @drunker, 0;
+ close;
+}
+
+026-2,33,29,0|script|Nigel|312
+{
+ mes "[Nigel]";
+ mes "\"Ohh... My head is killing me! I have to stop "
+ + "drinking too much or I will lose my job... But "
+ + "being a waiter... oh I can't resist a drink or two!\"";
+ close;
+}
+