Advertisement
Guest User

Untitled

a guest
Jul 12th, 2014
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 4.00 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: false
  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: false
  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}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: false
  72.   broadcastqueue: true
  73.   votecommand: true
  74.   voteremind: true
  75. services:
  76.   default:
  77.     broadcast: '{GOLD}{username}{GREEN} hat auf {GOLD}{service}{GREEN} gevotet!'
  78.     playermessage: '{GREEN}Danke, der Vote hilft uns sehr!'
  79.     commands:
  80.    - /give {username} 264 5
  81.     - /give {username} 246 1
  82.     - /give {username} 265 10
  83.     - /give {username} 266 5
  84.     - /give {username} 263 32
  85.     - /eco give {username} 5000
  86. luckyvotes:
  87.   '10':
  88.     broadcast: '{GREEN}{username} {GOLD}was lucky and received an {GREEN}extra $1000!'
  89.     playermessage: '{GREEN}You were lucky and received an extra $1000!'
  90.     commands:
  91.    - /eco give user {username} 1000
  92.   '50':
  93.     broadcast: '{GREEN}{username} {GOLD}was super lucky and received an {GREEN}extra 100 XP and $1000!'
  94.     playermessage: '{GREEN}You were super lucky and received an {GREEN}extra 100 XP and $1000!'
  95.     commands:
  96.    - /xp give {username} 100
  97.     - /eco give {username} 1000
  98. votemessage:
  99.  - '{GOLD}-----------------------------------------------------'
  100.   - 'Vote jeden Tag um tolle Items zu bekommen!'
  101.   - '{GOLD}-----------------------------------------------------'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement