diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-01 12:36:50 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-01 12:36:50 -0300 |
commit | a5183a38dd8d74fd1eb52b6f78236b725dcb9a87 (patch) | |
tree | ed5e414e7b0fd8035eecbc4d47d1228464d9240c | |
parent | 7242d6b1599b876334f70495c743ed35788f0625 (diff) | |
download | serverdata-a5183a38dd8d74fd1eb52b6f78236b725dcb9a87.tar.gz serverdata-a5183a38dd8d74fd1eb52b6f78236b725dcb9a87.tar.bz2 serverdata-a5183a38dd8d74fd1eb52b6f78236b725dcb9a87.tar.xz serverdata-a5183a38dd8d74fd1eb52b6f78236b725dcb9a87.zip |
Prepare GHQ: Scorpions. But no NPC assign this yet.
-rw-r--r-- | npc/003-1/aidan.txt | 6 | ||||
-rw-r--r-- | npc/functions/mobhunter.txt | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/npc/003-1/aidan.txt b/npc/003-1/aidan.txt index 415cf9bd6..09dda89e5 100644 --- a/npc/003-1/aidan.txt +++ b/npc/003-1/aidan.txt @@ -123,6 +123,12 @@ L_Finish: mesn; mesq l("Good job, here is 250,000 GP!"); close; + case 3: + setq General_Hunter, 0, 0; + Zeny=Zeny+100000; + mesn; + mesq l("Good job, here is 100,000 GP!"); + close; } OnInit: diff --git a/npc/functions/mobhunter.txt b/npc/functions/mobhunter.txt index e11a08559..ac4fd4250 100644 --- a/npc/functions/mobhunter.txt +++ b/npc/functions/mobhunter.txt @@ -40,6 +40,9 @@ function GHQ_GetQuestIDByMonsterID { case Snake: return 2; break; + case Scorpion: + return 3; + break; default: debugmes "Invalid mob ID: " + getarg(0); dispbottom l("ERROR, Please report: GHQ GQID: Invalid ID: @@", getarg(0)); |