Advertisement
Guest User

Untitled

a guest
Mar 2nd, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.14 KB | None | 0 0
  1. # GiveAnything Config
  2. # http://www.mc-index.com
  3. #
  4. # Online only (default: true)
  5. # onlineonly: true
  6. #
  7. # Only delivers rewards when the player is online. If they are offline it will wait and deliver when they next join the server!
  8. #
  9. # Lucky vote (default: false)
  10. # luckyvote: true
  11. #
  12. # Enables the lucky voting section, this allows voters to have a random chance to receive additional rewards when they vote, for the format see below.
  13. #
  14. # Vote command (/vote) (default: false)
  15. # votecommand: true
  16. #
  17. # Enables the /vote command which will show the message contained in the votemessage section at the bottom of this config
  18. #
  19. # Login vote reminder (default: false)
  20. # voteremind: true
  21. #
  22. # Shows the message contained in the votemessage section at the bottom of this config to players when they join the server
  23. #
  24. # Services section (default is used if service doesn't exist)
  25. # MC-Index:
  26. # broadcast: '{GREEN}{username} {GOLD}has voted @ {GREEN}www.mc-index.com {GOLD}and received {GREEN}5 Diamonds {GOLD}and {GREEN}200 XP!'
  27. # playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  28. # commands:
  29. # - '/give {username} 264 5'
  30. # - '/xp give {username} 200'
  31. #
  32. # The above examples would give a voter 5 diamonds and 200XP whenever they vote on a site with the service name "MC-Index"
  33. #
  34. # Lucky votes section (disabled by default)
  35. # luckyvotes:
  36. # 50:
  37. # broadcast: '{GREEN}{username} {GOLD}was lucky and received an {GREEN}extra $1000!'
  38. # playermessage: '{GREEN}You were lucky and received an extra $1000!'
  39. # commands:
  40. # - '/eco give {username} 1000'
  41. # 100:
  42. # broadcast: '{GREEN}{username} {GOLD}was {GREEN}super lucky {GOLD}and received an {GREEN}extra $5000!'
  43. # playermessage: '{GREEN}You were super lucky and received an extra $5000!'
  44. # commands:
  45. # - '/eco give {username} 5000'
  46. #
  47. # The above examples would give a 1 in 50 chance of a voter receiving an extra $1000, and a 1 in 100 chance of $5000
  48. # If you do not use essentials economy, the command(s) can be modified to suit whichever economy you use.
  49. #
  50. # Vote Message
  51. # votemessage:
  52. # - 'add a message here with voting information'
  53. # - 'players will see this when they type /vote'
  54. #
  55. #
  56. # Available codes for messages / commands:
  57. #
  58. # {service} {servicename} {SERVICE} = service name
  59. # {username} {player} {name} = player username
  60. #
  61. # & = Colour Symbol to enter manual colours / control codes
  62. # {AQUA} {BLACK} {BLUE} {DARK_AQUA} {DARK_BLUE}
  63. # {DARK_GRAY} {DARK_GREEN} {DARK_PURPLE} {DARK_RED} {GOLD}
  64. # {GRAY} {GREEN} {LIGHT_PURPLE} {RED} {WHITE}
  65. # {YELLOW} {BOLD} {ITALIC} {UNDERLINE} {STRIKETHROUGH}
  66. # {STRIKE} {STRIKETHROUGH} {MAGIC} {RESET}
  67. #
  68.  
  69. settings:
  70. onlineonly: true
  71. luckyvote: true
  72. broadcastqueue: true
  73. votecommand: true
  74. voteremind: true
  75. services:
  76. default:
  77. broadcast: '{GREEN}{username} {GOLD}has voted @ {GREEN}{service} {GOLD}and received {GREEN}$4000, and 255 xp!'
  78. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  79. commands:
  80. - '/eco give {username} 4000'
  81. - '/xp give {username} 255'
  82. luckyvotes:
  83. '10':
  84. broadcast: '{GREEN}{username} {GOLD}was lucky and received {GREEN}1 Mystery Crate!'
  85. playermessage: '{GREEN}You were lucky and received 1 Mystery Crate!'
  86. commands:
  87. - '/myst give {username} 1'
  88. '25':
  89. broadcast: '{GREEN}{username} {GOLD}was super lucky and received an {GREEN}extra $1000 and 2 Mystery Crate!'
  90. playermessage: '{GREEN}You were super lucky and received an {GREEN}extra $5000 and 2 Mystery Crate!'
  91. commands:
  92. - '/myst give {username} 2'
  93. - '/eco give {username} 5000'
  94. votemessage:
  95. - '{GOLD}-----------------------------------------------------'
  96. - 'Vote for us every day for in game rewards and extras'
  97. - '{GREEN}Vote Links:'
  98. - '[1] http://bit.ly/1mNb4OL'
  99. - '[2] http://bit.ly/1huHd9a'
  100. - '[3] http://bit.ly/1kl6w0j'
  101. - '[4] http://bit.ly/MErFDJ'
  102. - '[5] http://bit.ly/1pL69Nx'
  103. - '{GOLD}-----------------------------------------------------'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement