Everyone who has never used our Bots before, can test each one for 2 days without any limitation.
The trial is given automatically when you login on the Bot, but in some cases it wouldn't work (security reasons).
If this happens, send me a private message and i will be checking the failed trials manually and adding it for those who didn't get it.
We are looking for resellers who may accept payment methods different from ours, including classictibia's cash, realesta's cash, mastercores' cash, etc. Interested? Click here at anytime.



Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
FREE Enable/Disable Auto Fishing every X seconds
#1
Hello.

This script will disable Tools->Auto Fishing for a random time (TIME_RESTING) then enable Tools->Auto Fishing and let it work for a random time (TIME_FISHING) as well. So it may not look like a macro when fishing for long periods.

Example: It will try fish for 8~15 seconds in a row then stops for 5~10s.

local TIME_FISHING = { Min = 8, Max = 15 } -- In seconds. Time to let bot fishing.
local TIME_RESTING = { Min = 5000, Max = 10000 } -- In milliseconds. Time to let bot wait after fishing time.

if NEXT_CHECK == nil then
    NEXT_CHECK = runningtime() + random(TIME_FISHING.Min, TIME_FISHING.Max)
end

if runningtime() >= NEXT_CHECK then
    setsettings('Tools/Auto Fishing/Enabled', false)
    wait(TIME_RESTING.Min, TIME_RESTING.Max)
    setsettings('Tools/Auto Fishing/Enabled', true)
    NEXT_CHECK = runningtime() + random(TIME_FISHING.Min, TIME_FISHING.Max)
end
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016