Advertisement
masa-

CC Turtle: XPBot v0.1.0

Mar 24th, 2013
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.34 KB | None | 0 0
  1. while true do
  2.     local i = 0
  3.     -- Attack 100 times
  4.     while i < 100 do
  5.         if turtle.attack() == true then
  6.             i = i + 1
  7.         end
  8.     end
  9.     turtle.suck()
  10.  
  11.     -- Dump the inventory to the chest below
  12.     for j = 1, 16 do
  13.         local num = turtle.getItemCount(j)
  14.         if num > 0 then
  15.             turtle.select(j)
  16.             turtle.dropDown(num)
  17.         end
  18.     end
  19.     turtle.select(1)
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement