summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/029-2/stat_reset.txt28
1 files changed, 12 insertions, 16 deletions
diff --git a/npc/029-2/stat_reset.txt b/npc/029-2/stat_reset.txt
index 75fe3e66..438f8b99 100644
--- a/npc/029-2/stat_reset.txt
+++ b/npc/029-2/stat_reset.txt
@@ -6,7 +6,7 @@
if (BaseLevel >= 10)
goto L_Sorry;
- mes "[Jessie]";
+ mesn;
mes "\"I know a spell that will";
mes "reset status points on the youngings.";
mes "";
@@ -15,35 +15,31 @@
menu
"Reset my stats",L_Reset,
"Change my appearance", L_Appearance,
- "Forget about it",L_Pass;
+ "Forget about it", L_Pass;
L_Appearance:
- callfunc "Barber";
+ Barber();
goto L_Pass;
L_Reset:
- resetstatus;
-
- mes "[Jessie]";
+ resetstatus();
+ mesn;
mes "\"There you are.";
mes "";
mes "Good as new!\"";
- goto L_close;
+ close;
L_Pass:
- mes "[Jessie]";
- mes "\"Very well then, see you.\"";
- goto L_close;
+ mesn;
+ mesq l("Very well then, see you.");
+ close;
L_Sorry:
- mes "[Jessie]";
- mes "\"My spell only works on the very young, sorry.\"";
+ mesn;
+ mesq l("My spell only works on the very young, sorry.");
next;
mes "\"You can try Mailvox in the Tulimshar Bazaar or Wyara in the Potion Shop in Hurnscald.\"";
menu
"Change my appearance", L_Appearance,
- "Bye", L_close;
-
-L_close:
- close;
+ "Bye", L_Pass;
}