Advertisement
Guest User

try this one

a guest
Jun 16th, 2014
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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: false
  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}$10’
  27. # playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  28. # commands:
  29. # - '/pay {username} 10'
  30. #
  31. # The above examples would give a voter 5 diamonds and 200XP whenever they vote on a site with the service name "MC-Index"
  32. #
  33. # Lucky votes section (disabled by default)
  34. # luckyvotes:
  35. # 50:
  36. # broadcast: '{GREEN}{username} {GOLD}was lucky and received an {GREEN}extra $50!'
  37. # playermessage: '{GREEN}You were lucky and received an extra $50!'
  38. # commands:
  39. # - '/pay {username} 50'
  40. # 100:
  41. # broadcast: '{GREEN}{username} {GOLD}was {GREEN}super lucky {GOLD}and received an {GREEN}extra $75!'
  42. # playermessage: '{GREEN}You were super lucky and received an extra $75!'
  43. # commands:
  44. # - '/pay {username} 75'
  45. #
  46. # 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
  47. # If you do not use essentials economy, the command(s) can be modified to suit whichever economy you use.
  48. #
  49. # Vote Message
  50. # votemessage:
  51. # - 'Voting Will give you a chance of getting $10, $50 if your lucky, and $75 if your super lucky! Plus it help the server become more popular to make the server an even more fun!'
  52. # - 'Thank you so much for voting! We highly appreciate it!'
  53. #
  54. #
  55. # Available codes for messages / commands:
  56. #
  57. # {service} {servicename} {SERVICE} = service name
  58. # {username} {player} {name} = player username
  59. #
  60. # & = Colour Symbol to enter manual colours / control codes
  61. # {AQUA} {BLACK} {BLUE} {DARK_AQUA} {DARK_BLUE}
  62. # {DARK_GRAY} {DARK_GREEN} {DARK_PURPLE} {DARK_RED} {GOLD}
  63. # {GRAY} {GREEN} {LIGHT_PURPLE} {RED} {WHITE}
  64. # {YELLOW} {BOLD} {ITALIC} {UNDERLINE} {STRIKETHROUGH}
  65. # {STRIKE} {STRIKETHROUGH} {MAGIC} {RESET}
  66. #
  67.  
  68. settings:
  69. onlineonly: true
  70. luckyvote: true
  71. broadcastqueue: true
  72. votecommand: true
  73. voteremind: false
  74. services:
  75. default:
  76. broadcast: '{DARK_AQUA}{username} {GOLD}has voted and received {DARK_AQUA}$10!'
  77. playermessage: '{GOLD}Thanks for voting, {DARK_AQUA}{username}!'
  78. commands:
  79. - /pay {username} 10
  80. luckyvotes:
  81. '10':
  82. broadcast: '{DARK_AQUA}{username} {GOLD}was lucky and received an{GREEN} extra $50!'
  83. playermessage: '{DARK_AQUA}You were lucky and received an extra {GREEN}$50!'
  84. commands:
  85. - /pay {username} 50
  86. '5':
  87. broadcast: '{DARK_AQUA}{username} {GOLD}had some luck and received an{YELLOW} extra $25!'
  88. playermessage: '{DARK_AQUA}You were lucky and received an extra {YELLOW}$25!'
  89. commands:
  90. - /pay {username} 25
  91. '50':
  92. broadcast: '{DARK_AQUA}{username} {GOLD}was very lucky and received an {GREEN}extra $75!'
  93. playermessage: '{DARK_AQUA}You were very lucky and received an {GREEN}extra $75!'
  94. commands:
  95. - /pay {username} 75
  96. votemessage:
  97. - '{GOLD}-----------------------------------------------------'
  98. - 'Vote daily, each vote rewards you with:'
  99. - '{DARK_AQUA}Vote at http://www.planetminecraft.com/server/diamond-mc/vote/'
  100. - '{DARK_AQUA}Vote at www.clearrealms.com'
  101. - '{DARK_AQUA}Vote at www.clearrealms.com'
  102. - '{DARK_AQUA}Vote at www.clearrealms.com'
  103. - '{GOLD}-----------------------------------------------------'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement