Advertisement
Guest User

start

a guest
May 6th, 2015
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.75 KB | None | 0 0
  1. shell.run("clear")
  2. print("\n")
  3. print("\n")
  4. print("\n")
  5. print("\n")
  6. print("\n")
  7. print("            Betretet nun die Arena !!!            ")
  8. print("                 Viel Glueck !!!                  ")
  9. print("\n")
  10. print("\n")
  11. print("\n")
  12. print("\n")
  13. print("\n")
  14.  
  15. redstone.setBundledOutput("back" , colors.red)
  16.  
  17. zeit = 10 --Rundendauer eines Kampfes
  18.  
  19. while zeit > 1 do  
  20. zeit = (zeit -1)
  21. print("                  Kampf endet in                  ")
  22. print(zeit)  
  23. print("                      Sekunden                    ")
  24. sleep(1)
  25. shell.run("clear")
  26.  
  27. redstone.setBundledOutput("bottom" , colors.subtract(redstone.getBundledOutput("bottom"), colors.red))
  28. shell.run("clear")
  29. print("                 Kampfmodus beendet !             ")
  30.  
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement