as the title says: i just need a good script for training skill fishing.
Printable View
as the title says: i just need a good script for training skill fishing.
It's already implemented inside the bot under persistents but if you can't find it then here it is.
init start
-- local SCRIPT_VERSION = '1.0.1'
local fishwithnoworms = false
local maxfish = {from = 5, to = 10}
maxfish.current = math.random(maxfish.from, maxfish.to)
init end
auto(400,600) listas('dontlist')
if $cap > itemweight('fish') then
if not fishwithnoworms and itemcount('worms') == 0 then
listas('Please, open the backpack containing worms')
elseif itemcount('fish') <= maxfish.current then
fish(30)
maxfish.current = math.random(maxfish.from, maxfish.to)
end
end
but it isnt working and i dont know why. it just stop like after 3 rounds
This script is only aiming to fish inbetween 5 to 10 fish, just increase the numbers on the 6th line.
now its working! thanks :D
hey! and how to make him drop the fishes? because he stops when i dont have more cap.
Add this to persistent hotkeys:
local capToDrop = 40 -- cap to drop the fish
if $cap < capToDrop and itemcount('fish') >= 1 then
moveitems('fish', 'ground')
end
awesome! thanks, StarR! u're awesome.
hey! here i am again.
the "persistent htk" isnt working anymore. now i have to activate it to drop. it isnt working alone.
so...?