Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local monitorSide = "top" -- replace this with the side your monitor is on
- local title = "Dukkit Rules - Dukkit.Ducke.co"
- local list = { -- replace these with your todo list
- 'No Duplication Glitches!',
- 'No Griefing!',
- 'No Stealing!',
- 'Please don\'t talk in all caps',
- 'Be Mature',
- 'Play friendly.',
- 'Be respectful to everyone.',
- 'No flaming of any sorts allowed.',
- 'If you have a bad attitude, leave.',
- 'Do not Beg for anything (Admin, Items)',
- 'No 3rd party clients allowed.'
- }
- local mon = peripheral.wrap(monitorSide)
- local w,h = mon.getSize()
- mon.setBackgroundColor(colors.white)
- mon.clear()
- mon.setCursorPos((w - #title) / 2, 2)
- mon.setTextColor(colors.red)
- mon.write(title)
- mon.setTextColor(colors.blue)
- for i=1, #list do
- mon.setCursorPos(3, 3 + i)
- mon.write(i..'. '..list[i])
- end
Advertisement
Add Comment
Please, Sign In to add comment