diff options
author | Jessica Tölke <jtoelke@mail.upb.de> | 2012-06-18 16:05:16 +0200 |
---|---|---|
committer | Jessica Tölke <jtoelke@mail.upb.de> | 2012-06-20 12:44:08 +0200 |
commit | b6cb55eef4c16d4a0679458ba874e2b4fde87592 (patch) | |
tree | 9a6bfd01e448258316b22db77d031c1462fd2580 /world/map/npc/042-2/sorfina.txt | |
parent | d5b66f08d6d7ed4a53be5a51bca8f05b50a77702 (diff) | |
download | serverdata-b6cb55eef4c16d4a0679458ba874e2b4fde87592.tar.gz serverdata-b6cb55eef4c16d4a0679458ba874e2b4fde87592.tar.bz2 serverdata-b6cb55eef4c16d4a0679458ba874e2b4fde87592.tar.xz serverdata-b6cb55eef4c16d4a0679458ba874e2b4fde87592.zip |
Some changes in tutorial to make it easier:
- Hint in Hasan's dialogue to talk to Kaan.
- Hint in Kaan's dialogue to talk to Sorfina or Tanisha.
- Sorfina offers free heal as long as the player didn't complete the tutorial.
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?\""; |