diff options
Diffstat (limited to 'npc/027-2_Caretakers_House/headless_man.txt')
-rw-r--r-- | npc/027-2_Caretakers_House/headless_man.txt | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/npc/027-2_Caretakers_House/headless_man.txt b/npc/027-2_Caretakers_House/headless_man.txt index 21e49f72..bc0581bd 100644 --- a/npc/027-2_Caretakers_House/headless_man.txt +++ b/npc/027-2_Caretakers_House/headless_man.txt @@ -15,18 +15,20 @@ set @state, ((QUEST_Graveyard_Inn & @Graveyard_Inn_MASK) >> @Graveyard_Inn_SHIFT); - set @Wisp_Powder, 10; // TODO: set proper values for powders and dyes - set @Polt_Powder, 10; - set @Spec_Powder, 10; - set @Iron_Pot, 10; - set @Conc_Pot, 10; - set @Red_Dye, 2; - set @Yellow_Dye, 2; - set @LB_Dye, 2; - - if (@state == 1) goto L_Quest_progress; + set @Wisp_Powder, 100; + set @Polt_Powder, 100; + set @Spec_Powder, 100; + set @Iron_Pot, 50; + set @Conc_Pot, 30; + set @Red_Dye, 50; + set @Yellow_Dye, 50; + set @LB_Dye, 50; + + set @Glue_Exp, 50000; + + if (@state >= 3) goto L_Final; if (@state == 2) goto L_Quest_finished; - if (@state == 3) goto L_Final; + if (@state == 1) goto L_Quest_progress; mes "You see a man, propped up against the foot of the bed."; mes "In his hand, he is holding what you assume to be his own head."; @@ -121,6 +123,7 @@ L_Quest_check: delitem "YellowDye", @Yellow_Dye; delitem "LightBlueDye", @LB_Dye; delitem "InfantryHelmet", 1; + getexp @Glue_Exp, 0; mes "[Thurstan]"; mes "\"Excellent, excellent!\""; mes ""; @@ -180,7 +183,7 @@ L_Quest_finished: mes "\"Please take this for your efforts.\""; //TODO: Set appropriate reward close; - + L_Final: mes "[Thurstan]"; |