summaryrefslogtreecommitdiff
path: root/npc/functions/fishing.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-01-17 00:23:09 -0200
committerJesusaves <cpntb1@ymail.com>2019-01-17 00:23:09 -0200
commite4aee6cd41966a87db9055f9c79f82f390920c15 (patch)
tree3ff58618a538f72b0f13ec2cfe9fe71e57c64fdf /npc/functions/fishing.txt
parent72ebd05f1e8bc949b09ace760da7a9c80d6201a6 (diff)
downloadserverdata-e4aee6cd41966a87db9055f9c79f82f390920c15.tar.gz
serverdata-e4aee6cd41966a87db9055f9c79f82f390920c15.tar.bz2
serverdata-e4aee6cd41966a87db9055f9c79f82f390920c15.tar.xz
serverdata-e4aee6cd41966a87db9055f9c79f82f390920c15.zip
During night, fishing is ~~20%~~ 30%! faster (at most), meaning you won't wait
more than 12 seconds for the fish (maximum is 18 seconds normally)
Diffstat (limited to 'npc/functions/fishing.txt')
-rw-r--r--npc/functions/fishing.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/fishing.txt b/npc/functions/fishing.txt
index f9298af26..b571768cb 100644
--- a/npc/functions/fishing.txt
+++ b/npc/functions/fishing.txt
@@ -119,9 +119,9 @@ function script fishing {
.@wait_time_max = (.@wait_time_max ? .@wait_time_max : 18000);
// During night time there are more fishes, and therefore, it is easier to fish
- // This will make they reply at most 20% faster. Default is a 4 second max delay gain
+ // This will make they reply at most 30% faster. Default is a 6 second max delay gain
if (is_night())
- .@wait_time_max = min(.@wait_time_min, .@wait_time_max*8/10);
+ .@wait_time_max = min(.@wait_time_min, .@wait_time_max*7/10);
.@catch_time = getvariableofnpc(.catch_time, .@npc$); // the player must catch the fish within X ms after the line sinks
.@catch_time = (.@catch_time ? .@catch_time : 5000);