Advertisement
djPtica

platform

May 5th, 2014
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.34 KB | None | 0 0
  1. function line(x) do
  2.  for i=1,x do
  3.   turtle.forward()
  4.   turtle.placeDown()
  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. for i=1,b do
  17.  line(a)
  18.  if i%2==1 then
  19.   turtle.turnRight()
  20.   turtle.turnRight()
  21.  else
  22.   turtle.turnLeft()
  23.   turtle.turnLeft()
  24.  end
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement