diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/003-10/kreist.txt | 4 | ||||
-rw-r--r-- | npc/024-16/generals.txt | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/npc/003-10/kreist.txt b/npc/003-10/kreist.txt index e17c7312f..068625dda 100644 --- a/npc/003-10/kreist.txt +++ b/npc/003-10/kreist.txt @@ -72,9 +72,9 @@ 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*50; + Zeny+=.@lv*40; // Raise LV according to monster level - .@lv+=strmobinfo(3, .@q2)/2; + .@lv+=strmobinfo(3, .@q2); getexp BaseLevel*.@lv, .@lv; setq2 .@q, 0; MERCENARY_DAILYQUEST+=1; diff --git a/npc/024-16/generals.txt b/npc/024-16/generals.txt index d7b11fe22..b5a0ddfcb 100644 --- a/npc/024-16/generals.txt +++ b/npc/024-16/generals.txt @@ -26,9 +26,9 @@ 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*10; + Zeny+=.@lv*8; // Raise LV according to monster level - .@lv+=strmobinfo(3, .@q2)/2; + .@lv+=strmobinfo(3, .@q2); getexp BaseLevel*.@lv, .@lv; setq2 .@q, 0; return false; |