Advertisement
Rolcam

Computercraft - Dual Monitor Sign

Feb 16th, 2022 (edited)
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.19 KB | None | 0 0
  1. mon1 = peripheral.wrap("monitor_66")
  2. mon2 = peripheral.wrap("monitor_67")
  3. -- oldTerm is the monitor. Do not overwrite this!
  4. term = oldTerm
  5. term.redirect(mon1)
  6. term.redirect(mon2)
  7. --mon1.setTextScale(2)
  8. --mon2.setTextScale(2)
  9.  
  10.  
  11. while true do
  12.     term.redirect(mon1)
  13.     term.setBackgroundColor(colors.blue)
  14.     term.redirect(mon2)
  15.     term.setBackgroundColor(colors.blue)
  16.     term.redirect(mon1)
  17.     term.clear()
  18.     term.redirect(mon2)
  19.     term.clear()
  20.     term.redirect(mon1)
  21.     term.setCursorPos(1,1)
  22.     term.redirect(mon2)
  23.     term.setCursorPos(1,1)
  24.     term.redirect(mon1)
  25.     print("     Condemned Zoo Gift Shop \n ")
  26.     term.redirect(mon2)
  27.     print("     Condemned Zoo Gift Shop \n ")
  28.     term.redirect(mon1)
  29.     print("Floor B1: Mob Drops Shop")
  30.     term.redirect(mon2)
  31.     print("Floor B1: Mob Drops Shop")
  32.     term.redirect(mon1)
  33.     print("Floor 1: Zoo Portal - /warp zoo")
  34.     term.redirect(mon2)
  35.     print("Floor 1: Zoo Portal - /warp zoo")
  36.     term.redirect(mon1)
  37.     print("Floor 2: Automated Ticket Sales \n ")
  38.     term.redirect(mon2)
  39.     print("Floor 2: Automated Ticket Sales \n ")
  40.     term.redirect(mon1)
  41.     term.setTextColor(colors.red)
  42.     term.redirect(mon2)
  43.     term.setTextColor(colors.red)
  44.     term.redirect(mon1)
  45.     print("A Zoo Credit Pass is required to use the auto shop \n ")
  46.     term.redirect(mon2)
  47.     print("A Zoo Credit Pass is required to use the auto shop \n ")
  48.     term.redirect(mon1)
  49.     term.setTextColor(colors.white)
  50.     term.redirect(mon2)
  51.     term.setTextColor(colors.white)
  52.     term.redirect(mon1)
  53.     print("          Ticket Prices \n ")
  54.     term.redirect(mon2)
  55.     print("          Ticket Prices \n ")
  56.     term.redirect(mon1)
  57.     print("Daily Pass: $600")
  58.     term.redirect(mon2)
  59.     print("Daily Pass: $600")
  60.     term.redirect(mon1)
  61.     print("Weekly Pass: $4,000")
  62.     term.redirect(mon2)
  63.     print("Weekly Pass: $4,000")
  64.     term.redirect(mon1)
  65.     print("Lifetime Pass*: $40,000 \n ")
  66.     term.redirect(mon2)
  67.     print("Lifetime Pass*: $40,000 \n ")
  68.     term.redirect(mon1)
  69.     print("* Can only be bought in the zoo's guest service building")
  70.     term.redirect(mon2)
  71.     print("* Can only be bought in the zoo's guest service building")
  72.     sleep(1)
  73. end
  74.      
  75.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement