Advertisement
lordsyca

map

Jul 12th, 2014
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. local monitor = peripheral.wrap("right")
  2. monitor.setTextScale(2)
  3. term.redirect(monitor)
  4.  
  5. while true do
  6. term.clear()
  7. term.setCursorPos(1,1)
  8. term.setTextColor(colors.red)
  9. print("Doug Dimmadome's Dimmsdale Doom Dome")
  10. term.setTextColor(colors.orange)
  11. print(" Layout\n\n")
  12.  
  13. term.setTextColor(colors.orange)
  14. print("Floor # - Floor name")
  15.  
  16. term.setTextColor(colors.green)
  17. print("8 - KND Tree House")
  18. print("7 - Garden")
  19. term.setTextColor(colors.orange)
  20. write("6 - Lobby")
  21. write(" <Here>\n")
  22. print("5 - Magic Floor")
  23.  
  24. term.setTextColor(colors.brown)
  25. print("4 - Machine Floor")
  26. print("3 - Power Floor")
  27.  
  28. term.setTextColor(colors.lightGray)
  29. print("2 - Farms of Fun")
  30. print("1 - Cryopods")
  31.  
  32. term.setTextColor(colors.gray)
  33. print("0 - Arena")
  34. sleep(60)
  35. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement