Advertisement
Guest User

facilityMap

a guest
May 14th, 2017
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.42 KB | None | 0 0
  1. mon = peripheral.wrap("top")
  2.  
  3. function drawMap()
  4. mon.setBackgroundColor(colors.white)
  5. mon.setTextScale(1)
  6. mon.setTextColor(colors.black)
  7.  
  8. mon.setCursorPos(1, 1)
  9. mon.write("    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ")
  10. mon.setCursorPos(1, 2)
  11. mon.write("  <  _ _ _ _   _ _ _ _     _ _ _ _   _ _ _ _  >")
  12. mon.setCursorPos(1, 3)
  13. mon.write(" < <         I         I I         I         > >")
  14. mon.setCursorPos(1, 4)
  15. mon.write("< <          I    #3   I I   #2    I          > >")
  16. mon.setCursorPos(1, 5)
  17. mon.write("I I   M.Ch.  I         I I         I    M.E.  I I")
  18. mon.setCursorPos(1, 6)
  19. mon.write("I I          I _ _ _ _ I I _ _ _ _ I          I I")
  20. mon.setCursorPos(1, 7)
  21. mon.write("I I          <         I I         >          I I")
  22. mon.setCursorPos(1, 8)
  23. mon.write("I I _ _ _ _ <    G     I I     G    > _ _ _ _ I I")
  24. mon.setCursorPos(1, 9)
  25. mon.write("I I         I       _ _I I_ _       I         I I")
  26. mon.setCursorPos(1, 10)
  27. mon.write("I I    #4   I      <         >      I    #1   I I")
  28. mon.setCursorPos(1, 11)
  29. mon.write("I I         I      I         I      I         I I")
  30. mon.setCursorPos(1, 12)
  31. mon.write("I I _ _ _ _ I _ _ _I         I_ _ _ I _ _ _ _ I I")
  32. mon.setCursorPos(1, 13)
  33. mon.write("I   _ _ _ _   _ _ _I   C.R.  I_ _ _ _ _ _ _ _     <---")
  34. mon.setCursorPos(1, 14)
  35. mon.write("I I         I      I         I      I         I I")
  36. mon.setCursorPos(1, 15)
  37. mon.write("I I    #5   I      I         I      I    #8   I I")
  38. mon.setCursorPos(1, 16)
  39. mon.write("I I         I      <_ _I I_ _>      I         I I")
  40. mon.setCursorPos(1, 17)
  41. mon.write("I I _ _ _ _ I    G     I I     G    I _ _ _ _ I I")
  42. mon.setCursorPos(1, 18)
  43. mon.write("I I         <          I I          >         I I")
  44. mon.setCursorPos(1, 19)
  45. mon.write("I I          < _ _ _ _ I I _ _ _ _ >          I I")
  46. mon.setCursorPos(1, 20)
  47. mon.write("I I          I         I I         I          I I")
  48. mon.setCursorPos(1, 21)
  49. mon.write("I I    ?.?.  I    #6   I I   #7    I    T.C.  I I")
  50. mon.setCursorPos(1, 22)
  51. mon.write("< <          I         I I         I          > >")
  52. mon.setCursorPos(1, 23)
  53. mon.write(" < < _ _ _ _ I _ _ _ _ I I _ _ _ _ I _ _ _ _ > >")
  54. mon.setCursorPos(1, 24)
  55. mon.write("  < _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ >")
  56.  
  57. mon.setCursorPos(3, 26)
  58. mon.write("T.C. = ThaumCraft Room")
  59.  
  60. mon.setCursorPos(3, 27)
  61. mon.write("M.E. = M.E. Room")
  62.  
  63. mon.setCursorPos(3, 28)
  64. mon.write("M.Ch. = MineChem Room")
  65.  
  66. end
  67.  
  68. drawMap()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement