Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local monitors = {"monitor_0"}
- local Board = {
- {1, "Rules:"},
- {1, " "},
- {0.5, " No Cheating | This Refers to anything that gives you an unfair advantage"},
- {0.5, " No Griefing | Dont destroy other people's builds, code etc"},
- {0.5, " No Stealing | Dont steal from others"},
- {0.5, " Follow TOS | Dont break the minecraft tos"},
- {0.5, " No Crimes | This is obvious dont commit any crimes"},
- {1, " "},
- {1, "Changelog [07 March 2021]:"},
- {1, " "},
- {0.5, " + Server Started"},
- {0.5, " + Spawn Added"},
- {0.5, " + Rules & Changelog Added"},
- }
- function start(monitor)
- monitor.clear()
- monitor.setCursorBlink(false)
- monitor.setCursorPos(1,1)
- monitor.setTextScale(0.95)
- for _, data in ipairs(Board) do
- local scale = data[1]
- local text = data[2]
- print(text)
- end
- end
- for _, monitor_name in ipairs(monitors) do
- local monitor = peripheral.wrap(monitor_name)
- term.redirect(monitor)
- start(monitor)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement