Advertisement
lucas_csantos

TurnLeft

Nov 25th, 2012
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. tArgs = {...}
  2. local times
  3.  
  4. --if no arguments are passed, assume 1
  5. if tArgs[1] == nil then times = 1
  6. else
  7. times = tArgs[1]
  8. end
  9.  
  10. for i=1,times do
  11. turtle.turnLeft()
  12. facing = facing - 1
  13. if facing == -1 then facing = 3 end
  14. shell.run("savePos")
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement