summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-11-29 17:15:57 -0300
committerJesusaves <cpntb1@ymail.com>2020-11-29 17:15:57 -0300
commit462d0ce48f8ddfffb017672dc5789ddac0c69359 (patch)
tree9258fd0e2206d112b130a529d7845b1386d931d5
parent68229385cfe83c85079dfef1333e310656071a0c (diff)
downloadserverdata-462d0ce48f8ddfffb017672dc5789ddac0c69359.tar.gz
serverdata-462d0ce48f8ddfffb017672dc5789ddac0c69359.tar.bz2
serverdata-462d0ce48f8ddfffb017672dc5789ddac0c69359.tar.xz
serverdata-462d0ce48f8ddfffb017672dc5789ddac0c69359.zip
Upon request: Green Dragon Grand Hunter Quest! \o/
-rw-r--r--npc/017-3/dimonds.txt4
-rw-r--r--npc/functions/mobhunter.txt6
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;