Advertisement
Fwaky

Untitled

Mar 22nd, 2014
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.58 KB | None | 0 0
  1. init start
  2.     local pickid   = 3456
  3.     local fishpole = 3483
  4.     ------------------------
  5.     -- DO NOT EDIT BELOW! --
  6.     ------------------------
  7.  
  8.     local unopened = 7200
  9.     local fished   = 7237
  10.     local unfished = 7236
  11. init end
  12. auto(2500)
  13. if(itemcount(3492) > 0) then -- Check to make sure we have worms.
  14.     for x = $posx-7, $posx+7 do
  15.         for y = $posy-5, $posy+5 do
  16.             if(topitem(x, y, $posz).id == unopened) then
  17.                 moveto(x+1, y, $posz) -- Lets stand to the right of the hole.
  18.                 wait(800)
  19.                 fishinice(x, y, $posz, pickid) -- Pick it, fish it, profit from it.
  20.             end
  21.         end
  22.     end
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement