diff options
-rw-r--r-- | npc/007-1/tycoon.txt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/npc/007-1/tycoon.txt b/npc/007-1/tycoon.txt index e5589737c..edfac38aa 100644 --- a/npc/007-1/tycoon.txt +++ b/npc/007-1/tycoon.txt @@ -130,13 +130,17 @@ L_Purge: getitem MinerHat, 1; getexp 3800, 0; // r7.5 1365→3800 setq MineQuest_Tycoon, 12, 0; - } else if (.@q == 12 && BaseLevel >= 45) { + } else if (.@q == 12 && BaseLevel >= 40) { mesq l("The last task I could give you is to exterminate 200 @@. They actually stop miners progress on the mine.", getmonsterlink(BlackScorpion)); + if (BaseLevel < 45) + mesc l("WARNING: This is a level 45 quest!"), 1; setq MineQuest_Tycoon, 13, 0; - } else if (.@q == 12 && BaseLevel < 45) { + } else if (.@q == 12 && BaseLevel < 40) { mesq l("You are too weak for my last task, please come back later with some levels."); } else if (.@q == 13) { mesq l("You are killing @@/200 @@ at the cave.", .@k, getmonsterlink(BlackScorpion)); + if (BaseLevel < 45) + mesc l("WARNING: This is a level 45 quest!"), 1; } else if (.@q == 14) { mesq l("Wow! You did it! I do not think anyone else could have done that."); mesq l("Here, take this @@ - you deserve it! And here is some gold and experience.", getitemlink(PolishedRuby)); |