Advertisement
Guest User

startup.lua

a guest
Oct 8th, 2023
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.44 KB | None | 0 0
  1. rednet.open("front")
  2. local mn = peripheral.wrap("top")
  3. mn.setBackgroundColor(colors.black)
  4. mn.clear()
  5. local sx,sy = mn.getSize()
  6. for i=1,sy do
  7.   mn.setCursorPos(2,i)
  8.   mn.setBackgroundColor(colors.orange)
  9.   mn.write(" ")
  10.   mn.setCursorPos(sx-1,i)
  11.   mn.write(" ")
  12.   os.sleep(0.025)
  13. end
  14. for g=3,sx do
  15. for i=1,sy do
  16.   mn.setCursorPos(g,i)
  17.   mn.setBackgroundColor(colors.red)
  18.   mn.write(" ")
  19. end
  20.   if(g == sx-2) then
  21.     break
  22.   end
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement