diff options
Diffstat (limited to 'world/map/npc/042-2/sorfina.txt')
-rw-r--r-- | world/map/npc/042-2/sorfina.txt | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/world/map/npc/042-2/sorfina.txt b/world/map/npc/042-2/sorfina.txt index 0c981946..6caf032d 100644 --- a/world/map/npc/042-2/sorfina.txt +++ b/world/map/npc/042-2/sorfina.txt @@ -4,7 +4,7 @@ 042-2.gat,28,26,0|script|Sorfina|154,4,4{ if (FLAGS & FLAG_TUTORIAL_DONE) goto L_Again; - if (sorfina == 4) goto L_Again; + if (sorfina == 4) goto L_Heal; if (sorfina == 3) goto L_Clothes; if (sorfina == 2) goto L_Chest; if (sorfina == 1) goto L_Carpet; @@ -95,6 +95,16 @@ L_Clothes: set sorfina, 4; goto L_Close; +L_Heal: + if (Hp == MaxHp) + goto L_Again; + mes "[Sorfina]"; + mes "\"Hello Dear! You look tired, you should rest a moment.\""; + mes "You take a short nap and feel refreshed."; + heal MaxHp, 0; + next; + goto L_Again; + L_Again: mes "[Sorfina]"; mes "\"Make yourself at home! Do you have any questions?\""; |