Advertisement
Rolcam

ComputerCraft Info Billboard Program

Jun 22nd, 2020 (edited)
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.33 KB | None | 0 0
  1. -- Monitor Size: 5 x 3
  2. os.pullEvent = os.pullEventRaw
  3. mon = peripheral.wrap("left")
  4. while true do
  5. -- Section 1: Town Perks and Pricing
  6. mon.setBackgroundColor(colors.black)
  7. mon.clear()
  8. mon.setCursorPos(8,1)
  9. mon.setTextColor(colors.orange)
  10. mon.write("\"The Arena\" Exhibit Information Board")
  11. -- Town Perks
  12. mon.setCursorPos(1,3)
  13. sleep(0.5)
  14. mon.write("Exhibit Fights:")
  15. mon.setCursorPos(1,4)
  16. mon.setTextColor(colors.gray)
  17. mon.write("Evolved Skeleton Boss - $500 [Moon Boss]")
  18. sleep(0.5)
  19. mon.setCursorPos(1,5)
  20. mon.setTextColor(colors.lime)
  21. mon.write("Evolved Creeper Boss - $500 [Mars Boss]")
  22. sleep(0.5)
  23. mon.setCursorPos(1,6)
  24. mon.setTextColor(colors.purple)
  25. mon.write("Wither [Limited] - $750")
  26. sleep(3)
  27. sleep(3)
  28. -- Evolved Skeleton Boss Info
  29. mon.setBackgroundColor(colors.black)
  30. mon.clear()
  31. mon.setCursorPos(8,1)
  32. mon.setTextColor(colors.orange)
  33. mon.write("\"The Arena\" Exhibit Information Board")
  34. mon.setCursorPos(1,3)
  35. mon.setTextColor(colors.purple)
  36. sleep(0.5)
  37. mon.write("Evolved Skeleton Boss Info:")
  38. mon.setCursorPos(1,5)
  39. sleep(0.5)
  40. mon.write("Try to keep your distance and fire with")
  41. mon.setCursorPos(1,6)
  42. mon.write("ranged weapons. Don't use melee weapons.")
  43. mon.setCursorPos(1,7)
  44. mon.write("This boss can pick you up and throw you at")
  45. mon.setCursorPos(1,8)
  46. mon.write("close range.")
  47. mon.setCursorPos(1,9)
  48. mon.write("Flight is highly recommended for this fight")
  49. mon.setCursorPos(1,12)
  50. mon.write("Battle Location: Moon Dungeon - Bring O2 Gear")
  51. mon.setCursorPos(1,13)
  52. mon.write("Drops: Tier 1 Moon Dungeon Key")
  53. sleep(10)
  54. -- Evolved Creeper Boss Info
  55. mon.setBackgroundColor(colors.black)
  56. mon.clear()
  57. mon.setCursorPos(8,1)
  58. mon.setTextColor(colors.orange)
  59. mon.write("\"The Arena\" Exhibit Information Board")
  60. mon.setCursorPos(1,3)
  61. mon.setTextColor(colors.lime)
  62. sleep(0.5)
  63. mon.write("Evolved Creeper Boss Info:")
  64. mon.setCursorPos(1,5)
  65. sleep(0.5)
  66. mon.write("This boss can only be damaged by its own TNT")
  67. mon.setCursorPos(1,6)
  68. mon.write("Hit the TNT with your sword to fire it back")
  69. mon.setCursorPos(1,7)
  70. mon.write("This is easier due to the lack of creeper eggs")
  71. mon.setCursorPos(1,8)
  72. mon.write("Flight is highly recommended for this fight")
  73. mon.setCursorPos(1,12)
  74. mon.write("Battle Location: Mars Dungeon - Bring O2 Gear")
  75. mon.setCursorPos(1,13)
  76. mon.write("Drops: Tier 2 Moon Dungeon Key")
  77. sleep(10)
  78. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement