diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-12-30 01:13:02 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-12-30 01:13:02 -0200 |
commit | e406d01e57501fece153c28b3b744d4b3c26a795 (patch) | |
tree | c9c9b8eb941c2592fec0d3ff6e3891e1a97285fb /npc | |
parent | 1734b94c14b1a821e24a037fe67fe193d0c6e4a1 (diff) | |
download | serverdata-e406d01e57501fece153c28b3b744d4b3c26a795.tar.gz serverdata-e406d01e57501fece153c28b3b744d4b3c26a795.tar.bz2 serverdata-e406d01e57501fece153c28b3b744d4b3c26a795.tar.xz serverdata-e406d01e57501fece153c28b3b744d4b3c26a795.zip |
During night, fishing can be _up to_ 20% faster.
This doesn't means it'll be 20% faster, it _can be_ 20% faster.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/fishing.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/fishing.txt b/npc/functions/fishing.txt index 3777a17fc..22b5ad33d 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 10% faster. Default is a 2 second max delay gain + // This will make they reply at most 20% faster. Default is a 4 second max delay gain if (is_night()) - .@wait_time_max = min(.@wait_time_min, .@wait_time_max*9/10); + .@wait_time_max = min(.@wait_time_min, .@wait_time_max*8/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); |