Advertisement
psychedelixx

Minecraft ToDo List

Oct 12th, 2015
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.72 KB | None | 0 0
  1. function newLine()
  2.   local _,cY= monitor.getCursorPos()
  3.   monitor.setCursorPos(1,cY+1)
  4. end
  5.  
  6. monitor = peripheral.wrap("top")
  7. monitor.clear()
  8. monitor.setTextScale(1)
  9. monitor.setCursorPos(1,1)
  10. monitor.write("============================================================")
  11. newLine()
  12. monitor.write("To Do List")
  13. newLine()
  14. monitor.write("============================================================")
  15. newLine()
  16. monitor.write("- Ender Quarry")
  17. newLine()
  18. monitor.write("- More power")
  19. newLine()
  20. monitor.write("- More farms (incl. flowers)")
  21. newLine()
  22. monitor.write("- More automation")
  23. newLine()
  24. monitor.write("- More dimensions")
  25. newLine()
  26. monitor.write("- Bees")
  27. newLine()
  28. monitor.write("- Repair liquid xp tank")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement