Advertisement
Kervinou

UltimateSurvivalGames - scoreboard.yml

Jul 6th, 2014
471
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.37 KB | None | 0 0
  1. # ##### UltimateSurvivalGames Scoreboard Configuration #####
  2. #
  3. ##############################################################################"
  4. #  Traduction par Kervinou le 6 juillet 2014
  5. #  Ultimate Survival Games - version 1.9.2
  6. #  http://dev.bukkit.org/bukkit-plugins/ultimatesurvivalgames/
  7. #  Pour le Réseau PLAYCRAFT de serveurs Minecraft
  8. #  Site Web: http://playcraft.fr
  9. #  Serveur: hub.playcraft.fr
  10. ##############################################################################"
  11. #
  12. # How does this work?
  13. # For each game phase (WAITING,VOTING,COOLDOWN,INGAME and DEATHMATHCH) is a scoreboard design.
  14. # If you set "Enabled" for a phase to false, no scoreboard will shown!
  15. # The title can be maximal 32 charakters long and cannot contain variables.
  16. #
  17. # In the "Scores" part, you can modify the content of the scoreboard. "//" splits the line in name and score.
  18. # The left part is the name which can be maximal 48 charalters long.
  19. # The right part is the amount of a score. Here you have to write the variables.
  20. #
  21. # What are the variables?
  22. # You can use many variables. Here is a list:
  23. #
  24. #   %playing% - The current amount of players in a lobby!
  25. #   %requiredplayers% - The amount of required players to start a game automaticly!
  26. #   %death% - The amount of deaths in a round!
  27. #   %spectators% - The amount of spectators in a round!
  28. #   %time% - The remaining time of a game phase!
  29. #   %votecount% - The amount of votes of an arena (Only works in the voting phase)
  30. #   %arena% - The name of the arena (Only works in the score name)
  31. #
  32. # More help on http://dev.bukkit.org/bukkit-plugins/ultimatesurvivalgames/
  33.  
  34. Phase:
  35.   Waiting:
  36.     Enabled: true
  37.     Title: '&b&lEn attente des Volontaires'
  38.     Scores:
  39.     - '&eNombre de Tributs minimum&7: //%requiredplayers%'
  40.     - '&eTributs présents&7: //%playing%'
  41.   Voting:
  42.     Enabled: true
  43.     Title: '&b&lZone de Vote'
  44.     Scores:
  45.    - '&e%arena%//%votecount%'
  46.     - '&e%arena%//%votecount%'
  47.     - '&e%arena%//%votecount%'
  48.   Cooldown:
  49.     Enabled: true
  50.     Title: '&b&lCompte à Rebours'
  51.     Scores:
  52.    - '&eTemps restant&7://%time%'
  53.     - '&eTributs&7://%playing%'
  54.   Ingame:
  55.     Enabled: true
  56.     Title: '&b&lPartie en cours'
  57.     Scores:
  58.    - '&e&lAlive&7://%playing%'
  59.     - '&c&lDeath&7://%death%'
  60.   Deathmatch:
  61.     Enabled: true
  62.     Title: '&b&lCombat à Mort'
  63.     Scores:
  64.    - '&eTemps restant&7://%time%'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement