Advertisement
Guest User

levelupplus

a guest
Apr 28th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.34 KB | None | 0 0
  1. level = 1
  2. while true do
  3. term.setTextColor(colors.red)
  4. print("Eres nivel"  ..level.. ":D")
  5. print()
  6. term.setTextColor(colors.blue)
  7. textutils.slowPrint("Escribe algo.")
  8. term.setTextColor(colors.white)
  9. button = read()
  10. if button then
  11. os.loadAPI("/disk/levelup")
  12. os.unloadAPI("/disk/levelup")
  13. level = level + 1
  14. term.clear()
  15. end
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement