Advertisement
Guest User

Untitled

a guest
Sep 8th, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.45 KB | None | 0 0
  1. # GAListener v1.3.2
  2. # http://www.minecraft-index.com
  3. # settings section
  4. # onlineonly - Only delivers rewards when the player is online. If they are offline it will wait and deliver when they next join the server!
  5. # luckyvote - Enables the lucky voting section, this allows voters to have a random chance to receive additional rewards when they vote.
  6. # permvote - Enables the permission voting section, this allows voters to receive different rewards based upon their permissions.
  7. # cumulative - Enables the cumulative voting section, this allows voters to receive rewards once they have reached a certain number of votes.
  8. # broadcastqueue - Show broadcast message for queued votes.
  9. # broadcastoffline - Show broadcast message for offline queued votes.
  10. # broadcastrecent - Show broadcast message to recent voters (last 24 hours)
  11. # votecommand - Enables the /vote command which will show the message contained in the votemessage section at the bottom of the config.
  12. # rewardcommand - Enables the /rewards command which will show a list of all the cumulative voting rewards.
  13. # joinmessage - Show the message contained in the joinmessage section at the bottom of this config when a player joins the server.
  14. # voteremind - Message players who haven't voted in the last 24 hours. Shows the message contained in the remindmessage section at the bottom of this config.
  15. # remindseconds - How often (in seconds) between each reminder message.
  16. # ratelimit - Ignore votes received within this many seconds since the last vote for the same player on the same site. This should prevent duplicate votes.
  17. # logfile - Log received votes to vote.log file.
  18. # dbMode - Database mode. Use either mysql or sqlite.
  19. # dbFile - Database filename for SQLite.
  20. # dbHost - Database IP / Hostname for MySQL.
  21. # dbPort - Database port for MySQL.
  22. # dbUser - Database username for MySQL.
  23. # dbPass - Database password for MySQL.
  24. # dbName - Database name for MySQL.
  25. # dbPrefix - Database table prefix.
  26. settings:
  27. onlineonly: true
  28. luckyvote: true
  29. permvote: false
  30. cumulative: false
  31. broadcastqueue: true
  32. broadcastrecent: true
  33. broadcastoffline: false
  34. votecommand: true
  35. rewardcommand: false
  36. joinmessage: true
  37. voteremind: true
  38. remindseconds: 300
  39. ratelimit: 10
  40. logfile: false
  41. dbMode: 'sqlite'
  42. dbFile: 'GAL.db'
  43. dbHost: 'localhost'
  44. dbPort: 3306
  45. dbUser: 'root'
  46. dbPass: ''
  47. dbName: 'GAL'
  48. dbPrefix: ''
  49. # services section (default is used if service doesn't exist)
  50. # The example below would give 5 diamonds per vote.
  51. services:
  52. default:
  53. broadcast: '{GREEN}{username} {GOLD}has voted @ {GREEN}MinecraftServers {GOLD}and received {GREEN}5 Diamonds!'
  54. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  55. commands:
  56. - '/give {username} diamond 5'
  57. MC-Index:
  58. broadcast: '{GREEN}{username} {GOLD}has voted @ {GREEN}MC-Index.com {GOLD}and received {GREEN}10 Diamonds!'
  59. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  60. commands:
  61. - '/give {username} 264 5'
  62. # luckyvotes section
  63. # The example below would give a 1 in 10 chance of a voter receiving an extra $1000, and a 1 in 50 chance of an extra $1000 and 100XP.
  64. luckyvotes:
  65. '10':
  66. broadcast: '{GREEN}{username} {GOLD}was lucky and received an {GREEN}extra $1000!'
  67. playermessage: '{GREEN}You were lucky and received an extra $1000!'
  68. commands:
  69. - '/eco give {username} 1000'
  70. '50':
  71. broadcast: '{GREEN}{username} {GOLD}was super lucky and received an {GREEN}extra 100 XP and $1000!'
  72. playermessage: '{GREEN}You were super lucky and received an {GREEN}extra 100 XP and $1000!'
  73. commands:
  74. - '/xp give {username} 100'
  75. - '/eco give {username} 1000'
  76. # permission reward section
  77. # This example would give players with the permission node "gal.double" 10 Diamonds instead of their regular reward.
  78. perms:
  79. double:
  80. broadcast: '{GREEN}{username} {GOLD}has voted @ {GREEN}{service} {GOLD}and received {GREEN}10 Diamonds!'
  81. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  82. commands:
  83. - '/give {username} 264 10'
  84. # cumulative reward section
  85. # This example would give players 20 Diamonds once they have reached a total of 10 votes.
  86. cumulative:
  87. '10':
  88. broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}10 times {GOLD}and received {GREEN}20 Diamonds!'
  89. playermessage: '{GREEN}Thanks for voting {AQUA}10 times!'
  90. rewardmessage: '20x Diamond'
  91. commands:
  92. - '/give {username} 264 20'
  93. # blocked - a list of worlds where rewards should be disabled, they will remain queued until the player is in an allowed world.
  94. blocked:
  95. - world_blocked
  96. # Available formatting codes for messages:
  97.  
  98. # {service} {servicename} {SERVICE} = service name
  99. # {username} {player} {name} = player username
  100. # {votes} = current vote total
  101. # & = Colour Symbol to enter manual colours / control codes
  102. # {AQUA} {BLACK} {BLUE} {DARK_AQUA} {DARK_BLUE}
  103. # {DARK_GRAY} {DARK_GREEN} {DARK_PURPLE} {DARK_RED} {GOLD}
  104. # {GRAY} {GREEN} {LIGHT_PURPLE} {RED} {WHITE} {YELLOW} {BOLD}
  105. # {ITALIC} {UNDERLINE} {STRIKETHROUGH} {STRIKE}
  106. # {STRIKETHROUGH} {MAGIC} {RESET}
  107. votemessage:
  108. - '{GOLD}You currently have {BLUE}{votes} votes'
  109. - '{GREEN}Vote at{BOLD}{WHITE} http://minecraftservers.org/server/384582{AQUA}!'
  110. remindmessage:
  111. - '{GOLD}-----------------------------------------------------'
  112. - 'You have not voted recently, please vote to support the server'
  113. - '{GOLD}-----------------------------------------------------'
  114. - '{AQUA}You currently have {GREEN}{votes} Votes'
  115. joinmessage:
  116. - '{GOLD}-----------------------------------------------------'
  117. - 'Vote for us every day for in game rewards and extras'
  118. - '{GOLD}-----------------------------------------------------'
  119. - '{AQUA}You currently have {GREEN}{votes} Votes'
  120.  
  121. # Additional formatting codes for below:
  122.  
  123. # {TOTAL} = vote total - used for /rewards
  124. # {REWARD} = current rewardmessage as specified in the cumulative reward section - used for /rewards
  125. # {POSITION} = current rank - used for /votetop
  126. # {username} = player name - used for /votetop
  127.  
  128. rewardformat: '{GREEN}{TOTAL} Votes {GRAY}- {AQUA}{REWARD}'
  129. votetopformat: '{POSITION}. {GREEN}{username} - {WHITE}{TOTAL}'
  130. rewardheader:
  131. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Rewards{WHITE} ] {GOLD}----------------'
  132. votetopheader:
  133. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Top Voters{WHITE} ] {GOLD}----------------'
  134. rewardfooter:
  135. - '{AQUA}You currently have {GREEN}{votes} Votes'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement