diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-26 18:15:14 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-26 18:15:14 -0300 |
commit | 8b1150ea7e9477465507cc018969c28c33077d63 (patch) | |
tree | 774c2396fb18d8f179f5f5ef3379987419327713 /npc | |
parent | 5490045291904d9c4a5f586c4a724e05b6b18eb5 (diff) | |
download | serverdata-8b1150ea7e9477465507cc018969c28c33077d63.tar.gz serverdata-8b1150ea7e9477465507cc018969c28c33077d63.tar.bz2 serverdata-8b1150ea7e9477465507cc018969c28c33077d63.tar.xz serverdata-8b1150ea7e9477465507cc018969c28c33077d63.zip |
100 Strange Coins for hunting Mouboos and Snakes.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/003-1/aidan.txt | 12 | ||||
-rw-r--r-- | npc/009-1/guards.txt | 2 | ||||
-rw-r--r-- | npc/012-1/lufix.txt | 2 |
3 files changed, 10 insertions, 6 deletions
diff --git a/npc/003-1/aidan.txt b/npc/003-1/aidan.txt index db1247e04..f238b93e8 100644 --- a/npc/003-1/aidan.txt +++ b/npc/003-1/aidan.txt @@ -104,6 +104,8 @@ L_Assign: end; L_Finish: + // Check if you can store a Strange Coin (you really should) + inventoryplace StrangeCoin, 1; mes l("Current progress: @@/10000 @@", getq2(General_Hunter), getmonsterlink(GHQ_GetMonsterIDByQuestID(getq(General_Hunter)))); GHMEMO[getq(General_Hunter)]=getq2(General_Hunter); switch (getq(General_Hunter)) { @@ -119,9 +121,10 @@ L_Finish: close; case 2: setq General_Hunter, 0, 0; - Zeny=Zeny+250000; + Zeny=Zeny+350000; + geitem StrangeCoin, 100; mesn; - mesq l("Good job, here is 250,000 GP!"); + mesq l("Good job, here is 350,000 GP and 100 @@!", getitemlink(StrangeCoin)); close; case 3: setq General_Hunter, 0, 0; @@ -131,9 +134,10 @@ L_Finish: close; case 4: setq General_Hunter, 0, 0; - Zeny=Zeny+1000000; + Zeny=Zeny+250000; + geitem StrangeCoin, 100; mesn; - mesq l("Good job, here is 1,000,000 GP!"); + mesq l("Good job, here is 250,000 GP and 100 @@!", getitemlink(StrangeCoin)); close; } diff --git a/npc/009-1/guards.txt b/npc/009-1/guards.txt index 52092d2d7..397d3f090 100644 --- a/npc/009-1/guards.txt +++ b/npc/009-1/guards.txt @@ -16,7 +16,7 @@ mesn; mesq l("Various people already went missing. We are not allowing anyone to pass, not even GMs!"); if (GHQUEST) - GHQ_Assign(Snake, "Halinarzo", "250.000 GP"); + GHQ_Assign(Snake, "Halinarzo", "350.000 GP, 100 "+getitemlink(StrangeCoin)); end; L_MKControl: diff --git a/npc/012-1/lufix.txt b/npc/012-1/lufix.txt index 23e5f06cc..950134f97 100644 --- a/npc/012-1/lufix.txt +++ b/npc/012-1/lufix.txt @@ -17,7 +17,7 @@ L_Main: if (GHQUEST) - GHQ_Assign(Mouboo, "Hurnscald", "1.000.000 GP"); + GHQ_Assign(Mouboo, "Hurnscald", "250.000 GP, 100 "+getitemlink(StrangeCoin)); close; L_SummerQuest: |