diff options
Diffstat (limited to 'npc/003-1/aidan.txt')
-rw-r--r-- | npc/003-1/aidan.txt | 12 |
1 files changed, 8 insertions, 4 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; } |