Advertisement
Guest User

Untitled

a guest
Jun 17th, 2016
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.53 KB | None | 0 0
  1. # GAListener v1.2
  2. # Default
  3.  
  4. # settings section
  5.  
  6. # onlineonly - Only delivers rewards when the player is online. If they are offline it will wait and deliver when they next join the server!
  7. # luckyvote - Enables the lucky voting section, this allows voters to have a random chance to receive additional rewards when they vote.
  8. # permvote - Enables the permission voting section, this allows voters to receive different rewards based upon their permissions.
  9. # cumulative - Enables the cumulative voting section, this allows voters to receive rewards once they have reached a certain number of votes.
  10. # broadcastqueue - Show broadcast message for queued votes.
  11. # broadcastoffline - Show broadcast message for offline queued votes.
  12. # broadcastrecent - Show broadcast message to recent voters (last 24 hours)
  13. # votecommand - Enables the /vote command which will show the message contained in the votemessage section at the bottom of the config.
  14. # rewardcommand - Enables the /rewards command which will show a list of all the cumulative voting rewards.
  15. # joinmessage - Show the message contained in the joinmessage section at the bottom of this config when a player joins the server.
  16. # 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.
  17. # remindseconds - How often (in seconds) between each reminder message.
  18. # logfile - Log received votes to vote.log file.
  19. # dbMode - Database mode. Use either mysql or sqlite.
  20. # dbFile - Database filename for SQLite.
  21. # dbHost - Database IP / Hostname for MySQL.
  22. # dbPort - Database port for MySQL.
  23. # dbUser - Database username for MySQL.
  24. # dbPass - Database password for MySQL.
  25. # dbName - Database name for MySQL.
  26. # dbPrefix - Database table prefix.
  27.  
  28. settings:
  29. onlineonly: false
  30. luckyvote: true
  31. permvote: false
  32. cumulative: true
  33. broadcastqueue: true
  34. broadcastrecent: true
  35. broadcastoffline: false
  36. votecommand: true
  37. rewardcommand: true
  38. joinmessage: true
  39. voteremind: true
  40. remindseconds: 3600
  41. ratelimit: 10
  42. logfile: true
  43. dbMode: 'sqlite'
  44. dbFile: 'GAL.db'
  45. dbHost: 'localhost'
  46. dbPort: 3306
  47. dbUser: 'root'
  48. dbPass: ''
  49. dbName: 'GAL'
  50. dbPrefix: ''
  51.  
  52. # services section (default is used if service doesn't exist)
  53.  
  54. services:
  55. Default:
  56. broadcast: '&c{username} &9has voted and received &c$500!, 32 Exp Bottles, 6 TNT, 32 Obsidian, 2 MCMMO Credits and 1 vote key!'
  57. playermessage: '&9Thanks for voting!'
  58. commands:
  59. - '/eco give {username} 500'
  60. - '/give {username} tnt 6'
  61. - '/give {username} obsidian 32'
  62. - '/crate gk {username} Vote 1'
  63. - '/addcredits {username} 2'
  64. - '/give {username} 384 32'
  65.  
  66. # luckyvotes section
  67.  
  68. luckyvotes:
  69. '0':
  70. broadcast: '{GREEN}{username} {GOLD}was lucky and received an {GREEN}extra $1000!'
  71. playermessage: '{GREEN}You were lucky and received an extra $1000!'
  72. commands:
  73. - '/eco give {username} 1000'
  74. '0':
  75. broadcast: '{GREEN}{username} {GOLD}was lucky and received an {GREEN}Uncommon key'
  76. playermessage: '{GREEN}You were lucky and received an {GREEN}Uncommon key'
  77. commands:
  78. - '/cr givekey {username} uncommonkey 1'
  79. '0':
  80. broadcast: '{GREEN}{username} {GOLD}was really lucky and received an {GREEN}extra 500 xp, 8 diamonds and 1 Fortune I pickaxe'
  81. playermessage: '{GREEN}You were really and received an {GREEN}extra 500 xp, 8 diamonds and 1 Fortune I pickaxe'
  82. commands:
  83. - '/xp give {username} 500'
  84. - '/give {username} diamond 8'
  85. - '/give {username} 278 1 fortune:1 name:&6Lucky_Pickaxe'
  86. '0':
  87. broadcast: '{GREEN}{username} {GOLD}was Extremely lucky and received a {GREEN}Pig spawner!'
  88. playermessage: '{GREEN}You were Extremely lucky and received a {GREEN}Pig spawner!'
  89. commands:
  90. - '/give {username} 52 1'
  91.  
  92. # permission reward section
  93.  
  94. perms:
  95.  
  96. # cumulative reward section
  97.  
  98. cumulative:
  99. # GAListener v1.2
  100. # Default
  101.  
  102. # settings section
  103.  
  104. # onlineonly - Only delivers rewards when the player is online. If they are offline it will wait and deliver when they next join the server!
  105. # luckyvote - Enables the lucky voting section, this allows voters to have a random chance to receive additional rewards when they vote.
  106. # permvote - Enables the permission voting section, this allows voters to receive different rewards based upon their permissions.
  107. # cumulative - Enables the cumulative voting section, this allows voters to receive rewards once they have reached a certain number of votes.
  108. # broadcastqueue - Show broadcast message for queued votes.
  109. # broadcastoffline - Show broadcast message for offline queued votes.
  110. # broadcastrecent - Show broadcast message to recent voters (last 24 hours)
  111. # votecommand - Enables the /vote command which will show the message contained in the votemessage section at the bottom of the config.
  112. # rewardcommand - Enables the /rewards command which will show a list of all the cumulative voting rewards.
  113. # joinmessage - Show the message contained in the joinmessage section at the bottom of this config when a player joins the server.
  114. # 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.
  115. # remindseconds - How often (in seconds) between each reminder message.
  116. # logfile - Log received votes to vote.log file.
  117. # dbMode - Database mode. Use either mysql or sqlite.
  118. # dbFile - Database filename for SQLite.
  119. # dbHost - Database IP / Hostname for MySQL.
  120. # dbPort - Database port for MySQL.
  121. # dbUser - Database username for MySQL.
  122. # dbPass - Database password for MySQL.
  123. # dbName - Database name for MySQL.
  124. # dbPrefix - Database table prefix.
  125.  
  126. settings:
  127. onlineonly: false
  128. luckyvote: true
  129. permvote: false
  130. cumulative: true
  131. broadcastqueue: true
  132. broadcastrecent: true
  133. broadcastoffline: false
  134. votecommand: true
  135. rewardcommand: true
  136. joinmessage: true
  137. voteremind: true
  138. remindseconds: 3600
  139. ratelimit: 10
  140. logfile: true
  141. dbMode: 'sqlite'
  142. dbFile: 'GAL.db'
  143. dbHost: 'localhost'
  144. dbPort: 3306
  145. dbUser: 'root'
  146. dbPass: ''
  147. dbName: 'GAL'
  148. dbPrefix: ''
  149.  
  150. # services section (default is used if service doesn't exist)
  151.  
  152. services:
  153. Default:
  154. broadcast: '&c{username} &9has voted and received &c$500!, 32 Exp Bottles, 6 TNT, 32 Obsidian, 2 MCMMO Credits and 1 vote key!'
  155. playermessage: '&9Thanks for voting!'
  156. commands:
  157. - '/eco give {username} 500'
  158. - '/give {username} tnt 6'
  159. - '/give {username} obsidian 32'
  160. - '/crate gk {username} Vote 1'
  161. - '/addcredits {username} 2'
  162. - '/give {username} 384 32'
  163.  
  164. # luckyvotes section
  165.  
  166. luckyvotes:
  167. '0':
  168. broadcast: '{GREEN}{username} {GOLD}was lucky and received an {GREEN}extra $1000!'
  169. playermessage: '{GREEN}You were lucky and received an extra $1000!'
  170. commands:
  171. - '/eco give {username} 1000'
  172. '0':
  173. broadcast: '{GREEN}{username} {GOLD}was lucky and received an {GREEN}Uncommon key'
  174. playermessage: '{GREEN}You were lucky and received an {GREEN}Uncommon key'
  175. commands:
  176. - '/cr givekey {username} uncommonkey 1'
  177. '0':
  178. broadcast: '{GREEN}{username} {GOLD}was really lucky and received an {GREEN}extra 500 xp, 8 diamonds and 1 Fortune I pickaxe'
  179. playermessage: '{GREEN}You were really and received an {GREEN}extra 500 xp, 8 diamonds and 1 Fortune I pickaxe'
  180. commands:
  181. - '/xp give {username} 500'
  182. - '/give {username} diamond 8'
  183. - '/give {username} 278 1 fortune:1 name:&6Lucky_Pickaxe'
  184. '0':
  185. broadcast: '{GREEN}{username} {GOLD}was Extremely lucky and received a {GREEN}Pig spawner!'
  186. playermessage: '{GREEN}You were Extremely lucky and received a {GREEN}Pig spawner!'
  187. commands:
  188. - '/give {username} 52 1'
  189.  
  190. # permission reward section
  191.  
  192. perms:
  193.  
  194. # cumulative reward section
  195.  
  196. cumulative:
  197. # '20':
  198. # broadcast: '&c{username} &9has voted a total of &c20 times &9And was rewarded. &9Type &c/Rewards'
  199. # playermessage: '&9Thanks for voting &c20 times!'
  200. # rewardmessage: 'Check what you got with /Rewards'
  201. # commands:
  202. # - '/eco give {username} 6000'
  203. # - '/give {username} TNT 16'
  204. # - '/give {username} HOPPER 1'
  205. # - '/give {username} 384 16'
  206. # - '/give {username} 400 16'
  207. # - '/addcredits {username} 25'
  208. # blocked - a list of worlds where rewards should be disabled, they will remain queued until the player is in an allowed world.
  209.  
  210. blocked:
  211. - world_blocked
  212.  
  213. # Available formatting codes for messages:
  214.  
  215. # {service} {servicename} {SERVICE} = service name
  216. # {username} {player} {name} = player username
  217. # {votes} = current vote total
  218. # & = Colour Symbol to enter manual colours / control codes
  219. # {AQUA} {BLACK} {BLUE} {DARK_AQUA} {DARK_BLUE}
  220. # {DARK_GRAY} {DARK_GREEN} {DARK_PURPLE} {DARK_RED} {GOLD}
  221. # {GRAY} {GREEN} {LIGHT_PURPLE} {RED} {WHITE} {YELLOW} {BOLD}
  222. # {ITALIC} {UNDERLINE} {STRIKETHROUGH} {STRIKE}
  223. # {STRIKETHROUGH} {MAGIC} {RESET}
  224.  
  225. votemessage:
  226. - '{BLUE}--------------------------------------'
  227. - '{GRAY}Vote rewards'
  228. - '{BLUE}- {RED}$500'
  229. - '{BLUE}- {RED}1 VoteKey'
  230. - '{BLUE}- {RED}6 TNT'
  231. - '{BLUE}- {RED}2 MCMMO Credits'
  232. - '{BLUE}- {RED}32 Obsidian'
  233. - '{BLUE}- {RED}32 Bottle o' Enchanting'
  234. - '{BLUE}--------------------------------------'
  235. - '{RED}Vote for us at {UNDERLINE}http://tacticalmc.com/pages/vote/'
  236. - '{BLUE}--------------------------------------'
  237. -
  238. - '{DARK_RED}You currently have {RED}{votes} Votes'
  239. - '{BLUE}--------------------------------------'
  240.  
  241. remindmessage:
  242. - '{BLUE}--------------------------------------'
  243. - '{GRAY}Vote rewards'
  244. - '{BLUE}- {RED}$500'
  245. - '{BLUE}- {RED}1 VoteKey'
  246. - '{BLUE}- {RED}6 TNT'
  247. - '{BLUE}- {RED}2 MCMMO Credits'
  248. - '{BLUE}- {RED}32 Obsidian'
  249. - '{BLUE}- {RED}32 Bottle o' Enchanting'
  250. - '{BLUE}--------------------------------------'
  251. - '{RED}Vote for us at {UNDERLINE}http://tacticalmc.com/pages/vote/'
  252. - '{BLUE}--------------------------------------'
  253. -
  254. - '{DARK_RED}You currently have {RED}{votes} Votes'
  255. - '{BLUE}--------------------------------------'
  256.  
  257. joinmessage:
  258. - '{DARK_GRAY}-----------------------------------------------------'
  259. - '{GRAY}You currently have {RED}{votes} Votes'
  260. - '{GRAY}Vote daily with {RED}/vote'
  261. - '{DARK_GRAY}-----------------------------------------------------'
  262.  
  263.  
  264. # Additional formatting codes for below:
  265.  
  266. # {TOTAL} = vote total - used for /rewards
  267. # {REWARD} = current rewardmessage as specified in the cumulative reward section - used for /rewards
  268. # {POSITION} = current rank - used for /votetop
  269. # {username} = player name - used for /votetop
  270.  
  271. rewardformat: 'No rewards at this time'
  272. votetopformat: '{POSITION}. {GREEN}{username} - {WHITE}{TOTAL}'
  273. rewardheader:
  274. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Rewards{WHITE} ] {GOLD}----------------'
  275. votetopheader:
  276. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Top Voters{WHITE} ] {GOLD}----------------'
  277. rewardfooter:
  278. - '{AQUA}You currently have {GREEN}{votes} Votes'
  279. # blocked - a list of worlds where rewards should be disabled, they will remain queued until the player is in an allowed world.
  280.  
  281. blocked:
  282. - world_blocked
  283.  
  284. # Available formatting codes for messages:
  285.  
  286. # {service} {servicename} {SERVICE} = service name
  287. # {username} {player} {name} = player username
  288. # {votes} = current vote total
  289. # & = Colour Symbol to enter manual colours / control codes
  290. # {AQUA} {BLACK} {BLUE} {DARK_AQUA} {DARK_BLUE}
  291. # {DARK_GRAY} {DARK_GREEN} {DARK_PURPLE} {DARK_RED} {GOLD}
  292. # {GRAY} {GREEN} {LIGHT_PURPLE} {RED} {WHITE} {YELLOW} {BOLD}
  293. # {ITALIC} {UNDERLINE} {STRIKETHROUGH} {STRIKE}
  294. # {STRIKETHROUGH} {MAGIC} {RESET}
  295.  
  296. votemessage:
  297. - '{BLUE}--------------------------------------'
  298. - '{GRAY}Vote rewards'
  299. - '{BLUE}- {RED}$500'
  300. - '{BLUE}- {RED}1 VoteKey'
  301. - '{BLUE}- {RED}6 TNT'
  302. - '{BLUE}- {RED}2 MCMMO Credits'
  303. - '{BLUE}- {RED}32 Obsidian'
  304. - '{BLUE}- {RED}32 Bottle o' Enchanting'
  305. - '{BLUE}--------------------------------------'
  306. - '{RED}Vote for us at {UNDERLINE}http://tacticalmc.com/pages/vote/'
  307. - '{BLUE}--------------------------------------'
  308. -
  309. - '{DARK_RED}You currently have {RED}{votes} Votes'
  310. - '{BLUE}--------------------------------------'
  311.  
  312. remindmessage:
  313. - '{BLUE}--------------------------------------'
  314. - '{GRAY}Vote rewards'
  315. - '{BLUE}- {RED}$500'
  316. - '{BLUE}- {RED}1 VoteKey'
  317. - '{BLUE}- {RED}6 TNT'
  318. - '{BLUE}- {RED}2 MCMMO Credits'
  319. - '{BLUE}- {RED}32 Obsidian'
  320. - '{BLUE}- {RED}32 Bottle o' Enchanting'
  321. - '{BLUE}--------------------------------------'
  322. - '{RED}Vote for us at {UNDERLINE}http://tacticalmc.com/pages/vote/'
  323. - '{BLUE}--------------------------------------'
  324. -
  325. - '{DARK_RED}You currently have {RED}{votes} Votes'
  326. - '{BLUE}--------------------------------------'
  327.  
  328. joinmessage:
  329. - '{DARK_GRAY}-----------------------------------------------------'
  330. - '{GRAY}You currently have {RED}{votes} Votes'
  331. - '{GRAY}Vote daily with {RED}/vote'
  332. - '{DARK_GRAY}-----------------------------------------------------'
  333.  
  334.  
  335. # Additional formatting codes for below:
  336.  
  337. # {TOTAL} = vote total - used for /rewards
  338. # {REWARD} = current rewardmessage as specified in the cumulative reward section - used for /rewards
  339. # {POSITION} = current rank - used for /votetop
  340. # {username} = player name - used for /votetop
  341.  
  342. rewardformat: 'No rewards at this time'
  343. votetopformat: '{POSITION}. {GREEN}{username} - {WHITE}{TOTAL}'
  344. rewardheader:
  345. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Rewards{WHITE} ] {GOLD}----------------'
  346. votetopheader:
  347. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Top Voters{WHITE} ] {GOLD}----------------'
  348. rewardfooter:
  349. - '{AQUA}You currently have {GREEN}{votes} Votes'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement