summaryrefslogtreecommitdiff
path: root/npc/006-1
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-07-08 15:49:50 -0300
committerJesusaves <cpntb1@ymail.com>2018-07-08 15:50:25 -0300
commitbbd0c8da54976a7aab0c6ac52167aeda1cdde34b (patch)
tree9f94ba416b131bf5e1193683f5354f23ab658fed /npc/006-1
parenta72cc349be4c1def312f0101050a9cfe1f5ab184 (diff)
downloadserverdata-bbd0c8da54976a7aab0c6ac52167aeda1cdde34b.tar.gz
serverdata-bbd0c8da54976a7aab0c6ac52167aeda1cdde34b.tar.bz2
serverdata-bbd0c8da54976a7aab0c6ac52167aeda1cdde34b.tar.xz
serverdata-bbd0c8da54976a7aab0c6ac52167aeda1cdde34b.zip
[skip ci] Reward rebalance. The code was meant to be fine, it was a bug.
Diffstat (limited to 'npc/006-1')
-rw-r--r--npc/006-1/crazyfefe.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/006-1/crazyfefe.txt b/npc/006-1/crazyfefe.txt
index 9e1285c86..42ef25a43 100644
--- a/npc/006-1/crazyfefe.txt
+++ b/npc/006-1/crazyfefe.txt
@@ -236,8 +236,8 @@ L_CleanUp:
OnReward:
if (ispcdead())
end;
- // Player reward is a random number from 1~3 + lvl/50 (1 point ~= 12~8 mobs)
- .@prize=rand(1,3) + ($@FEFE_CAVE_LEVEL/50);
+ // Player reward is a random number based on current wave + lvl/50 (1 point ~= 12~8 mobs)
+ .@prize=rand($@FEFE_WAVE/2,$@FEFE_WAVE) + ($@FEFE_CAVE_LEVEL/50);
Zeny=Zeny+.@prize;
getexp .@prize, rand(1,3);
end;