Quote Originally Posted by Shadow Wolf View Post
Ofcourse! hahaha
We need to get the community on XenoForums up and running.
I got this fishing script from @Blab Scripts.

[CODE=lua]--*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
-- DO NOT CHANGE
--*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
function fish(maxFish)
if (Self.ItemCount(3578) <= maxFish) or (maxFish == 0) then
for x = -7, 7, 1 do
for y = -5, 5, 1 do
Self.UseItemWithGround(3483, Self.Position().x + x, Self.Position().y + y, Self.Position().z)
wait(1200,1800)
end
end
else
wait(5000,10000)
end
end




--*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
-- CHANGE BELOW HERE
--*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
if Self.ItemCount(3483) >= 1 then
displayInformationMessage("Executing Blab's Fishing script.")
while(true) do
--*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
-- Put how many fish you want to catch. EXAMPLE: fish(NUMBER)
-- If you do not want to stop put - fish(0)
--*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
fish(10)
end
else
displayInformationMessage("Blab says you need a fishing rod dummy.")
end[/CODE]
Thanks! Will this fish on different spots at the water? And how many worms should I bring and will the script continue to run all the time until I got worms?