From f53d4ab581f4eb61577985da181b679331e999e7 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Fri, 22 Jun 2018 00:14:16 -0300 Subject: Corrections --- npc/012-2/helena.txt | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) (limited to 'npc/012-2/helena.txt') diff --git a/npc/012-2/helena.txt b/npc/012-2/helena.txt index 223b858c8..58809c47c 100644 --- a/npc/012-2/helena.txt +++ b/npc/012-2/helena.txt @@ -7,11 +7,15 @@ 012-2,47,40,0 script Helena NPC_FEMALE,{ .@q=getq(HurnscaldQuest_Bandits); - // Stage 1: Level 40, collect Bandit Hood + // Stage 1: Level 30, collect Bandit Hood + if (BaseLevel < 30) goto L_TooWeak; + if (.@q == 1) goto L_Return; + + // Stage 2: Level 40, collect if (BaseLevel < 40) goto L_TooWeak; if (.@q == 1) goto L_Return; - // Stage 2: Level 45, defeat Bandit Lord + // Stage 3: Level 45, defeat Bandit Lord if (BaseLevel < 45) goto L_Weak; goto L_Start; @@ -64,7 +68,23 @@ L_Start: L_Return: mesn; - mesq l("Ah, @@! I'm busy now, can we talk again later?", strcharinfo(0)); + mesq lg("Adventurer, did you brought me what I asked? I see you have @@/10 @@.", countitem(BanditHood), getitemlink(BanditHood)); + mes ""; + select + rif(countitem(BanditHood) >= 10, l("Yes, take it.")), + rif(countitem(BanditHood) < 10, l("No, I'll be back with them.")), + l("Hm, can we talk again later?"); + mes ""; + if (@menu != 1) + close; + delitem BanditHood, 10; + Zeny=Zeny+2000; + setq HurnscaldQuest_Bandits, 2; + mesn; + mesq l("Hey hey... Good job! I was you would ruin their hoods before being able to take them."); + next; + mesn; + mesq l("Here is 2000 GP for your efforts. Thanks for making Hurnscald a better place to live."); close; OnInit: -- cgit v1.2.3-60-g2f50