Advertisement
djPtica

fenceDel (Ender Quarry)

May 5th, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.31 KB | None | 0 0
  1. function line(x) do
  2.  for i=1,x do
  3.   turtle.dig()
  4.   turtle.forward()
  5.  end
  6. end
  7.  
  8. --GLAVNI PROGRAM
  9.  
  10. local tArgs = {...}
  11. local a = 0
  12. local b = 0
  13. a = tonumber(tArgs[1])
  14. b = tonumber(tArgs[2])
  15.  
  16. line(a)
  17. turtle.turnRight()
  18. line(b)
  19. turtle.turnRight()
  20. line(a)
  21. turtle.turnRight()
  22. line(b)
  23. turtle.turnRight()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement