Advertisement
Guest User

test

a guest
Apr 21st, 2014
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.58 KB | None | 0 0
  1. --[Variables]--
  2. screenColor = colors.white
  3. barColor = colors.cyan
  4.  
  5. --[Functions]--
  6.  
  7. function bootText()
  8.  
  9. end
  10.  
  11. function drawBoot()
  12.   term.setBackgroundColor(screenColor)
  13.   term.clear()
  14.   term.setCursorPos(1,1)
  15.   term.setBackgroundColor(barColor)
  16.   term.clearLine()
  17.   term.setCursorPos(9,10)
  18.   term.setBackgroundColor(screenColor)
  19.   term.setTextColor(barColor)
  20.   textutils.slowWrite(" PlusPod ", 3)
  21.   sleep(3)
  22. end
  23.  
  24. --local event, button, xPos, yPos = os.pullEvent(mouse_click)
  25. --print(xPos)
  26. --print(yPos)
  27.  
  28. --[Code]--
  29. drawBoot()
  30.  
  31.  
  32. --while true do
  33.   --sleep(0.5)
  34. --end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement