Log in

View Full Version : Fishing rod problems



Ownings
09-13-2014, 02:41 PM
Hello guys, i was using one water elemental script and my bot is not fishing, my fishing rod is on the main bp and and i need a little help about it, have any .lua can i add to make it more simple? or any configuration? thanks..

Glowingstick
09-13-2014, 03:24 PM
I'm using this one not sure who made it but it works great, if you dont want the bot to stop for 1 sec when a body is found remove Walker.Delay(800,1000)


Module.New('Fish', function(module)
if Self.ItemCount(3483) > 0 and Self.TargetID() < 1 then
for y = -5, 5 do
for x = -7, 7 do
if Map.GetTopUseItem(Self.Position().x + x, Self.Position().y + y, Self.Position().z).id == 9582 then
Walker.Delay(800,1000)
Self.UseItemWithGround(3483, Self.Position().x + x, Self.Position().y + y, Self.Position().z)
wait(500,900)
end
end
end
end
end)

Ownings
09-14-2014, 04:25 AM
Hey guy, i already understand how i make it, thanks so much to solve my problem :D