Advertisement
Guest User

filler

a guest
Jul 5th, 2015
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.28 KB | None | 0 0
  1. function color(color,lx,hx,ly,hy,orcolor)
  2.   term.setBackgroundColor(color)
  3.   for i=ly,hy do
  4.     for j = lx,hx do
  5.       term.setCursorPos(j,i)
  6.       print(" ")
  7.     end
  8.   end
  9.   if orcolor == nil then
  10.     orcolor = colors.black
  11.   end
  12.   term.setBackgroundColor(orcolor)
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement