diff options
-rw-r--r-- | npc/017-3/dimonds.txt | 4 | ||||
-rw-r--r-- | npc/functions/mobhunter.txt | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/npc/017-3/dimonds.txt b/npc/017-3/dimonds.txt index e32654722..5b23e303d 100644 --- a/npc/017-3/dimonds.txt +++ b/npc/017-3/dimonds.txt @@ -16,6 +16,10 @@ mesn; mesq l("Please, enjoy the show! There are some people upstairs, too."); //mesq l("Talk to the waitress to get some food. Enjoy the show! And you can sleep on the 3rd Floor."); + if (BaseLevel < 55) + close; + mesc l("Also..."); + GHQ_Assign(GreenDragon, "Land of Fire"); close; OnInit: diff --git a/npc/functions/mobhunter.txt b/npc/functions/mobhunter.txt index 527aacf3c..1a96a2f60 100644 --- a/npc/functions/mobhunter.txt +++ b/npc/functions/mobhunter.txt @@ -35,6 +35,9 @@ function script GHQ_GetQuestIDByMonsterID { case Bat: return 10; break; + case GreenDragon: + return 11; + break; default: return Exception("GHQ GQID: Invalid ID: "+getarg(0), RB_DEFAULT^RB_PLEASEREPORT|RB_ISFATAL); break; @@ -75,6 +78,9 @@ function script GHQ_GetMonsterIDByQuestID { case 10: return Bat; break; + case 11: + return GreenDragon; + break; default: return Exception("GHQ GMID: Invalid ID: "+getarg(0), RB_DEFAULT^RB_PLEASEREPORT|RB_ISFATAL); break; |