diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-13 01:01:14 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-13 01:01:14 -0300 |
commit | 8886ed400749cb3dea7c2088344b5be00ca0074b (patch) | |
tree | e8ce2ac93bc7dbc220897df174739ec97e8f7084 | |
parent | 8e96dc6dc203b94a538cea8cd90345c085d94d01 (diff) | |
download | serverdata-8886ed400749cb3dea7c2088344b5be00ca0074b.tar.gz serverdata-8886ed400749cb3dea7c2088344b5be00ca0074b.tar.bz2 serverdata-8886ed400749cb3dea7c2088344b5be00ca0074b.tar.xz serverdata-8886ed400749cb3dea7c2088344b5be00ca0074b.zip |
Wait, Kreist/Generals give ~100 GP while Arkim gives ~1200 GP... Not right.
Multiply gp reward in 10, so it gives ~1000 GP each NPC
-rw-r--r-- | npc/003-10/kreist.txt | 2 | ||||
-rw-r--r-- | npc/024-16/generals.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/npc/003-10/kreist.txt b/npc/003-10/kreist.txt index 0102fb3e3..e17c7312f 100644 --- a/npc/003-10/kreist.txt +++ b/npc/003-10/kreist.txt @@ -72,7 +72,7 @@ L_QuestMaster: next; mesn l("Kreist, Taskmaster"); mesq l("It's not much of a reward, but doesn't it feels great to help others in need?! HAHAHA!"); - Zeny+=.@lv*5; + Zeny+=.@lv*50; // Raise LV according to monster level .@lv+=strmobinfo(3, .@q2)/2; getexp BaseLevel*.@lv, .@lv; diff --git a/npc/024-16/generals.txt b/npc/024-16/generals.txt index adc020777..d7b11fe22 100644 --- a/npc/024-16/generals.txt +++ b/npc/024-16/generals.txt @@ -26,7 +26,7 @@ function script FrostiaTaskMaster { next; mesn; mesq l("It's not much of a reward, but doesn't it feels great to help others in need?! HAHAHA!"); - Zeny+=.@lv; + Zeny+=.@lv*10; // Raise LV according to monster level .@lv+=strmobinfo(3, .@q2)/2; getexp BaseLevel*.@lv, .@lv; |