maxderopnl

maximumOS

Sep 30th, 2014
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. -- made by maxderop
  2. while true do
  3. term.clear()
  4. term.setBackgroundColor(colors.blue)
  5. paintfile = paintutils.loadImage("paintfile")
  6. paintutils.drawImage(paintfile, 2, 1)
  7.  
  8. term.setCursorPos(9,4)
  9.  
  10. print("Menu")
  11. print("1.paint")
  12. print("2.edit code")
  13. print("3.shell")
  14.  
  15.  
  16. input = io.read()
  17.  
  18. if input == "1" then
  19. shell.run("paint painte")
  20. elseif input == "2" then
  21. shell.run("edit maximumos")
  22. elseif input == "3" then
  23. shell.run("shell")
  24.  
  25.  
  26.  
  27.  
  28. end
  29. end
Advertisement
Add Comment
Please, Sign In to add comment