Advertisement
Guest User

Untitled

a guest
Feb 28th, 2015
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 33.66 KB | None | 0 0
  1. # GAListener v1.3.1
  2. # http://www.minecraft-index.com
  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. # 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.
  19. # logfile - Log received votes to vote.log file.
  20. # dbMode - Database mode. Use either mysql or sqlite.
  21. # dbFile - Database filename for SQLite.
  22. # dbHost - Database IP / Hostname for MySQL.
  23. # dbPort - Database port for MySQL.
  24. # dbUser - Database username for MySQL.
  25. # dbPass - Database password for MySQL.
  26. # dbName - Database name for MySQL.
  27. # dbPrefix - Database table prefix.
  28.  
  29. settings:
  30. onlineonly: true
  31. luckyvote: false
  32. permvote: false
  33. cumulative: true
  34. broadcastqueue: true
  35. broadcastrecent: true
  36. broadcastoffline: false
  37. votecommand: true
  38. rewardcommand: true
  39. joinmessage: false
  40. voteremind: true
  41. remindseconds: 600
  42. ratelimit: 10
  43. logfile: false
  44. dbMode: 'sqlite'
  45. dbFile: 'GAL.db'
  46. dbHost: 'localhost'
  47. dbPort: 3306
  48. dbUser: 'root'
  49. dbPass: ''
  50. dbName: 'GAL'
  51. dbPrefix: ''
  52.  
  53. # services section (default is used if service doesn't exist)
  54. # The example below would give 5 diamonds per vote.
  55.  
  56. services:
  57. default:
  58. broadcast: ''
  59. playermessage: ''
  60. commands:
  61. MC-Index:
  62. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$1 million and a Voting Key!&4'
  63. playermessage: ''
  64. commands:
  65. - '/eco give {username} 1000000'
  66. - '/cratekey give {username} Vote 1'
  67. # luckyvotes section
  68. # 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.
  69.  
  70. luckyvotes:
  71. '20':
  72. broadcast: '{GOLD}{username} {AQUA}was lucky and received a {GOLD}20 pickaxe {AQUA}for voting!'
  73. playermessage: '{AQUA}Use your 20 pickaxe wisely!'
  74. commands:
  75. - '/kit 20 {username}'
  76.  
  77. # permission reward section
  78. # This example would give players with the permission node "gal.double" 10 Diamonds instead of their regular reward.
  79.  
  80. perms:
  81. double:
  82. broadcast: '{GREEN}{username} {GOLD}has voted @ {GREEN}{service} {GOLD}and received {GREEN}10 Diamonds!'
  83. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  84. commands:
  85. - '/give {username} 264 10'
  86.  
  87. # cumulative reward section
  88. # This example would give players 20 Diamonds once they have reached a total of 10 votes.
  89.  
  90. cumulative:
  91. '1':
  92. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$1 million and a Voting Key!&4'
  93. playermessage: ''
  94. commands:
  95. - '/eco give {username} 1000000'
  96. - '/cratekey give {username} Vote 1'
  97. '2':
  98. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$1 million and a Voting Key!&4'
  99. playermessage: ''
  100. commands:
  101. - '/eco give {username} 1000000'
  102. - '/cratekey give {username} Vote 1'
  103. '3':
  104. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$1 million and a Voting Key!&4'
  105. playermessage: ''
  106. commands:
  107. - '/eco give {username} 1000000'
  108. - '/cratekey give {username} Vote 1'
  109. '4':
  110. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$1 million and a Voting Key!&4'
  111. playermessage: ''
  112. commands:
  113. - '/eco give {username} 1000000'
  114. - '/cratekey give {username} Vote 1'
  115. '5':
  116. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$1 million and a Voting Key!&4'
  117. playermessage: ''
  118. commands:
  119. - '/eco give {username} 1000000'
  120. - '/cratekey give {username} Vote 1'
  121. '6':
  122. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$1 million and a Voting Key!&4'
  123. playermessage: ''
  124. commands:
  125. - '/eco give {username} 1000000'
  126. - '/cratekey give {username} Vote 1'
  127. '7':
  128. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$1 million and a Voting Key!&4'
  129. playermessage: ''
  130. commands:
  131. - '/eco give {username} 1000000'
  132. - '/cratekey give {username} Vote 1'
  133. '8':
  134. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$1 million and a Voting Key!&4'
  135. playermessage: ''
  136. commands:
  137. - '/eco give {username} 1000000'
  138. - '/cratekey give {username} Vote 1'
  139. '9':
  140. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$1 million and a Voting Key!&4'
  141. playermessage: ''
  142. commands:
  143. - '/eco give {username} 1000000'
  144. - '/cratekey give {username} Vote 1'
  145. '11':
  146. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  147. playermessage: ''
  148. rewardmessage: '&f$15 million and a Vote key'
  149. commands:
  150. - '/eco give {username} 15000000'
  151. - '/cratekey give {username} Vote 1'
  152. '12':
  153. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  154. playermessage: ''
  155. rewardmessage: '&f$15 million and a Vote key'
  156. commands:
  157. - '/eco give {username} 15000000'
  158. - '/cratekey give {username} Vote 1'
  159. '13':
  160. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  161. playermessage: ''
  162. rewardmessage: '&f$15 million and a Vote key'
  163. commands:
  164. - '/eco give {username} 15000000'
  165. - '/cratekey give {username} Vote 1'
  166. '14':
  167. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  168. playermessage: ''
  169. rewardmessage: '&f$15 million and a Vote key'
  170. commands:
  171. - '/eco give {username} 15000000'
  172. - '/cratekey give {username} Vote 1'
  173. '15':
  174. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  175. playermessage: ''
  176. rewardmessage: '&f$15 million and a Vote key'
  177. commands:
  178. - '/eco give {username} 15000000'
  179. - '/cratekey give {username} Vote 1'
  180. '16':
  181. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  182. playermessage: ''
  183. rewardmessage: '&f$15 million and a Vote key'
  184. commands:
  185. - '/eco give {username} 15000000'
  186. - '/cratekey give {username} Vote 1'
  187. '17':
  188. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  189. playermessage: ''
  190. rewardmessage: '&f$15 million and a Vote key'
  191. commands:
  192. - '/eco give {username} 15000000'
  193. - '/cratekey give {username} Vote 1'
  194. '18':
  195. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  196. playermessage: ''
  197. rewardmessage: '&f$15 million and a Vote key'
  198. commands:
  199. - '/eco give {username} 15000000'
  200. - '/cratekey give {username} Vote 1'
  201. '19':
  202. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  203. playermessage: ''
  204. rewardmessage: '&f$15 million and a Vote key'
  205. commands:
  206. - '/eco give {username} 15000000'
  207. - '/cratekey give {username} Vote 1'
  208. '20':
  209. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  210. playermessage: ''
  211. rewardmessage: '&f$15 million and a Vote key'
  212. commands:
  213. - '/eco give {username} 15000000'
  214. - '/cratekey give {username} Vote 1'
  215. '21':
  216. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  217. playermessage: ''
  218. rewardmessage: '&f$15 million and a Vote key'
  219. commands:
  220. - '/eco give {username} 15000000'
  221. - '/cratekey give {username} Vote 1'
  222. '22':
  223. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  224. playermessage: ''
  225. rewardmessage: '&f$15 million and a Vote key'
  226. commands:
  227. - '/eco give {username} 15000000'
  228. - '/cratekey give {username} Vote 1'
  229. '23':
  230. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  231. playermessage: ''
  232. rewardmessage: '&f$15 million and a Vote key'
  233. commands:
  234. - '/eco give {username} 15000000'
  235. - '/cratekey give {username} Vote 1'
  236. '24':
  237. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  238. playermessage: ''
  239. rewardmessage: '&f$15 million and a Vote key'
  240. commands:
  241. - '/eco give {username} 15000000'
  242. - '/cratekey give {username} Vote 1'
  243. '25':
  244. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  245. playermessage: ''
  246. rewardmessage: '&f$15 million and a Vote key'
  247. commands:
  248. - '/eco give {username} 15000000'
  249. - '/cratekey give {username} Vote 1'
  250. '26':
  251. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  252. playermessage: ''
  253. rewardmessage: '&f$15 million and a Vote key'
  254. commands:
  255. - '/eco give {username} 15000000'
  256. - '/cratekey give {username} Vote 1'
  257. '27':
  258. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  259. playermessage: ''
  260. rewardmessage: '&f$15 million and a Vote key'
  261. commands:
  262. - '/eco give {username} 15000000'
  263. - '/cratekey give {username} Vote 1'
  264. '28':
  265. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  266. playermessage: ''
  267. rewardmessage: '&f$15 million and a Vote key'
  268. commands:
  269. - '/eco give {username} 15000000'
  270. - '/cratekey give {username} Vote 1'
  271. '29':
  272. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  273. playermessage: ''
  274. rewardmessage: '&f$15 million and a Vote key'
  275. commands:
  276. - '/eco give {username} 15000000'
  277. - '/cratekey give {username} Vote 1'
  278. '30':
  279. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  280. playermessage: ''
  281. rewardmessage: '&f$15 million and a Vote key'
  282. commands:
  283. - '/eco give {username} 15000000'
  284. - '/cratekey give {username} Vote 1'
  285. '31':
  286. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  287. playermessage: ''
  288. rewardmessage: '&f$15 million and a Vote key'
  289. commands:
  290. - '/eco give {username} 15000000'
  291. - '/cratekey give {username} Vote 1'
  292. '32':
  293. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  294. playermessage: ''
  295. rewardmessage: '&f$15 million and a Vote key'
  296. commands:
  297. - '/eco give {username} 15000000'
  298. - '/cratekey give {username} Vote 1'
  299. '33':
  300. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  301. playermessage: ''
  302. rewardmessage: '&f$15 million and a Vote key'
  303. commands:
  304. - '/eco give {username} 15000000'
  305. - '/cratekey give {username} Vote 1'
  306. '34':
  307. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  308. playermessage: ''
  309. rewardmessage: '&f$15 million and a Vote key'
  310. commands:
  311. - '/eco give {username} 15000000'
  312. - '/cratekey give {username} Vote 1'
  313. '35':
  314. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  315. playermessage: ''
  316. rewardmessage: '&f$15 million and a Vote key'
  317. commands:
  318. - '/eco give {username} 15000000'
  319. - '/cratekey give {username} Vote 1'
  320. '36':
  321. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  322. playermessage: ''
  323. rewardmessage: '&f$15 million and a Vote key'
  324. commands:
  325. - '/eco give {username} 15000000'
  326. - '/cratekey give {username} Vote 1'
  327. '37':
  328. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  329. playermessage: ''
  330. rewardmessage: '&f$15 million and a Vote key'
  331. commands:
  332. - '/eco give {username} 15000000'
  333. - '/cratekey give {username} Vote 1'
  334. '38':
  335. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  336. playermessage: ''
  337. rewardmessage: '&f$15 million and a Vote key'
  338. commands:
  339. - '/eco give {username} 15000000'
  340. - '/cratekey give {username} Vote 1'
  341. '39':
  342. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Voting Key!&4'
  343. playermessage: ''
  344. rewardmessage: '&f$15 million and a Vote key'
  345. commands:
  346. - '/eco give {username} 15000000'
  347. - '/cratekey give {username} Vote 1'
  348. '40':
  349. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Master Key!&4'
  350. playermessage: ''
  351. rewardmessage: '&f$15 million and a Master key'
  352. commands:
  353. - '/eco give {username} 15000000'
  354. - '/cratekey give {username} Master 1'
  355. '41':
  356. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Master Key!&4'
  357. playermessage: ''
  358. rewardmessage: '&f$15 million and a Master key'
  359. commands:
  360. - '/eco give {username} 15000000'
  361. - '/cratekey give {username} Master 1'
  362. '42':
  363. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Master Key!&4'
  364. playermessage: ''
  365. rewardmessage: '&f$15 million and a Master key'
  366. commands:
  367. - '/eco give {username} 15000000'
  368. - '/cratekey give {username} Master 1'
  369. '43':
  370. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Master Key!&4'
  371. playermessage: ''
  372. rewardmessage: '&f$15 million and a Master key'
  373. commands:
  374. - '/eco give {username} 15000000'
  375. - '/cratekey give {username} Master 1'
  376. '44':
  377. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Master Key!&4'
  378. playermessage: ''
  379. rewardmessage: '&f$15 million and a Master key'
  380. commands:
  381. - '/eco give {username} 15000000'
  382. - '/cratekey give {username} Master 1'
  383. '45':
  384. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Master Key!&4'
  385. playermessage: ''
  386. rewardmessage: '&f$15 million and a Master key'
  387. commands:
  388. - '/eco give {username} 15000000'
  389. - '/cratekey give {username} Master 1'
  390. '46':
  391. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Master Key!&4'
  392. playermessage: ''
  393. rewardmessage: '&f$15 million and a Master key'
  394. commands:
  395. - '/eco give {username} 15000000'
  396. - '/cratekey give {username} Master 1'
  397. '47':
  398. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Master Key!&4'
  399. playermessage: ''
  400. rewardmessage: '&f$15 million and a Master key'
  401. commands:
  402. - '/eco give {username} 15000000'
  403. - '/cratekey give {username} Master 1'
  404. '48':
  405. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Master Key!&4'
  406. playermessage: ''
  407. rewardmessage: '&f$15 million and a Master key'
  408. commands:
  409. - '/eco give {username} 15000000'
  410. - '/cratekey give {username} Master 1'
  411. '49':
  412. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Master Key!&4'
  413. playermessage: ''
  414. rewardmessage: '&f$15 million and a Master key'
  415. commands:
  416. - '/eco give {username} 15000000'
  417. - '/cratekey give {username} Master 1'
  418. '50':
  419. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Master Key!&4'
  420. playermessage: ''
  421. rewardmessage: '&f$15 million and a Master key'
  422. commands:
  423. - '/eco give {username} 15000000'
  424. - '/cratekey give {username} Master 1'
  425. '51':
  426. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Master Key!&4'
  427. playermessage: ''
  428. rewardmessage: '&f$15 million and a Master key'
  429. commands:
  430. - '/eco give {username} 15000000'
  431. - '/cratekey give {username} Master 1'
  432. '52':
  433. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Master Key!&4'
  434. playermessage: ''
  435. rewardmessage: '&f$15 million and a Master key'
  436. commands:
  437. - '/eco give {username} 15000000'
  438. - '/cratekey give {username} Master 1'
  439. '53':
  440. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Master Key!&4'
  441. playermessage: ''
  442. rewardmessage: '&f$15 million and a Master key'
  443. commands:
  444. - '/eco give {username} 15000000'
  445. - '/cratekey give {username} Master 1'
  446. '54':
  447. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Master Key!&4'
  448. playermessage: ''
  449. rewardmessage: '&f$15 million and a Master key'
  450. commands:
  451. - '/eco give {username} 15000000'
  452. - '/cratekey give {username} Master 1'
  453. '55':
  454. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Master Key!&4'
  455. playermessage: ''
  456. rewardmessage: '&f$15 million and a Master key'
  457. commands:
  458. - '/eco give {username} 15000000'
  459. - '/cratekey give {username} Master 1'
  460. '56':
  461. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Master Key!&4'
  462. playermessage: ''
  463. rewardmessage: '&f$15 million and a Master key'
  464. commands:
  465. - '/eco give {username} 15000000'
  466. - '/cratekey give {username} Master 1'
  467. '57':
  468. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Master Key!&4'
  469. playermessage: ''
  470. rewardmessage: '&f$15 million and a Master key'
  471. commands:
  472. - '/eco give {username} 15000000'
  473. - '/cratekey give {username} Master 1'
  474. '58':
  475. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Master Key!&4'
  476. playermessage: ''
  477. rewardmessage: '&f$15 million and a Master key'
  478. commands:
  479. - '/eco give {username} 15000000'
  480. - '/cratekey give {username} Master 1'
  481. '59':
  482. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$15 million and a Master Key!&4'
  483. playermessage: ''
  484. rewardmessage: '&f$15 million and a Master key'
  485. commands:
  486. - '/eco give {username} 15000000'
  487. - '/cratekey give {username} Master 1'
  488. '60':
  489. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  490. playermessage: ''
  491. rewardmessage: '&f$25 million and a Master key'
  492. commands:
  493. - '/eco give {username} 25000000'
  494. - '/cratekey give {username} Master 1'
  495. '61':
  496. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  497. playermessage: ''
  498. rewardmessage: '&f$25 million and a Master key'
  499. commands:
  500. - '/eco give {username} 25000000'
  501. - '/cratekey give {username} Master 1'
  502. '62':
  503. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  504. playermessage: ''
  505. rewardmessage: '&f$25 million and a Master key'
  506. commands:
  507. - '/eco give {username} 25000000'
  508. - '/cratekey give {username} Master 1'
  509. '63':
  510. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  511. playermessage: ''
  512. rewardmessage: '&f$25 million and a Master key'
  513. commands:
  514. - '/eco give {username} 25000000'
  515. - '/cratekey give {username} Master 1'
  516. '64':
  517. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  518. playermessage: ''
  519. rewardmessage: '&f$25 million and a Master key'
  520. commands:
  521. - '/eco give {username} 25000000'
  522. - '/cratekey give {username} Master 1'
  523. '65':
  524. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  525. playermessage: ''
  526. rewardmessage: '&f$25 million and a Master key'
  527. commands:
  528. - '/eco give {username} 25000000'
  529. - '/cratekey give {username} Master 1'
  530. '66':
  531. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  532. playermessage: ''
  533. rewardmessage: '&f$25 million and a Master key'
  534. commands:
  535. - '/eco give {username} 25000000'
  536. - '/cratekey give {username} Master 1'
  537. '67':
  538. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  539. playermessage: ''
  540. rewardmessage: '&f$25 million and a Master key'
  541. commands:
  542. - '/eco give {username} 25000000'
  543. - '/cratekey give {username} Master 1'
  544. '68':
  545. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  546. playermessage: ''
  547. rewardmessage: '&f$25 million and a Master key'
  548. commands:
  549. - '/eco give {username} 25000000'
  550. - '/cratekey give {username} Master 1'
  551. '69':
  552. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  553. playermessage: ''
  554. rewardmessage: '&f$25 million and a Master key'
  555. commands:
  556. - '/eco give {username} 25000000'
  557. - '/cratekey give {username} Master 1'
  558. '70':
  559. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  560. playermessage: ''
  561. rewardmessage: '&f$25 million and a Master key'
  562. commands:
  563. - '/eco give {username} 25000000'
  564. - '/cratekey give {username} Master 1'
  565. '71':
  566. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  567. playermessage: ''
  568. rewardmessage: '&f$25 million and a Master key'
  569. commands:
  570. - '/eco give {username} 25000000'
  571. - '/cratekey give {username} Master 1'
  572. '72':
  573. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  574. playermessage: ''
  575. rewardmessage: '&f$25 million and a Master key'
  576. commands:
  577. - '/eco give {username} 25000000'
  578. - '/cratekey give {username} Master 1'
  579. '73':
  580. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  581. playermessage: ''
  582. rewardmessage: '&f$25 million and a Master key'
  583. commands:
  584. - '/eco give {username} 25000000'
  585. - '/cratekey give {username} Master 1'
  586. '74':
  587. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  588. playermessage: ''
  589. rewardmessage: '&f$25 million and a Master key'
  590. commands:
  591. - '/eco give {username} 25000000'
  592. - '/cratekey give {username} Master 1'
  593. '75':
  594. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  595. playermessage: ''
  596. rewardmessage: '&f$25 million and a Master key'
  597. commands:
  598. - '/eco give {username} 25000000'
  599. - '/cratekey give {username} Master 1'
  600. '76':
  601. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  602. playermessage: ''
  603. rewardmessage: '&f$25 million and a Master key'
  604. commands:
  605. - '/eco give {username} 25000000'
  606. - '/cratekey give {username} Master 1'
  607. '77':
  608. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  609. playermessage: ''
  610. rewardmessage: '&f$25 million and a Master key'
  611. commands:
  612. - '/eco give {username} 25000000'
  613. - '/cratekey give {username} Master 1'
  614. '78':
  615. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  616. playermessage: ''
  617. rewardmessage: '&f$25 million and a Master key'
  618. commands:
  619. - '/eco give {username} 25000000'
  620. - '/cratekey give {username} Master 1'
  621. '79':
  622. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  623. playermessage: ''
  624. rewardmessage: '&f$25 million and a Master key'
  625. commands:
  626. - '/eco give {username} 25000000'
  627. - '/cratekey give {username} Master 1'
  628. '80':
  629. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  630. playermessage: ''
  631. rewardmessage: '&f$25 million and a Master key'
  632. commands:
  633. - '/eco give {username} 25000000'
  634. - '/cratekey give {username} Master 1'
  635. '81':
  636. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  637. playermessage: ''
  638. rewardmessage: '&f$25 million and a Master key'
  639. commands:
  640. - '/eco give {username} 25000000'
  641. - '/cratekey give {username} Master 1'
  642. '82':
  643. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  644. playermessage: ''
  645. rewardmessage: '&f$25 million and a Master key'
  646. commands:
  647. - '/eco give {username} 25000000'
  648. - '/cratekey give {username} Master 1'
  649. '83':
  650. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  651. playermessage: ''
  652. rewardmessage: '&f$25 million and a Master key'
  653. commands:
  654. - '/eco give {username} 25000000'
  655. - '/cratekey give {username} Master 1'
  656. '84':
  657. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  658. playermessage: ''
  659. rewardmessage: '&f$25 million and a Master key'
  660. commands:
  661. - '/eco give {username} 25000000'
  662. - '/cratekey give {username} Master 1'
  663. '85':
  664. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  665. playermessage: ''
  666. rewardmessage: '&f$25 million and a Master key'
  667. commands:
  668. - '/eco give {username} 25000000'
  669. - '/cratekey give {username} Master 1'
  670. '86':
  671. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  672. playermessage: ''
  673. rewardmessage: '&f$25 million and a Master key'
  674. commands:
  675. - '/eco give {username} 25000000'
  676. - '/cratekey give {username} Master 1'
  677. '87':
  678. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  679. playermessage: ''
  680. rewardmessage: '&f$25 million and a Master key'
  681. commands:
  682. - '/eco give {username} 25000000'
  683. - '/cratekey give {username} Master 1'
  684. '88':
  685. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  686. playermessage: ''
  687. rewardmessage: '&f$25 million and a Master key'
  688. commands:
  689. - '/eco give {username} 25000000'
  690. - '/cratekey give {username} Master 1'
  691. '89':
  692. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  693. playermessage: ''
  694. rewardmessage: '&f$25 million and a Master key'
  695. commands:
  696. - '/eco give {username} 25000000'
  697. - '/cratekey give {username} Master 1'
  698. '90':
  699. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  700. playermessage: ''
  701. rewardmessage: '&f$25 million and a Master key'
  702. commands:
  703. - '/eco give {username} 25000000'
  704. - '/cratekey give {username} Master 1'
  705. '91':
  706. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  707. playermessage: ''
  708. rewardmessage: '&f$25 million and a Master key'
  709. commands:
  710. - '/eco give {username} 25000000'
  711. - '/cratekey give {username} Master 1'
  712. '92':
  713. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  714. playermessage: ''
  715. rewardmessage: '&f$25 million and a Master key'
  716. commands:
  717. - '/eco give {username} 25000000'
  718. - '/cratekey give {username} Master 1'
  719. '93':
  720. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  721. playermessage: ''
  722. rewardmessage: '&f$25 million and a Master key'
  723. commands:
  724. - '/eco give {username} 25000000'
  725. - '/cratekey give {username} Master 1'
  726. '94':
  727. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  728. playermessage: ''
  729. rewardmessage: '&f$25 million and a Master key'
  730. commands:
  731. - '/eco give {username} 25000000'
  732. - '/cratekey give {username} Master 1'
  733. '95':
  734. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  735. playermessage: ''
  736. rewardmessage: '&f$25 million and a Master key'
  737. commands:
  738. - '/eco give {username} 25000000'
  739. - '/cratekey give {username} Master 1'
  740. '96':
  741. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  742. playermessage: ''
  743. rewardmessage: '&f$25 million and a Master key'
  744. commands:
  745. - '/eco give {username} 25000000'
  746. - '/cratekey give {username} Master 1'
  747. '97':
  748. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  749. playermessage: ''
  750. rewardmessage: '&f$25 million and a Master key'
  751. commands:
  752. - '/eco give {username} 25000000'
  753. - '/cratekey give {username} Master 1'
  754. '98':
  755. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  756. playermessage: ''
  757. rewardmessage: '&f$25 million and a Master key'
  758. commands:
  759. - '/eco give {username} 25000000'
  760. - '/cratekey give {username} Master 1'
  761. '99':
  762. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Master Key!&4'
  763. playermessage: ''
  764. rewardmessage: '&f$25 million and a Master key'
  765. commands:
  766. - '/eco give {username} 25000000'
  767. - '/cratekey give {username} Master 1'
  768. '100':
  769. broadcast: '&3&l>> {GOLD}{username} {AQUA}voted and received &a$25 million and a Legendary Key!&4'
  770. playermessage: ''
  771. rewardmessage: '&f$25 million and a Legendary key'
  772. commands:
  773. - '/eco give {username} 25000000'
  774. - '/cratekey give {username} Legendary 1'
  775.  
  776. # blocked - a list of worlds where rewards should be disabled, they will remain queued until the player is in an allowed world.
  777.  
  778. blocked:
  779. - world_blocked
  780.  
  781. # Available formatting codes for messages:
  782.  
  783. # {service} {servicename} {SERVICE} = service name
  784. # {username} {player} {name} = player username
  785. # {votes} = current vote total
  786. # & = Colour Symbol to enter manual colours / control codes
  787. # {AQUA} {BLACK} {BLUE} {DARK_AQUA} {DARK_BLUE}
  788. # {DARK_GRAY} {DARK_GREEN} {DARK_PURPLE} {DARK_RED} {GOLD}
  789. # {GRAY} {GREEN} {LIGHT_PURPLE} {RED} {WHITE} {YELLOW} {BOLD}
  790. # {ITALIC} {UNDERLINE} {STRIKETHROUGH} {STRIKE}
  791. # {STRIKETHROUGH} {MAGIC} {RESET}
  792.  
  793. votemessage:
  794. - '&7&m-+---&6&m-----&e&m----&8[ &6&lVOTE &8]&e&m----&6&m-----&7&m---+-'
  795. - ''
  796. - '&7Type &6/rewards&7 to view rewards for voting.'
  797. - ''
  798. - '&8[&61&8] &7http://bit.ly/Arkanite-Vote1'
  799. - '&8[&62&8] &7http://bit.ly/Arkanite-Vote2'
  800. - '&8[&63&8] &7http://bit.ly/Arkanite-Vote3'
  801. - '&8[&64&8] &7http://bit.ly/Arkanite-Vote4'
  802. - '&8[&65&8] &7http://bit.ly/Arkanite-Vote5'
  803. - ''
  804. - '&7&m-+---&6&m-----&e&m----------------&6&m-----&7&m---+-'
  805. - '{AQUA}You currently have {GREEN}{votes} {AQUA}Votes'
  806.  
  807. remindmessage:
  808. - '&7&m-+---&6&m-----&e&m----------&6&m-----&7&m---+-'
  809. - ''
  810. - '&7You have not voted in the past 24 hours!'
  811. - '&7Please support the server by doing &6/vote&7.'
  812. - ''
  813. - '&7&m-+---&6&m-----&e&m----------&6&m-----&7&m---+-'
  814. - '{AQUA}You currently have {GREEN}{votes} {AQUA}Votes'
  815.  
  816. joinmessage:
  817. - '&6&m----------&b=&6[ &b&lRewards&6 ]&b=&6&m-----------'
  818. - '&aDefault - &f$1 million and a Vote key'
  819. - '&a10 votes - &f$15 million and a Vote key'
  820. - '&a40 votes - &f$15 million and a Master key'
  821. - '&a60 votes - &f$25 million and a Master key'
  822. - '&a100 votes - &f$25 million and a Legendary key'
  823. - '&6&m----------&b=&6[ &b&lVote&6 ]&b=&6&m-----------'
  824. - '&fhttp://bit.ly/Arkanite-Vote1'
  825. - '&fhttp://bit.ly/Arkanite-Vote2'
  826. - '&fhttp://bit.ly/Arkanite-Vote3'
  827. - '&fhttp://bit.ly/Arkanite-Vote4'
  828. - '&6&m-----------------------------'
  829. - '{AQUA}You currently have {GREEN}{votes} {AQUA}Votes'
  830.  
  831. # Additional formatting codes for below:
  832.  
  833. # {TOTAL} = vote total - used for /rewards
  834. # {REWARD} = current rewardmessage as specified in the cumulative reward section - used for /rewards
  835. # {POSITION} = current rank - used for /votetop
  836. # {username} = player name - used for /votetop
  837.  
  838. rewardformat: '{GREEN}{TOTAL} Votes {GRAY}- {AQUA}{REWARD}'
  839. votetopformat: '{POSITION}. {GREEN}{username} - {WHITE}{TOTAL}'
  840. rewardheader:
  841. - '&7&m-+---&6&m-----&e&m----&8[ &6&lRewards &8]&e&m----&6&m-----&7&m---+-'
  842. - ''
  843. - '&aDefault - &f$1 million and a Vote key'
  844. - '&a10 votes - &f$15 million and a Vote key'
  845. - '&a40 votes - &f$15 million and a Master key'
  846. - '&a60 votes - &f$25 million and a Master key'
  847. - '&a100 votes - &f$25 million and a Legendary key'
  848. - ''
  849. votetopheader:
  850. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Top Voters{WHITE} ] {GOLD}----------------'
  851. rewardfooter:
  852. - '&7&m-+---&6&m-----&e&m----------------&6&m-----&7&m---+-'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement