Advertisement
Guest User

turtle

a guest
Jun 26th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.43 KB | None | 0 0
  1. term.setBackgroundColor(colors.black)
  2. term.setTextColor(colors.white)
  3. bC = colors.red
  4.  
  5. function button(bText, xA, xB, zA, zB)
  6.   paintutils.drawLine(xA, zA, xB, zB, bC)
  7.   term.setCursorPos(xA+1, zA)
  8.   term.write(bText)
  9.   term.setCursorPos(1, 1)
  10. end
  11.  
  12. button("Forward", 2, 9, 3, 3)
  13. button("Back", 2, 9, 5, 5)
  14. button("Left", 2, 9, 7, 7)
  15.  
  16. button("Up", 11, 19, 3, 3)
  17. button("Down", 11, 19, 5, 5)
  18. button("Right", 11, 19, 7, 7)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement