diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/event.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/event.txt b/npc/functions/event.txt index 77ac42eb5..abb5a2774 100644 --- a/npc/functions/event.txt +++ b/npc/functions/event.txt @@ -276,9 +276,9 @@ function script FSFDay { if (gettime(5) != 9) return; - // Max. 0.20% chances, 0.001% per monster level + // Max. 0.16% chances, 0.008% per monster level .@lv=min(200, getmonsterinfo(killedrid, MOB_LV)); - if (rand(1000000) < (.@lv*10)) { + if (rand(1000000) < (.@lv*8)) { getmapxy(.@m$, .@x, .@y, 0); .@x+=rand2(-1,1); .@y+=rand2(-1,1); |