Advertisement
Guest User

Banaan

a guest
Aug 28th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.47 KB | None | 0 0
  1. local mon = peripheral.wrap("right")
  2. mon.clear()
  3. current = term.current()
  4. term.redirect(mon)
  5. local Width, Height = term.getSize()
  6. paintutils.drawBox(1,1,21,10,colors.red)
  7. paintutils.drawBox(2,2,20,9,colors.orange)
  8. paintutils.drawBox(3,3,19,8,colors.yellow)
  9. term.setBackgroundColor(colors.black)
  10. mon.setBackgroundColor(colors.black)
  11. term.redirect(current)
  12. mon.setTextScale(4)
  13. mon.setCursorPos(7,4)
  14. mon.write("Infinity")
  15. mon.setCursorPos(3,5)
  16. mon.write("Creation station")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement