Advertisement
LSLCNR

Untitled

Nov 12th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. local sg = peripheral.wrap("right")
  2.  
  3. local favAddresses = {
  4. {
  5. title = "",
  6. address = ""
  7. }
  8. }
  9.  
  10. local curFuncScreen = nil
  11.  
  12. function resetScreen()
  13. term.clear()
  14. term.setBackgroundColor(colors.gray)
  15. term.setCursorPos(1,1)
  16. end
  17.  
  18. function startup()
  19. resetScreen()
  20. curFuncScreen = startup
  21. end
  22.  
  23. while true do
  24. curFuncScreen()
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement