Advertisement
Guest User

ToDoList

a guest
Apr 23rd, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.43 KB | None | 0 0
  1. mon = peripheral.wrap("back")
  2. n = mon.setTextColor(colors.red)
  3. y = mon.setTextColor(colors.lime)
  4. --Item 1
  5. mon.setCursorPos(1,1)
  6. n
  7. mon.write("[ ] Build Massive Reactor")
  8. --Item 2
  9. mon.setCursorPos(2,1)
  10. n
  11. mon.write("[ ] Aquire Atleast 100 More Test Subjects")
  12. --Item 3
  13. mon.setCursorPos(3,1)
  14. n
  15. mon.write("[ ] Build Office Building")
  16. --Item 4
  17. mon.setCursorPos(4,1)
  18. n
  19. mon.write("[ ] Setup For Moon Research Lab & Portal Hub")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement