Advertisement
Napfsuelze1984

start

May 6th, 2015
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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.white) --Kanal der Toroeffnung
  16.  
  17. sleep(10) --Zeit die Arena zu betreten
  18.  
  19. redstone.setBundledOutput("back" , colors.subtract(redstone.getBundledOutput("bottom"), colors.white))
  20.  
  21. sleep(3)
  22.  
  23. redstone.setBundledOutput("back" , colors.red) --Kanal der Hauptenergie fuer Monsterspawner
  24.  
  25. zeit = 10 --Rundendauer eines Kampfes
  26.  
  27. while zeit > 1 do  
  28. zeit = (zeit -1)
  29. print("                  Kampf endet in                  ")
  30. print(zeit)  
  31. print("                      Sekunden                    ")
  32. sleep(1)
  33. shell.run("clear")
  34.  
  35. if zeit == 1 then
  36. redstone.setBundledOutput("back" , colors.subtract(redstone.getBundledOutput("bottom"), colors.red))
  37. shell.run("clear")
  38. print("                 Kampfmodus beendet !             ")
  39.  
  40. redstone.setBundledOutput("back" , colors.white)
  41. sleep(30)
  42.  
  43. end
  44. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement