diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-05-01 13:43:48 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-05-01 13:43:48 -0300 |
commit | 8475167670c2e58a8448184c9abbf21e2174d557 (patch) | |
tree | 1a81374866fb980436c39e0a164626a715fecd44 /npc/029-2 | |
parent | 47ad0236c965198946e09d92823dcce1e0346ec1 (diff) | |
download | serverdata-8475167670c2e58a8448184c9abbf21e2174d557.tar.gz serverdata-8475167670c2e58a8448184c9abbf21e2174d557.tar.bz2 serverdata-8475167670c2e58a8448184c9abbf21e2174d557.tar.xz serverdata-8475167670c2e58a8448184c9abbf21e2174d557.zip |
Small cleanup at Jessie, but I can't particularly see any error.
Keep in mind NPC talking range is the same as on Legacy (4 tiles iirc)
Diffstat (limited to 'npc/029-2')
-rw-r--r-- | npc/029-2/stat_reset.txt | 28 |
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; } |