Advertisement
Guest User

Untitled

a guest
Oct 9th, 2015
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.74 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: true
  32. permvote: false
  33. cumulative: true
  34. broadcastqueue: true
  35. broadcastrecent: true
  36. broadcastoffline: false
  37. votecommand: true
  38. rewardcommand: false
  39. joinmessage: false
  40. voteremind: false
  41. remindseconds: 300
  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: '{GOLD}{BOLD}{username} {GOLD}has voted & received {GOLD}{BOLD}3 Diamonds {GOLD}& a {GOLD}{BOLD}$50{GOLD}!'
  59. playermessage: '{GOLD}Thanks for voting!'
  60. commands:
  61. - '/give {username} diamond 3'
  62. - '/eco give {username} 50'
  63.  
  64. # luckyvotes section
  65. # 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.
  66.  
  67. luckyvotes:
  68. '10':
  69. broadcast: '{GOLD}{BOLD}{username} {GOLD}was lucky & recieved a {GOLD}{BOLD}Gold Ingot{GOLD}!'
  70. playermessage: '{GOLD}You were lucky and received Gold Ingot!'
  71. commands:
  72. - '/give {username} gold_ingot 1'
  73. '25':
  74. broadcast: '{GOLD}{BOLD}{username} {GOLD}was lucky & recieved an {GOLD}{BOLD}Emerald{GOLD}!'
  75. playermessage: '{GOLD}You were lucky and received an Emerald!'
  76. commands:
  77. - '/give {username} emerald 1'
  78. '500':
  79. broadcast: '{GOLD}{BOLD}{username} {GOLD}was lucky & recieved an {GOLD}{BOLD}Endermite Pet{GOLD}!'
  80. playermessage: '{GOLD}You were lucky and received an Endermite Pet!'
  81. commands:
  82. - '/pex user {username} add echopet.pet.type.endermite'
  83. '500':
  84. broadcast: '{GOLD}{BOLD}{username} {GOLD}was lucky & recieved a {GOLD}{BOLD}Slime Pet{GOLD}!'
  85. playermessage: '{GOLD}You were lucky and received a Slime Pet!'
  86. commands:
  87. - '/pex user {username} add echopet.pet.type.slime'
  88. '500':
  89. broadcast: '{GOLD}{BOLD}{username} {GOLD}was lucky & recieved a {GOLD}{BOLD}Horse Pet{GOLD}!'
  90. playermessage: '{GOLD}You were lucky and received a Horse Pet!'
  91. commands:
  92. - '/pex user {username} add echopet.pet.type.horse'
  93. '500':
  94. broadcast: '{GOLD}{BOLD}{username} {GOLD}was lucky & recieved a {GOLD}{BOLD}Silverfish Pet{GOLD}!'
  95. playermessage: '{GOLD}You were lucky and received a Silverfish Pet!'
  96. commands:
  97. - '/pex user {username} add echopet.pet.type.silverfish'
  98. '1000':
  99. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved a {GOLD}{BOLD}Blaze Pet{GOLD}!'
  100. playermessage: '{GOLD}You were super lucky and received a Blaze Pet!'
  101. commands:
  102. - '/pex user {username} add echopet.pet.type.blaze'
  103. '1000':
  104. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved a {GOLD}{BOLD}Creeper Pet{GOLD}!'
  105. playermessage: '{GOLD}You were super lucky and received a Creeper Pet!'
  106. commands:
  107. - '/pex user {username} add echopet.pet.type.creeper'
  108. '1000':
  109. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved a {GOLD}{BOLD}Ghast Pet{GOLD}!'
  110. playermessage: '{GOLD}You were super lucky and received a Ghast Pet!'
  111. commands:
  112. - '/pex user {username} add echopet.pet.type.ghast'
  113. '1000':
  114. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved a {GOLD}{BOLD}Squid Pet{GOLD}!'
  115. playermessage: '{GOLD}You were super lucky and received a Squid Pet!'
  116. commands:
  117. - '/pex user {username} add echopet.pet.type.squid'
  118. '1000':
  119. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved a {GOLD}{BOLD}Wither Pet{GOLD}!'
  120. playermessage: '{GOLD}You were super lucky and received a Wither Pet!'
  121. commands:
  122. - '/pex user {username} add echopet.pet.type.wither'
  123. '250':
  124. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Iron Armor{GOLD}!'
  125. playermessage: '{GOLD}You were super lucky and received Iron Armor! Click on Gadgets, then Wardrobe.'
  126. commands:
  127. - '/pex user {username} add serverwardrobe.iron'
  128. '250':
  129. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Chainmail Armor{GOLD}!'
  130. playermessage: '{GOLD}You were super lucky and received Chainmail Armor! Click on Gadgets, then Wardrobe.'
  131. commands:
  132. - '/pex user {username} add serverwardrobe.chainmail'
  133. '500':
  134. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Gold Armor{GOLD}!'
  135. playermessage: '{GOLD}You were super lucky and received Gold Armor! Click on Gadgets, then Wardrobe.'
  136. commands:
  137. - '/pex user {username} add serverwardrobe.gold'
  138. '500':
  139. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Diamond Armor{GOLD}!'
  140. playermessage: '{GOLD}You were super lucky and received Diamond Armor! Click on Gadgets, then Wardrobe.'
  141. commands:
  142. - '/pex user {username} add serverwardrobe.diamond'
  143. '250':
  144. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Explode Particles{GOLD}!'
  145. playermessage: '{GOLD}You were super lucky and received Explode Particles! Click on Gadgets, then Particles.'
  146. commands:
  147. - '/pex user {username} add playerparticles.explode'
  148. '500':
  149. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Large Explode Particles{GOLD}!'
  150. playermessage: '{GOLD}You were super lucky and received Large Explode Particles! Click on Gadgets, then Particles.'
  151. commands:
  152. - '/pex user {username} add playerparticles.largeexplode'
  153. '500':
  154. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Huge Explode Particles{GOLD}!'
  155. playermessage: '{GOLD}You were super lucky and received Huge Explode Particles! Click on Gadgets, then Particles.'
  156. commands:
  157. - '/pex user {username} add playerparticles.hugeexplosion'
  158. '250':
  159. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Fireworks Particles{GOLD}!'
  160. playermessage: '{GOLD}You were super lucky and received Fireworks Particles! Click on Gadgets, then Particles.'
  161. commands:
  162. - '/pex user {username} add playerparticles.fireworksspark'
  163. '250':
  164. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Bubble Particles{GOLD}!'
  165. playermessage: '{GOLD}You were super lucky and received Bubble Particles! Click on Gadgets, then Particles.'
  166. commands:
  167. - '/pex user {username} add playerparticles.bubble'
  168. '250':
  169. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Wake Particles{GOLD}!'
  170. playermessage: '{GOLD}You were super lucky and received Wake Particles! Click on Gadgets, then Particles.'
  171. commands:
  172. - '/pex user {username} add playerparticles.wake'
  173. '250':
  174. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Suspended Particles{GOLD}!'
  175. playermessage: '{GOLD}You were super lucky and received Suspended Particles! Click on Gadgets, then Particles.'
  176. commands:
  177. - '/pex user {username} add playerparticles.suspended'
  178. '250':
  179. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Depth Suspend Particles{GOLD}!'
  180. playermessage: '{GOLD}You were super lucky and received Depth Suspend Particles! Click on Gadgets, then Particles.'
  181. commands:
  182. - '/pex user {username} add playerparticles.depthsuspend'
  183. '250':
  184. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Crit Particles{GOLD}!'
  185. playermessage: '{GOLD}You were super lucky and received Crit Particles! Click on Gadgets, then Particles.'
  186. commands:
  187. - '/pex user {username} add playerparticles.crit'
  188. '250':
  189. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Magic Crit Particles{GOLD}!'
  190. playermessage: '{GOLD}You were super lucky and received Magic Crit Particles! Click on Gadgets, then Particles.'
  191. commands:
  192. - '/pex user {username} add playerparticles.magiccrit
  193. '250':
  194. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Smoke Particles{GOLD}!'
  195. playermessage: '{GOLD}You were super lucky and received Smoke Particles! Click on Gadgets, then Particles.'
  196. commands:
  197. - '/pex user {username} add playerparticles.smoke'
  198. '500':
  199. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Large Smoke Particles{GOLD}!'
  200. playermessage: '{GOLD}You were super lucky and received Large Smoke Particles! Click on Gadgets, then Particles.'
  201. commands:
  202. - '/pex user {username} add playerparticles.largesmoke'
  203. '250':
  204. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Spell Particles{GOLD}!'
  205. playermessage: '{GOLD}You were super lucky and received Spell Particles! Click on Gadgets, then Particles.'
  206. commands:
  207. - '/pex user {username} add playerparticles.spell'
  208. '250':
  209. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Instant Spell Particles{GOLD}!'
  210. playermessage: '{GOLD}You were super lucky and received Instant Spell Particles! Click on Gadgets, then Particles.'
  211. commands:
  212. - '/pex user {username} add playerparticles.instantspell'
  213. '250':
  214. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Mob Spell Particles{GOLD}!'
  215. playermessage: '{GOLD}You were super lucky and received Mob Spell Particles! Click on Gadgets, then Particles.'
  216. commands:
  217. - '/pex user {username} add playerparticles.mobspell'
  218. '250':
  219. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Mob Spell Ambient Particles{GOLD}!'
  220. playermessage: '{GOLD}You were super lucky and received Mob Spell Ambient Particles! Click on Gadgets, then Particles.'
  221. commands:
  222. - '/pex user {username} add playerparticles.mobspellambient'
  223. '250':
  224. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Witch Magic Particles{GOLD}!'
  225. playermessage: '{GOLD}You were super lucky and received Witch Magic Particles! Click on Gadgets, then Particles.'
  226. commands:
  227. - '/pex user {username} add playerparticles.witchmagic'
  228. '250':
  229. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Drip Water Particles{GOLD}!'
  230. playermessage: '{GOLD}You were super lucky and received Drip Water Particles! Click on Gadgets, then Particles.'
  231. commands:
  232. - '/pex user {username} add playerparticles.dripwater'
  233. '250':
  234. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Drip Lava Particles{GOLD}!'
  235. playermessage: '{GOLD}You were super lucky and received Drip Lava Particles! Click on Gadgets, then Particles.'
  236. commands:
  237. - '/pex user {username} add playerparticles.driplava'
  238. '500':
  239. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Angry Villager Particles{GOLD}!'
  240. playermessage: '{GOLD}You were super lucky and received Angry Villager Particles! Click on Gadgets, then Particles.'
  241. commands:
  242. - '/pex user {username} add playerparticles.angryvillager'
  243. '500':
  244. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Happy Villager Particles{GOLD}!'
  245. playermessage: '{GOLD}You were super lucky and received Happy Villager Particles! Click on Gadgets, then Particles.'
  246. commands:
  247. - '/pex user {username} add playerparticles.happyvillager'
  248. '500':
  249. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Note Particles{GOLD}!'
  250. playermessage: '{GOLD}You were super lucky and received Note Particles! Click on Gadgets, then Particles.'
  251. commands:
  252. - '/pex user {username} add playerparticles.note'
  253. '250':
  254. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Portal Particles{GOLD}!'
  255. playermessage: '{GOLD}You were super lucky and received Portal Particles! Click on Gadgets, then Particles.'
  256. commands:
  257. - '/pex user {username} add playerparticles.portal'
  258. '500':
  259. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Enchant Particles{GOLD}!'
  260. playermessage: '{GOLD}You were super lucky and received Enchant Particles! Click on Gadgets, then Particles.'
  261. commands:
  262. - '/pex user {username} add playerparticles.enchantmenttable'
  263. '500':
  264. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Flame Particles{GOLD}!'
  265. playermessage: '{GOLD}You were super lucky and received Flame Particles! Click on Gadgets, then Particles.'
  266. commands:
  267. - '/pex user {username} add playerparticles.flame'
  268. '250':
  269. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Lava Particles{GOLD}!'
  270. playermessage: '{GOLD}You were super lucky and received Lava Particles! Click on Gadgets, then Particles.'
  271. commands:
  272. - '/pex user {username} add playerparticles.lava'
  273. '500':
  274. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Footstep Particles{GOLD}!'
  275. playermessage: '{GOLD}You were super lucky and received Footstep Particles! Click on Gadgets, then Particles.'
  276. commands:
  277. - '/pex user {username} add playerparticles.footstep'
  278. '250':
  279. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Cloud Particles{GOLD}!'
  280. playermessage: '{GOLD}You were super lucky and received Cloud Particles! Click on Gadgets, then Particles.'
  281. commands:
  282. - '/pex user {username} add playerparticles.cloud'
  283. '250':
  284. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Red Dust Particles{GOLD}!'
  285. playermessage: '{GOLD}You were super lucky and received Red Dust Particles! Click on Gadgets, then Particles.'
  286. commands:
  287. - '/pex user {username} add playerparticles.reddust'
  288. '250':
  289. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Snow Poof Particles{GOLD}!'
  290. playermessage: '{GOLD}You were super lucky and received Snow Poof Particles! Click on Gadgets, then Particles.'
  291. commands:
  292. - '/pex user {username} add playerparticles.snowballpoof'
  293. '250':
  294. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Snowball Particles{GOLD}!'
  295. playermessage: '{GOLD}You were super lucky and received Snowball Particles! Click on Gadgets, then Particles.'
  296. commands:
  297. - '/pex user {username} add playerparticles.snowshovel'
  298. '250':
  299. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Slime Particles{GOLD}!'
  300. playermessage: '{GOLD}You were super lucky and received Slime Particles! Click on Gadgets, then Particles.'
  301. commands:
  302. - '/pex user {username} add playerparticles.slime'
  303. '500':
  304. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Barrier Particles{GOLD}!'
  305. playermessage: '{GOLD}You were super lucky and received Barrier Particles! Click on Gadgets, then Particles.'
  306. commands:
  307. - '/pex user {username} add playerparticles.barrier'
  308. '250':
  309. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Heart Particles{GOLD}!'
  310. playermessage: '{GOLD}You were super lucky and received Heart Particles! Click on Gadgets, then Particles.'
  311. commands:
  312. - '/pex user {username} add playerparticles.heart'
  313. '250':
  314. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Droplet Particles{GOLD}!'
  315. playermessage: '{GOLD}You were super lucky and received Droplet Particles! Click on Gadgets, then Particles.'
  316. commands:
  317. - '/pex user {username} add playerparticles.droplet'
  318. '500':
  319. broadcast: '{GOLD}{BOLD}{username} {GOLD}was super lucky & recieved {GOLD}{BOLD}Rainbow Particles{GOLD}!'
  320. playermessage: '{GOLD}You were super lucky and received Rainbow Particles! Click on Gadgets, then Particles.'
  321. commands:
  322. - '/pex user {username} add playerparticles.rainbow'
  323.  
  324. # cumulative reward section
  325. # This example would give players 20 Diamonds once they have reached a total of 10 votes.
  326.  
  327. cumulative:
  328. '10':
  329. broadcast: '{GOLD}{BOLD}{username} {GOLD}has voted a total of {GOLD}{BOLD}10 times this month{GOLD}& recieved an {GOLD}{BOLD}Emerald{GOLD}!'
  330. playermessage: '{GOLD}Thank you for voting 10 times!'
  331. rewardmessage: ''
  332. commands:
  333. - '/give {username} emerald 1'
  334.  
  335. # blocked - a list of worlds where rewards should be disabled, they will remain queued until the player is in an allowed world.
  336.  
  337. blocked:
  338. - world_blocked
  339.  
  340. # Available formatting codes for messages:
  341.  
  342. # {service} {servicename} {SERVICE} = service name
  343. # {username} {player} {name} = player username
  344. # {votes} = current vote total
  345. # & = Colour Symbol to enter manual colours / control codes
  346. # {AQUA} {BLACK} {BLUE} {DARK_AQUA} {DARK_BLUE}
  347. # {DARK_GRAY} {DARK_GREEN} {DARK_PURPLE} {DARK_RED} {GOLD}
  348. # {GRAY} {GREEN} {LIGHT_PURPLE} {RED} {WHITE} {YELLOW} {BOLD}
  349. # {ITALIC} {UNDERLINE} {STRIKETHROUGH} {STRIKE}
  350. # {STRIKETHROUGH} {MAGIC} {RESET}
  351.  
  352. votemessage:
  353. - ''
  354.  
  355. remindmessage:
  356. - ''
  357.  
  358. joinmessage:
  359. - ''
  360.  
  361. # Additional formatting codes for below:
  362.  
  363. # {TOTAL} = vote total - used for /rewards
  364. # {REWARD} = current rewardmessage as specified in the cumulative reward section - used for /rewards
  365. # {POSITION} = current rank - used for /votetop
  366. # {username} = player name - used for /votetop
  367.  
  368. rewardformat: '{GOLD}{TOTAL} Votes {GRAY}- {GOLD}{REWARD}'
  369. votetopformat: '{POSITION}. {GOLD}{username} {GRAY}- {GOLD}{TOTAL}'
  370. rewardheader:
  371. - '{AQUA}---------------- {DARK_GRAY}[ {GOLD}Rewards{DARK_GRAY} ] {RED}----------------'
  372. votetopheader:
  373. - '{RED}---------------- {DARK_GRAY}[ {GOLD}Top Voters{DARK_GRAY} ] {AQUA}----------------'
  374. rewardfooter:
  375. - '{GOLD}You currently have {GOLD}{BOLD}{votes} {GOLD}Votes'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement