summaryrefslogtreecommitdiff
path: root/npc/011-3
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-07-23 20:41:39 -0300
committerJesusaves <cpntb1@ymail.com>2021-07-23 20:41:39 -0300
commit3cc6985ebc8b16be6b5ce3fdafa16a6272428a45 (patch)
tree15ea7379a30f054f27effe200f83de052d4cd6a1 /npc/011-3
parent451fe5a41448d3735f263a9b48da7c7b79208e3d (diff)
downloadserverdata-3cc6985ebc8b16be6b5ce3fdafa16a6272428a45.tar.gz
serverdata-3cc6985ebc8b16be6b5ce3fdafa16a6272428a45.tar.bz2
serverdata-3cc6985ebc8b16be6b5ce3fdafa16a6272428a45.tar.xz
serverdata-3cc6985ebc8b16be6b5ce3fdafa16a6272428a45.zip
Fix any remaining broken warps and some more translatable strings.
Close serverdata#32
Diffstat (limited to 'npc/011-3')
-rw-r--r--npc/011-3/hermit.txt32
1 files changed, 17 insertions, 15 deletions
diff --git a/npc/011-3/hermit.txt b/npc/011-3/hermit.txt
index 8ea9017b..718d3302 100644
--- a/npc/011-3/hermit.txt
+++ b/npc/011-3/hermit.txt
@@ -1,46 +1,48 @@
011-3,45,33,0 script Arkim NPC116,{
- mes "[Arkim the Hermit]";
- mes "\"Do you want to go back outside?\"";
+ mesn l("Arkim the Hermit");
+ mesq l("Do you want to go back outside?");
if (@knowhermitstory == 1) goto L_Short_Menu;
menu
- "Yes, please!", L_Sure,
- "Not yet.", L_close,
- "Actually... Why do you live here?", L_Interested;
+ l("Yes, please!"), L_Sure,
+ l("Not yet."), L_close,
+ l("Actually... Why do you live here?"), L_Interested;
L_Short_Menu:
menu
- "Yes, please!", L_Sure,
- "Not yet.", L_close,
- "What was that deal you were offering?", L_Quest;
+ l("Yes, please!"), L_Sure,
+ l("Not yet."), L_close,
+ l("What was that deal you were offering?"), L_Quest;
L_Sure:
- warp "011-1", 60, 95;
+ warp "011-1", 58, 93;
+ closeclientdialog;
close;
L_Interested:
- mes "[Arkim the Hermit]";
+ mesn l("Arkim the Hermit");
mes "\"Oh my, never really thought about it!\"";
next;
- mes "[Arkim the Hermit]";
+ mesn l("Arkim the Hermit");
mes "\"I guess mostly I enjoy experimenting with the bats here.\"";
menu
"I see...", L_close,
"What type of experimenting?", L_Experiment;
L_Experiment:
- mes "[Arkim the Hermit]";
+ mesn l("Arkim the Hermit");
mes "\"Never really thought about it either...\"";
next;
mes "You watch as the hermit's old, lazy eyes open wide, and the old man comes alive with energy.";
next;
- mes "[Arkim the Hermit]";
+ mesn l("Arkim the Hermit");
mes "\"I GUESS I REALLY LIKE CUTTING THEM UP TO SEE HOW THEY WORK!! HAHAHA!\"";
menu
"YOU'RE CRAZY!", L_close,
"Right... me too! Can I help?", L_Quest;
L_close:
+ closeclientdialog;
close;
L_Quest:
@@ -58,7 +60,7 @@ L_Quest:
next;
- mes "[Arkim the Hermit]";
- mes "\"And remember: never lend your toothbrush to a slime!\"";
+ mesn l("Arkim the Hermit");
+ mesq l("And remember: never lend your toothbrush to a slime!");
close;
}