diff options
Diffstat (limited to 'npc/011-1_Woodland/alchemist.txt')
-rw-r--r-- | npc/011-1_Woodland/alchemist.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/npc/011-1_Woodland/alchemist.txt b/npc/011-1_Woodland/alchemist.txt index de07be70..f78bf515 100644 --- a/npc/011-1_Woodland/alchemist.txt +++ b/npc/011-1_Woodland/alchemist.txt @@ -527,6 +527,11 @@ L_d_green: next; goto L_intermediate; +L_d_no_green: + mes "[Rauk the Alchemist]"; + mes "\"Come back when you are a little more experienced. I might be able to tell you how to make green dye then.\""; + close; + L_orange: if (countitem("AlizarinHerb") < 10) goto L_orange_fail; if (countitem("GambogeHerb") < 10) goto L_orange_fail; @@ -673,6 +678,7 @@ L_d_black: goto L_intermediate; L_dark_green: + if (baselevel < 30) goto L_d_no_green; if (QUEST_clothdyer_knowsdye != @QUEST_HAS_SOLVED_DYE_PUZZLE) goto L_d_dark_green; if (countitem("CobaltHerb") < 10) goto L_dark_green_fail; |