Advertisement
Guest User

VR Messages

a guest
Jul 13th, 2015
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 5.11 KB | None | 0 0
  1. #########################
  2. # VoteRoulette Messages #
  3. #########################
  4.  
  5. # Here you can edit all the default messages
  6.  
  7. # All messages support color codes using the & symbol!
  8. # For example, &4 would make text red.
  9. #
  10. # You can also use the following tags for colors:
  11. # %black% %darkblue% %darkgreen% %darkaqua% %darkred% %purple% %gold%
  12. # %grey% %darkgrey% %blue% %green% %aqua% %red% %pink% %yellow% %white%
  13. # %bold% %strikethrough% %underline% %italic% %reset% %magic%
  14. #
  15. # If you need to use quotes, dont forget to escape(backslash) them like this: \"
  16.  
  17. ## The following is the message that everyone sees when a player votes
  18. # and the player receives an award
  19. # Available variables:
  20. # %player%  - Player who is receiving the reward
  21. # %server%  - Name of the server (Taken from the server.properties file)
  22. # %site%    - The website the player voted on
  23. # %type%    - The type of award, Reward/Milestone
  24. # %name%    - Name of the reward/milestone
  25. # %prizes%  - The stuff in the reward (money, xp levels, items)
  26.  
  27. server-broadcast-message: "&8[&4Vote&8] &7%player% just voted on &e%site%&7 and recieved &e%name%&7!"
  28.  
  29. ## The following is the message that everyone sees when a player votes and the player
  30. # didnt win anything.
  31. # Available variables:
  32. # %server%  - Name of the server (Taken from the server.properties file)
  33. # %player%  - Player who voted
  34. # %site%    - The website the player voted on
  35.  
  36. server-broadcast-message-no-award: "&8[&4Vote&8] &7%player% just voted on &e%site%&7!"
  37.  
  38. ## The following is the message the player sees when they receive an award.
  39. # Available variables:
  40. # %name%    - Name of the reward/milestone
  41. # %player%  - Player who is receiving the reward
  42. # %server%  - Name of the server (Taken from the server.properties file)
  43. # %type%    - The type of award, Reward/Milestone
  44. # %prizes%  - The stuff in the reward (money, xp levels, items)
  45.  
  46. player-reward-message: "&8[&4Vote&8] &7You just voted and recieved &e%name%&7!"
  47.  
  48. ## The following is the message that the players sees when they vote but
  49. # didnt win anything.
  50. # Available variables:
  51. # %server%  - Name of the server (Taken from the server.properties file)
  52. # %player%  - Player who voted
  53. # %site%    - The website the player voted on
  54. # %cycle%   - The players current vote cycle, for when a vote threshold is used.
  55.  
  56. player-no-reward-message: "&8[&4Vote&8] &7You just voted on &e%site%&7! No reward this time!"
  57.  
  58. ## The following is the message sent to players when they claim all awards or have awards
  59. # auto claimed during log in. This is similar to the "player-reward-message" but
  60. # summarizes multiple awards into one message.
  61. # Available variables:
  62. # %names%    - Name of the Rewards or Milestones
  63. # %player%  - Player who is receiving the reward
  64. # %server%  - Name of the server (Taken from the server.properties file)
  65. # %type%    - The type of award, Rewards/Milestones
  66. # %prizes%  - The stuff in the reward (money, xp levels, items)
  67.  
  68. player-awards-summary-message: "&8[&4Vote&8] &7You have received the %type% &e%names%&7!"
  69.  
  70. ## The following is the message that is broadcasted if usePeriodicReminder is set to true
  71. # in the config.yml file. You can also set how often it broadcasts there.
  72. # Available variables:
  73. # %server% - (Taken from the server.properties file)
  74.  
  75. periodic-reminder: "&8[&4Tips&8] &7Help out the server by voting every day! Use /vote!"
  76.  
  77. ## The following is the message that is sent to the player if useTwentyFourHourReminder
  78. # is set to true in the config.yml file.
  79. # Available variables:
  80. # %player% - Name of player
  81.  
  82. twentyfour-hour-reminder: "&8[&4Vote&8] &cTwenty four hours have passed since your last /vote!"
  83.  
  84. # The following is what the players will see when they type /vote, /votelinks,
  85. # or /votesites
  86. # The lines must be in a list format!
  87. vote-websites:
  88. - "&7+------------------------&4HH&7------------------------+"
  89. - "&61. {&ePlanet Minecraft > http://www.planetminecraft.com/server/havoc-heaven/vote/}"
  90. - "&62. {&eMCSL > http://minecraft-server-list.com/server/305118/vote/}"
  91. - "&63. {&eMCS > http://minecraftservers.org/vote/252594}"
  92. - "&64. {&eMC Multiplayer > http://minecraft-mp.com/server/88896/vote/}"
  93. - "&65. {&eMinestatus > https://www.minestatus.net/134068-havoc-heaven/vote}"
  94. - "&7+------------------------&4HH&7------------------------+"
  95.  
  96. ## If you are running MC 1.7 or higher and you have "useFancyLinks" turned on
  97. # in the config.yml, you can utilize the Fancy Link feature.
  98. # Fancy Links allow you to set placeholder text for links that players can
  99. # click on, instead of the link itself.
  100. # You can create a Fancy Link by formatting it like this:
  101. # "{Placeholder Text > Link To Website}"
  102. # with the placeholder text and link in brackets, separated by a right-pointing caret.
  103. # Example:
  104. # - "Visit {Planet Minecraft > http://www.planetminecraft.com} to vote!"
  105. # You can include text before and after the Fancy Link as well.
  106. # Lastly, The placeholder text and the text before and after the link support color codes.
  107. # WARNING: Client may crash when clicking on a link that doesnt start with "http://"
  108.  
  109. #########################################
  110. # No need to touch this
  111. config-version: 1.3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement