Advertisement
DubSlime

Cloud/main

Jul 18th, 2014
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. -- CHARGEMENT DES FICHIERS NECESSAIRES --
  2. os.loadAPI("API/ColorSaver")
  3.  
  4. -- MAIN --
  5. function screen()
  6. term.setBackgroundColor(colours.white)
  7. term.clear()
  8. paintutils.drawImage(paintutils.loadImage("Cloud/texture"),1,1)
  9. ColorSaver.ColorPack(colours.blue, colours.white)
  10. term.setCursorPos(20,2)
  11. print("Cloud Storage")
  12. ColorSaver.ColorPack(colours.grey, colours.black)
  13. term.setCursorPos(6,11)
  14. print("UPLOAD")
  15. ColorSaver.ColorPack(colours.lightBlue, colours.black)
  16. term.setCursorPos(39,11)
  17. print("LIBRAIRIE")
  18. ColorSaver.ColorPack(colours.lightGrey, colours.black)
  19. term.setCursorPos(21,17)
  20. print("TELECHARGER")
  21. ColorSaver.ColorPack(colours.red, colours.black)
  22. term.setCursorPos(23,6)
  23. print("QUITTER")
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement