Pandafuchs

Glowstone Lampen aufstellen

Oct 23rd, 2016
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  1. turtle.select(1)
  2. turtle.refuel(1)
  3. turtle.select(2)
  4.  
  5. while true do
  6.  
  7.     if turtle.getItemCount() <= 0 then
  8.         turtle.select(turtle.getSelectedSlot()+1);
  9.     end
  10.  
  11.     while turtle.detect() == false do
  12.         turtle.turnLeft();
  13.     end
  14.  
  15.     turtle.dig();
  16.     turtle.place();
  17.     turtle.turnRight();
  18.  
  19.     for i=1,8 do
  20.         turtle.forward();
  21.     end
  22. end
Advertisement
Add Comment
Please, Sign In to add comment