Advertisement
Kingdaro

os thing (uncommented)

Nov 11th, 2012
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.67 KB | None | 0 0
  1. local options = {'Shutdown', 'Reboot'}
  2. local menuopen = false
  3.  
  4. while true do
  5.     term.setBackgroundColor(colors.black)
  6.     term.clear()
  7.  
  8.     local w,h = term.getSize()
  9.  
  10.     paintutils.drawLine(1, h, w, h, colors.blue)
  11.  
  12.     term.setTextColor(colors.black)
  13.     term.setBackgroundColor(colors.lime)
  14.     term.setCursorPos(1, h)
  15.     write('Start')
  16.  
  17.     if menuopen then
  18.         term.setBackgroundColor(colors.white)
  19.         term.setTextColor(colors.black)
  20.  
  21.         for i=1, #options do
  22.             term.setCursorPos(1, h - i)
  23.             print(options[i])
  24.         end
  25.     end
  26.  
  27.     local event, button, mousex, mousey = os.pullEvent('mouse_click')
  28.     if mousey == h and mousex >= 1 and mousex <= 5 then
  29.         menuopen = not menuopen
  30.     end
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement