diff options
author | Sean Hulka <sean.hulka@gmail.com> | 2020-01-14 20:27:39 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-01-14 20:27:39 -0300 |
commit | 8d4105a03c463bf355db998117e6fd60481490b4 (patch) | |
tree | 104ad11eed017fe8666e3665817737e06fba2f82 /npc/functions | |
parent | d741325eff425cfffe82aeb954fb6d69b1752618 (diff) | |
download | serverdata-8d4105a03c463bf355db998117e6fd60481490b4.tar.gz serverdata-8d4105a03c463bf355db998117e6fd60481490b4.tar.bz2 serverdata-8d4105a03c463bf355db998117e6fd60481490b4.tar.xz serverdata-8d4105a03c463bf355db998117e6fd60481490b4.zip |
Duck Grand Hunter Quest
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/mobhunter.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/npc/functions/mobhunter.txt b/npc/functions/mobhunter.txt index 11681a998..ce68ec0e5 100644 --- a/npc/functions/mobhunter.txt +++ b/npc/functions/mobhunter.txt @@ -29,6 +29,9 @@ function script GHQ_GetQuestIDByMonsterID { case MountainSnake: return 8; break; + case Duck: + return 9; + break; default: return Exception("GHQ GQID: Invalid ID: "+getarg(0), RB_DEFAULT^RB_PLEASEREPORT|RB_ISFATAL); break; @@ -63,6 +66,9 @@ function script GHQ_GetMonsterIDByQuestID { case 8: return MountainSnake; break; + case 9: + return Duck; + break; default: return Exception("GHQ GMID: Invalid ID: "+getarg(0), RB_DEFAULT^RB_PLEASEREPORT|RB_ISFATAL); break; |