Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function printscr1()
- mon.setTextScale(4)
- mon.setCursorPos(2, 4)
- mon.write("Your ads here!")
- mon.setCursorPos(3, 5)
- mon.write("coming soon")
- mon.setCursorPos(6, 7)
- mon.write("Google")
- end
- function printscr2()
- mon.setTextScale(4)
- mon.setCursorPos(2, 4)
- mon.write("easy to set up")
- mon.setCursorPos(2, 5)
- mon.write("but effective")
- mon.setCursorPos(6, 7)
- mon.write("Google")
- end
- mon = peripheral.wrap("back")
- while true do
- mon.clear()
- printscr1()
- sleep(2.5)
- mon.clear()
- printscr2()
- sleep(2.5)
- end
Advertisement
Add Comment
Please, Sign In to add comment