Advertisement
lipj01

turtle control

Apr 1st, 2012
673
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.76 KB | None | 0 0
  1.  
  2. function keycheck()
  3. local sEvent, param = os.pullEvent()
  4.  
  5. --place
  6. if sEvent == "key" and param == 54 then
  7. turtle.place()
  8. end
  9.  
  10. --dig
  11. if sEvent == "key" and param == 28 then
  12. print"you pressed enter"
  13. turtle.dig()
  14. print"turtle digging"
  15. end
  16.  
  17. --forward
  18. if sEvent == "key" and param == 200 then
  19. turtle.forward()
  20. end
  21.  
  22. --back
  23. if sEvent == "key" and param == 208 then
  24. turtle.back()
  25. end
  26.  
  27. --turn left
  28. if sEvent == "key" and param == 203 then
  29. turtle.turnLeft()
  30. end
  31.  
  32. --turn right
  33. if sEvent == "key" and param == 205 then
  34. turtle.turnRight()
  35. end
  36.  
  37. --up
  38. if sEvent == "key" and param == 57 then
  39. turtle.up()
  40. end
  41.  
  42. --down
  43. if sEvent == "key" and param == 42 then
  44. turtle.down()
  45. end
  46.  
  47. --end of function
  48. end
  49.  
  50. while true do
  51. sleep(0)
  52. keycheck()
  53. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement