diff options
Diffstat (limited to 'npc/031-1')
-rw-r--r-- | npc/031-1/angelaOutside.txt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/npc/031-1/angelaOutside.txt b/npc/031-1/angelaOutside.txt index dbacd7c3..2cd05030 100644 --- a/npc/031-1/angelaOutside.txt +++ b/npc/031-1/angelaOutside.txt @@ -24,7 +24,7 @@ OnInit: end; } -031-1,79,24,0 script Angela NPC195,15,15,{ +031-1,79,24,0 script Angela NPC195,{ .@q = getq(KaizeiQuest_Cindy); if (.@q == 4) goto L_Please_Visit_Again; if (.@q > 2 && .@q < 6) goto L_Please_Visit; @@ -35,7 +35,7 @@ OnInit: next; mes "\"It's terrible, oh my dear child!\""; next; - if (countitem("ConcentrationPotion") > 0 && BaseLevel >= .minlevel && .@q == 1) + if (countitem("ConcentrationPotion") > 0 && BaseLevel >= .minLevel && .@q == 1) goto L_Menu_Potion; menu @@ -63,7 +63,7 @@ L_Whining: mes "She is crying and sobbing."; next; mes "It seems she is too upset to tell you anything helpful. If she would just calm down and concentrate a bit..."; - if(BaseLevel >= .minlevel) goto L_GetQuest; + if(BaseLevel >= .minLevel) goto L_GetQuest; goto L_close; L_GetQuest: @@ -125,6 +125,7 @@ L_close: close; OnInit: - .minlevel = 70; + .minLevel = 70; end; +//TODO OnTouch: if Level show emote } |