Advertisement
Guest User

Untitled

a guest
May 16th, 2019
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.42 KB | None | 0 0
  1. # GAListener v1.3.1
  2.  
  3. # http://www.minecraft-index.com
  4.  
  5.  
  6.  
  7. # settings section
  8.  
  9.  
  10.  
  11. # onlineonly - Only delivers rewards when the player is online. If they are offline it will wait and deliver when they next join the server!
  12.  
  13. # luckyvote - Enables the lucky voting section, this allows voters to have a random chance to receive additional rewards when they vote.
  14.  
  15. # permvote - Enables the permission voting section, this allows voters to receive different rewards based upon their permissions.
  16.  
  17. # cumulative - Enables the cumulative voting section, this allows voters to receive rewards once they have reached a certain number of votes.
  18.  
  19. # broadcastqueue - Show broadcast message for queued votes.
  20.  
  21. # broadcastoffline - Show broadcast message for offline queued votes.
  22.  
  23. # broadcastrecent - Show broadcast message to recent voters (last 24 hours)
  24.  
  25. # votecommand - Enables the /vote command which will show the message contained in the votemessage section at the bottom of the config.
  26.  
  27. # rewardcommand - Enables the /rewards command which will show a list of all the cumulative voting rewards.
  28.  
  29. # joinmessage - Show the message contained in the joinmessage section at the bottom of this config when a player joins the server.
  30.  
  31. # 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.
  32.  
  33. # remindseconds - How often (in seconds) between each reminder message.
  34.  
  35. # 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.
  36.  
  37. # logfile - Log received votes to vote.log file.
  38.  
  39. # dbMode - Database mode. Use either mysql or sqlite.
  40.  
  41. # dbFile - Database filename for SQLite.
  42.  
  43. # dbHost - Database IP / Hostname for MySQL.
  44.  
  45. # dbPort - Database port for MySQL.
  46.  
  47. # dbUser - Database username for MySQL.
  48.  
  49. # dbPass - Database password for MySQL.
  50.  
  51. # dbName - Database name for MySQL.
  52.  
  53. # dbPrefix - Database table prefix.
  54.  
  55.  
  56.  
  57. settings:
  58.  
  59. onlineonly: true
  60.  
  61. luckyvote: false
  62.  
  63. permvote: false
  64.  
  65. cumulative: false
  66.  
  67. broadcastqueue: true
  68.  
  69. broadcastrecent: true
  70.  
  71. broadcastoffline: false
  72.  
  73. votecommand: true
  74.  
  75. rewardcommand: false
  76.  
  77. joinmessage: true
  78.  
  79. voteremind: true
  80.  
  81. remindseconds: 1000
  82.  
  83. ratelimit: 10
  84.  
  85. logfile: false
  86.  
  87. dbMode: 'sqlite'
  88.  
  89. dbFile: 'GAL.db'
  90.  
  91. dbHost: 'localhost'
  92.  
  93. dbPort: 8600
  94.  
  95. dbUser: 'root'
  96.  
  97. dbPass: ''
  98.  
  99. dbName: 'GAL'
  100.  
  101. dbPrefix: ''
  102.  
  103.  
  104.  
  105. # services section (default is used if service doesn't exist)
  106.  
  107. # The example below would give 5 diamonds per vote.
  108.  
  109.  
  110.  
  111. services:
  112.  
  113. default:
  114.  
  115. broadcast: '&6&lOrange &7// &6{username} &fa votat serverul! &7- &6&l/vote'
  116.  
  117. playermessage: '&6&lOrange &7// &fMultumim pentru ca ai votat!'
  118.  
  119. commands:
  120.  
  121. - '/eco give {username} 2000'
  122.  
  123. - '/give {username} 264 8'
  124.  
  125. - '/give {username} 364 16'
  126.  
  127. - '/give {username} 322 3'
  128.  
  129. - '/give {username} 322:1 1'
  130.  
  131. - '/give {username} 133 1'
  132.  
  133. MC-Index:
  134.  
  135. broadcast: '{GREEN}{username} {GOLD}has voted @ {GREEN}MC-Index.com {GOLD}and received {GREEN}10 Diamonds!'
  136.  
  137. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  138.  
  139. commands:
  140.  
  141. - '/eco give {username} 2000'
  142.  
  143. - '/give {username} 264 8'
  144.  
  145. - '/give {username} 364 16'
  146.  
  147. - '/give {username} 322 3'
  148.  
  149. - '/give {username} 322:1 1'
  150.  
  151. - '/give {username} 133 1'
  152.  
  153.  
  154.  
  155. # luckyvotes section
  156.  
  157. # 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.
  158.  
  159.  
  160.  
  161. luckyvotes:
  162.  
  163. '5':
  164.  
  165. broadcast: '&6&lOrange &7// &6{username} &fa fost norocos si a primit &615000$&f! &6GG&f!'
  166.  
  167. playermessage: '{GOLD}Ai fost norocos si ai primit extra extra 15000$!'
  168.  
  169. commands:
  170.  
  171. - '/eco give {username} 15000'
  172.  
  173. '10':
  174.  
  175. broadcast: '{GOLD}{username} {WHITE}a fost norocos si a primit {GOLD}acces la /fly!'
  176.  
  177. playermessage: '{GOLD}Ai fost norocos si ai primit acces la /fly!'
  178.  
  179. commands:
  180.  
  181. - '/manuaddp {username} essentials.fly'
  182.  
  183. '20':
  184.  
  185. broadcast: '{GOLD}{username} {WHITE} a fost norocos si a primit {YELLOW}extra 50000$!'
  186.  
  187. playermessage: '{GOLD}Ai fost norocos si ai primit extra extra 50000$!'
  188.  
  189. commands:
  190.  
  191. - '/eco give {username} 50000'
  192.  
  193. '30':
  194.  
  195. broadcast: '{GOLD}{username} {WHITE} a fost norocos si a primit {YELLOW}extra 6 Legendary Keys!'
  196.  
  197. playermessage: '{GOLD}Ai fost norocos si ai primit extra extra 6 Legendary Keys!'
  198.  
  199. commands:
  200.  
  201. - '/cc give p legendary 2 {username}'
  202.  
  203. '40':
  204.  
  205. broadcast: '{GOLD}{username} {WHITE} a fost norocos si a primit {YELLOW}extra Ninja Kit!'
  206.  
  207. playermessage: '{GOLD}Ai fost norocos si ai primit extra extra Ninja Kit!'
  208.  
  209. commands:
  210.  
  211. - '/kit Ninja {username}'
  212.  
  213. '50':
  214.  
  215. broadcast: '{GOLD}{username} {WHITE} a fost norocos si a primit {YELLOW}extra Kit Assassins!'
  216.  
  217. playermessage: '{GOLD}Ai fost norocos si ai primit extra extra Kit Assassins!'
  218.  
  219. commands:
  220.  
  221. - '/kit Assassins {username}'
  222.  
  223. '100':
  224.  
  225. broadcast: '{GOLD}{username} {WHITE} a fost norocos si a primit {YELLOW}extra gradul ULTRA!'
  226.  
  227. playermessage: '{GOLD}Ai fost norocos si ai primit extra extra gradul ULTRA!'
  228.  
  229. commands:
  230.  
  231. - '/manuadd {username} Ultra'
  232.  
  233.  
  234.  
  235. # permission reward section
  236.  
  237. # This example would give players with the permission node "gal.double" 10 Diamonds instead of their regular reward.
  238.  
  239.  
  240.  
  241. perms:
  242.  
  243. double:
  244.  
  245. broadcast: '{GREEN}{username} {GOLD}has voted @ {GREEN}{service} {GOLD}and received {GREEN}10 Diamonds!'
  246.  
  247. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  248.  
  249. commands:
  250.  
  251. - '/eco give {username} 2000'
  252.  
  253. - '/give {username} 264 8'
  254.  
  255. - '/give {username} 364 16'
  256.  
  257. - '/give {username} 322 3'
  258.  
  259. - '/give {username} 322:1 1'
  260.  
  261. - '/give {username} 133 1'
  262.  
  263.  
  264.  
  265. # cumulative reward section
  266.  
  267. # This example would give players 20 Diamonds once they have reached a total of 10 votes.
  268.  
  269.  
  270.  
  271. cumulative:
  272.  
  273. '10':
  274.  
  275. broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}10 times {GOLD}and received {GREEN}20 Diamonds!'
  276.  
  277. playermessage: '{GREEN}Thanks for voting {AQUA}10 times!'
  278.  
  279. rewardmessage: '20x Diamond'
  280.  
  281. commands:
  282.  
  283. - '/eco give {username} 2000'
  284.  
  285. - '/give {username} 264 8'
  286.  
  287. - '/give {username} 364 16'
  288.  
  289. - '/give {username} 322 3'
  290.  
  291. - '/give {username} 322:1 1'
  292.  
  293. - '/give {username} 133 1'
  294.  
  295.  
  296.  
  297. # blocked - a list of worlds where rewards should be disabled, they will remain queued until the player is in an allowed world.
  298.  
  299.  
  300.  
  301. blocked:
  302.  
  303. - world_blocked
  304.  
  305.  
  306.  
  307. # Available formatting codes for messages:
  308.  
  309.  
  310.  
  311. # {service} {servicename} {SERVICE} = service name
  312.  
  313. # {username} {player} {name} = player username
  314.  
  315. # {votes} = current vote total
  316.  
  317. # & = Colour Symbol to enter manual colours / control codes
  318.  
  319. # {AQUA} {BLACK} {BLUE} {DARK_AQUA} {DARK_BLUE}
  320.  
  321. # {DARK_GRAY} {DARK_GREEN} {DARK_PURPLE} {DARK_RED} {GOLD}
  322.  
  323. # {GRAY} {GREEN} {LIGHT_PURPLE} {RED} {WHITE} {YELLOW} {BOLD}
  324.  
  325. # {ITALIC} {UNDERLINE} {STRIKETHROUGH} {STRIKE}
  326.  
  327. # {STRIKETHROUGH} {MAGIC} {RESET}
  328.  
  329.  
  330.  
  331. votemessage:
  332.  
  333. - ''
  334.  
  335. - '&6&lOrange &7// &fVote link: &6https://minecraft-mp.com/server/213680/vote/'
  336.  
  337. - '&6&lOrange &7// &fAi un numar de &6{votes} voturi&f!'
  338.  
  339. - ''
  340.  
  341. remindmessage:
  342.  
  343. - ''
  344.  
  345. - '&6&lOrange &7// &fVote link: &6https://minecraft-mp.com/server/213680/vote/'
  346.  
  347. - '&6&lOrange &7// &fAi un numar de &6{votes} voturi&f!'
  348.  
  349. - ''
  350.  
  351. joinmessage:
  352.  
  353. - ''
  354.  
  355. - '&6&lOrange &7// &fVote link: &6https://minecraft-mp.com/server/213680/vote/'
  356.  
  357. - '&6&lOrang &7// &fAi un numar de &6{votes} voturi&f!'
  358.  
  359. - ''
  360.  
  361. # Additional formatting codes for below:
  362.  
  363.  
  364.  
  365. # {TOTAL} = vote total - used for /rewards
  366.  
  367. # {REWARD} = current rewardmessage as specified in the cumulative reward section - used for /rewards
  368.  
  369. # {POSITION} = current rank - used for /votetop
  370.  
  371. # {username} = player name - used for /votetop
  372.  
  373.  
  374.  
  375. rewardformat: '{GREEN}{TOTAL} Votes {GRAY}- {AQUA}{REWARD}'
  376.  
  377. votetopformat: '{POSITION}. {GREEN}{username} - {WHITE}{TOTAL}'
  378.  
  379. rewardheader:
  380.  
  381. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Rewards{WHITE} ] {GOLD}----------------'
  382.  
  383. votetopheader:
  384.  
  385. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Top Voters{WHITE} ] {GOLD}----------------'
  386.  
  387. rewardfooter:
  388.  
  389. - '{AQUA}You currently have {GREEN}{votes} Votes'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement