Guest User

Untitled

a guest
Apr 6th, 2018
449
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 44.58 KB | None | 0 0
  1. #==============================O==============================#
  2. # I---------------------------------------------------------I #
  3. # | Advanced Achievements 5.6.4 configuration - Readme | #
  4. # 1---------------------------------------------------------1 #
  5. #==============================o==============================#
  6.  
  7. # You can use Minecraft chat colors in Message|DisplayName|Goal, but include double quotes around the whole text: "&4Color".
  8. # Only spaces, NO tabs. Don't forget the indents (2 spaces per indentation level), plugin won't work otherwise!
  9. # To check syntax errors in your file, use: yaml-online-parser.appspot.com
  10. # Do NOT delete any top level (= not indentented) sections in the configuration file.
  11. # Possible items for rewards/Crafts/Places/Breaks: hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
  12. # Possible mobs for the Kills section: hub.spigotmc.org/javadocs/bukkit/org/bukkit/entity/EntityType.html
  13. # Default config.yml file: github.com/PyvesB/AdvancedAchievements/blob/master/src/main/resources/config.yml
  14. # Visit the wiki for some valuable additional documentation: github.com/PyvesB/AdvancedAchievements/wiki
  15.  
  16. #=============================O=O=============================#
  17. # II-------------------------------------------------------II #
  18. # | General settings | #
  19. # 2---------------------------------------------------------2 #
  20. #=============================o=o=============================#
  21.  
  22. # Time in seconds between each /aach book (unless user has permission achievement.*).
  23. TimeBook: 900
  24.  
  25. # Check for update on plugin launch and notify when an OP joins the game.
  26. CheckForUpdate: false
  27.  
  28. # Set to true to activate firework effects when a player receives an achievement.
  29. Firework: false
  30.  
  31. # Choose BALL_LARGE, BALL, BURST, CREEPER, STAR or RANDOM.
  32. FireworkStyle: RANDOM
  33.  
  34. # Set to true to activate simpler effects and a calm sound when a player receives an achievement.
  35. # Ignored if Firework setting is set to true.
  36. SimplifiedReception: true
  37.  
  38. # Number of players displayed in /aach top, week and month commands.
  39. TopList: 10
  40.  
  41. # Set to true to activate particle effects when performing /aach book, /aach stats with all achievements and
  42. # /aach top, week or month when ranked in the top list.
  43. AdditionalEffects: true
  44.  
  45. # Set to true to activate sounds when performing /aach book, /aach stats with all achievements and
  46. # /aach top, week or month when ranked in the top list.
  47. Sound: true
  48.  
  49. # Set the icon of the plugin (set to crown).
  50. Icon: \█
  51.  
  52. # Set the color of the plugin (set to 5, purple).
  53. Color: 5
  54.  
  55. # Notify other connected players when an achievement is received.
  56. # Default behaviour, a player can override what he sees by using /aach toggle.
  57. NotifyOtherPlayers: false
  58.  
  59. # When NotifyOtherPlayers is enabled, notifications are done using action bars when ActionBarNotify is true.
  60. # When ActionBarNotify is false, chat messages are used.
  61. ActionBarNotify: false
  62.  
  63. # Display achievement Name and Message as screen titles. No effect if using Minecraft 1.7.9 or 1.7.10.
  64. TitleScreen: true
  65.  
  66. # When a player receives an achievement, the Name, Message and rewards of the achievement are displayed in
  67. # the chat. If HoverableReceiverChatText is true, a single hoverable text will be displayed to the receiver.
  68. # Otherwise texts will be displayed one after the other.
  69. HoverableReceiverChatText: true
  70.  
  71. # Separator between name, description and date on a book page.
  72. BookSeparator: ""
  73.  
  74. # Set the format of the achievement name in /aach list (default: "%ICON% %NAME% %ICON%").
  75. ListAchievementFormat: "%ICON% %NAME% %ICON%"
  76.  
  77. # Set the format of the header used for most chat messages (default: "&7[%ICON%&7]").
  78. ChatHeader: "&7[&5AACH&7]"
  79.  
  80. # Stop all stats from increasing when player in creative mode, including PlayedTime.
  81. # Connection achievements will only be handled once a player switches to a non-creative mode.
  82. RestrictCreative: false
  83.  
  84. # Stop all stats from increasing when player in spectator mode, including PlayedTime.
  85. # Connection achievements will only be handled once a player switches to a non-spectator mode.
  86. # No effect if using Minecraft 1.7.9 or 1.7.10.
  87. RestrictSpectator: true
  88.  
  89. # Stop all stats from increasing when player in adventure mode, including PlayedTime.
  90. # Connection achievements will only be handled once a player switches to a non-adventure mode.
  91. RestrictAdventure: true
  92.  
  93. # Stop all stats from increasing when player in a specific world, including PlayedTime (delete the [] before adding values).
  94. # Connection achievements will only be handled once a player enters a non-excluded world.
  95. # Want to add: creative & world edit worlds here but don't know the names.
  96. # Need feedback as this prevents play time from being added too. - Outback
  97. ExcludedWorlds:
  98. - creative
  99. - worldedit
  100.  
  101. # Ignore vertical dimension (Y axis) when calculating distance statistics.
  102. IgnoreVerticalDistance: true
  103.  
  104. # Don't show these categories in the achievement GUI or in the stats output (delete the [] before adding values).
  105. # Also prevent obtaining achievements for these categories and prevent stats from increasing.
  106. # If changed, do a full server restart, and not just /aach reload.
  107. DisabledCategories:
  108. - PetMasterGive
  109. - PetMasterReceive
  110. - Smelting
  111. - LavaBuckets
  112. - Milk
  113. - Snowballs
  114. - Eggs
  115. - Custom
  116.  
  117. # Obfuscate achievements that have not yet been received in /aach list.
  118. ObfuscateNotReceived: false
  119.  
  120. # For categories with a series of related achievements where the only thing changing is the number of times
  121. # the event has occurred, show achievements that have been obtained and show the next obtainable achievement,
  122. # but obfuscate the additional achievements. For example, under Places, stone, the first achievement could have a
  123. # target of 100 stone, the second 500 stone, and the third 1000 stone. When ObfuscateProgressiveAchievements
  124. # is true, initially only the 100 stone achievement will be readable in the GUI. Once 100 stone have been placed,
  125. # the 500 stone achievement will become legible.
  126. ObfuscateProgressiveAchievements: true
  127.  
  128. # Hide categories with no achievements yet received in /aach list by marking them as locked.
  129. HideNotReceivedCategories: false
  130.  
  131. # Completely hide categories for which the player does not have the corresponding count permissions.
  132. HideNoPermissionCategories: false
  133.  
  134. # Hide the reward display in /aach list.
  135. HideRewardDisplayInList: true
  136.  
  137. # Display precise statistic information in the /aach list progress bars.
  138. EnrichedListProgressBars: true
  139.  
  140. # Annotate each achievement displayed in a /aach list category with a number.
  141. NumberedItemsInList: false
  142.  
  143. # Color used for Goals and progress bars in /aach list when an achievement is not yet received.
  144. ListColorNotReceived: 8
  145.  
  146. # Sort pages of the book in chronological order (false for reverse chronological order).
  147. BookChronologicalOrder: true
  148.  
  149. # Do not take into account items broken with Silk Touch for the Breaks achievements.
  150. DisableSilkTouchBreaks: false
  151.  
  152. # Do not take into account ores broken with Silk Touch for the Breaks achievements.
  153. # DisableSilkTouchBreaks takes precedence over this. Not applicable to iron or gold ores.
  154. DisableSilkTouchOreBreaks: false
  155.  
  156. # Name of the language file.
  157. LanguageFileName: lang.yml
  158.  
  159. # Time in seconds between each statistic count. Only the listed categories are currently supported.
  160. StatisticCooldown:
  161. LavaBuckets: 60
  162. WaterBuckets: 60
  163. Milk: 60
  164. Beds: 60
  165. Brewing: 5
  166. MusicDiscs: 30
  167.  
  168. # Display action bar message when player performs an action while in the cooldown period.
  169. # No effect if using Minecraft 1.7.9 or 1.7.10.
  170. CooldownActionBar: false
  171.  
  172. # Locale used to format dates in /aach book and /aach list. You must select an ISO 639 language code.
  173. # The list of possible language codes can be found at www.loc.gov/standards/iso639-2/php/code_list.php
  174. DateLocale: en
  175.  
  176. # Display time of reception of achievements in /aach book and /aach list in addition to the date. For achievements
  177. # received in plugin versions prior to 3.0, the precise time information is not available and will be displayed as midnight.
  178. DateDisplayTime: true
  179.  
  180. # Register advancements with a description corresponding to the Goal parameter of each achievement.
  181. # If changed, run /aach generate to regenerate advancements with the new parameter value taken into account.
  182. # No effect if using Minecraft versions prior to 1.12.
  183. RegisterAdvancementDescriptions: true
  184.  
  185. # If true, hide advancements from the advancement GUI. Advancement notifications will still appear when receiving achievements.
  186. # No effect if using Minecraft versions prior to 1.12.
  187. HideAdvancements: false
  188.  
  189. # If true, PlayedTime will no longer increase when the player is AFK. Requires Essentials to work.
  190. IgnoreAFKPlayedTime: true
  191.  
  192. # Awarded when a player has received all the achievements. Use the same reward pattern as with achievements.
  193. # Want to add: Execute: {give player Overachiever tag}; placeholder in right now, may be incorrect
  194. AllAchievementsReceivedRewards:
  195. Experience: 100
  196. Command:
  197. Execute: lp user PLAYER permission set deluxetags.tag.Overachiever
  198.  
  199.  
  200. #=============================OOO=============================#
  201. # III-----------------------------------------------------III #
  202. # | Database settings | #
  203. # 3---------------------------------------------------------3 #
  204. #=============================ooo=============================#
  205.  
  206. # Make a daily backup of your local database (if sqlite).
  207. DatabaseBackup: true
  208.  
  209. # Database type, sqlite, postgresql or mysql. Do a full server restart for this to take effect.
  210. # Want to add: correct database
  211. DatabaseType: sqlite
  212.  
  213. # Prefix added to the tables in the database. If you switch from the default tables names (no prefix),
  214. # the plugin will attempt an automatic renaming. Otherwise you have to rename your tables manually.
  215. # Do a full server restart for this to take effect.
  216. TablePrefix: ""
  217.  
  218. # Specify additional options when opening a connection to a MySQL/PostgreSQL database. Start each option with &,
  219. # for instance "&useUnicode=yes&characterEncoding=UTF-8".
  220. AdditionalConnectionOptions: ""
  221.  
  222. # Settings to link with MySQL database (ignored if sqlite or postgresql).
  223. MYSQL:
  224. Database: "jdbc:mysql://localhost:3306/minecraft"
  225. User: root
  226. Password: root
  227.  
  228. # Settings to link with PostgresSQL database (ignored if sqlite or mysql).
  229. # Refer to https://github.com/PyvesB/AdvancedAchievements/wiki/Installation to set up PostgreSQL.
  230. POSTGRESQL:
  231. Database: "jdbc:postgresql://localhost:5432/minecraft"
  232. User: root
  233. Password: root
  234.  
  235. #============================OO=OO============================#
  236. # IV-------------------------------------------------------IV #
  237. # | Performance settings | #
  238. # 4---------------------------------------------------------4 #
  239. #============================oo=oo============================#
  240.  
  241. # DO NOT CHANGE THE FOLLOWING UNLESS YOU ARE AN EXPERIENCED USER. The intervals are in seconds.
  242. # If any of the performance settings are changed, do a full server restart, and not just /aach reload.
  243. # Frequency of play time checks for players. Smaller values give more precision but more CPU usage.
  244. PlaytimeTaskInterval: 60
  245.  
  246. # Calculates distance traveled by players. Smaller values give more precision but more CPU usage.
  247. DistanceTaskInterval: 5
  248.  
  249. # Frequency of some statistics writes to the database.
  250. PooledRequestsTaskInterval: 10
  251.  
  252. #============================OOOOO============================#
  253. # V---------------------------------------------------------V #
  254. # | Action achievements | #
  255. # 5---------------------------------------------------------5 #
  256. #============================ooooo============================#
  257.  
  258. # When a player connects during the day; statistic increases at most once per day.
  259. Connections:
  260. 64:
  261. Goal: Login on 64 different days.
  262. Message: "&4Connecting to Eos 4x4x4 days makes you a Connect 4 master!"
  263. Name: connect_64
  264. DisplayName: Connect 4... Times 4 times 4
  265. Reward:
  266. Command:
  267. Execute: "minecraft:give PLAYER 339 1 0 {display:{Name:'§1Connect 64',Lore:['Earned by connecting to Eos on 64 different days.']}}"
  268.  
  269. # When a specific block is placed (specify material name, lower case).
  270. Places:
  271. chest:
  272. 25:
  273. Goal: Place 25 chests.
  274. Message: "&4You have placed 25 chests!"
  275. Name: place_25_chests
  276. DisplayName: Smart Storage
  277. 50:
  278. Goal: Place 50 chests.
  279. Message: "&4You have placed 50 chests!"
  280. Name: place_50_chests
  281. DisplayName: Excessive Storage
  282. 100:
  283. Goal: Place 100 chests.
  284. Message: "&4You have placed 100 chests!"
  285. Name: place_100_chests
  286. DisplayName: Hoarder
  287. anvil:
  288. 5:
  289. Goal: Place 5 anvils.
  290. Message: "&4You have placed 5 anvils!"
  291. Name: place_5_anvils
  292. DisplayName: Some Repairs
  293. 10:
  294. Goal: Place 10 anvils.
  295. Message: "&4You have placed 10 anvils!"
  296. Name: place_10_anvils
  297. DisplayName: Fixer Upper
  298. 15:
  299. Goal: Place 15 anvils.
  300. Message: "&4You have placed 15 anvils!"
  301. Name: place_15_anvils
  302. DisplayName: Blacksmith
  303. workbench:
  304. 5:
  305. Goal: Place 5 crafting tables.
  306. Message: "&4You have placed 5 crafting tables!"
  307. Name: place_5_workbenches
  308. DisplayName: Benchmarking
  309. 10:
  310. Goal: Place 10 crafting tables.
  311. Message: "&4You have placed 10 crafting tables!"
  312. Name: place_10_workbenches
  313. DisplayName: Craftmine
  314. 15:
  315. Goal: Place 15 crafting tables.
  316. Message: "&4You have placed 15 crafting tables!"
  317. Name: place_15_workbenches
  318. DisplayName: Master Crafter
  319. bed:
  320. 5:
  321. Goal: Place 5 beds.
  322. Message: "&4You have placed 5 beds!"
  323. Name: place_5_beds
  324. DisplayName: Some Repairs
  325. 10:
  326. Goal: Place 10 beds.
  327. Message: "&4You have placed 10 beds!"
  328. Name: place_10_beds
  329. DisplayName: Some Repairs
  330. 15:
  331. Goal: Place 5 beds.
  332. Message: "&4You have placed 15 beds!"
  333. Name: place_15_beds
  334. DisplayName: Some Repairs
  335.  
  336. # When a specific block is broken (specify material name, lower case).
  337. Breaks:
  338. quartz_ore:
  339. 100:
  340. Goal: Break 100 quartz ore.
  341. Message: "&4You've mined 100 quartz ore!"
  342. Name: break_100_quartz_ore
  343. DisplayName: White Nether
  344. glowstone:
  345. 250:
  346. Goal: Break 250 glowstone.
  347. Message: "&4You've mined 250 glowstone!"
  348. Name: break_250_glowstone
  349. DisplayName: Let There Be Light
  350. diamond_ore:
  351. 100:
  352. Goal: Break 100 diamond ore.
  353. Message: "&4You've mined 100 diamond ore!"
  354. Name: break_100_diamond_ore
  355. DisplayName: Diamonds!
  356. emerald_ore:
  357. 50:
  358. Goal: Break 50 emerald ore.
  359. Message: "&4You've mined 50 emerald ore!"
  360. Name: break_50_emerald_ore
  361. DisplayName: Gimme That Green
  362. iron_ore:
  363. 250:
  364. Goal: Break 250 iron ore.
  365. Message: "&4You've mined 250 iron ore!"
  366. Name: break_250_iron_ore
  367. DisplayName: Acquired Hardware
  368. gold_ore:
  369. 200:
  370. Goal: Break 200 gold ore.
  371. Message: "&4You've mined 200 gold ore!"
  372. Name: break_200_gold_ore
  373. DisplayName: Bling Bling
  374. coal_ore:
  375. 500:
  376. Goal: Break 500 coal ore.
  377. Message: "&4You've mined 500 coal ore!"
  378. Name: break_500_coal_ore
  379. DisplayName: Christmas Time
  380. Reward:
  381. Command:
  382. Execute: "minecraft:give PLAYER minecraft:sapling 1 1 {display:{Name:'§1Santa Hates Me',Lore:['Earned by mining 500 coal ore.']}}"
  383. sand:
  384. 500:
  385. Goal: Dig 500 sand.
  386. Message: "&4You've dug up 500 sand!"
  387. Name: dig_500_sand
  388. DisplayName: Desert Destroyer
  389. 1000:
  390. Goal: Dig 1000 sand.
  391. Message: "&4You've dug up 1000 sand!"
  392. Name: dig_1000_sand
  393. DisplayName: Beach City
  394. stone:
  395. 3456:
  396. Goal: Break a lot of stone.
  397. Message: "&4You've mined a double chest of stone!"
  398. Name: break_3456_stone
  399. DisplayName: 3456 Stone
  400.  
  401. # When a specific mob is killed.
  402. # Use an Entity name or poweredcreeper, in lower case.
  403. # Use player to track player kills as a whole.
  404. # Use specificplayer- followed by player UUID to track how many times a specific player has been killed.
  405. Kills:
  406. skeleton:
  407. 100:
  408. Goal: Kill 100 skeletons.
  409. Message: "&4100 Skeletons were slayed by your hand!"
  410. DisplayName: My Hands Are Up!
  411. Name: kills_100_skeletons
  412. 250:
  413. Goal: Kill 250 skeletons.
  414. Message: "&4250 Skeletons were slayed by your hand!"
  415. DisplayName: Ranged Killer
  416. Name: kills_250_skeletons
  417. 500:
  418. Goal: Kill 500 skeletons.
  419. Message: "&4500 Skeletons were slayed by your hand!"
  420. DisplayName: Don't Shoot the Messenger
  421. Name: kills_500_skeletons
  422. zombie:
  423. 100:
  424. Goal: Kill 100 zombies.
  425. Message: "&4100 Zombies were slayed by your hand!"
  426. DisplayName: Zombie Hunter
  427. Name: kills_100_zombies
  428. 250:
  429. Goal: Kill 250 zombies.
  430. Message: "&4250 Zombies were slayed by your hand!"
  431. DisplayName: Monster Slayer
  432. Name: kills_250_zombies
  433. 500:
  434. Goal: Kill 500 zombies.
  435. Message: "&4500 Zombies were slayed by your hand!"
  436. DisplayName: The Walking Dead
  437. Name: kills_500_zombies
  438. spider:
  439. 100:
  440. Goal: Kill 100 spiders.
  441. Message: "&4100 Spiders were slayed by your hand!"
  442. DisplayName: Venom Tracker
  443. Name: kills_100_spiders
  444. 500:
  445. Goal: Kill 250 spiders.
  446. Message: "&4250 Spiders were slayed by your hand!"
  447. DisplayName: Web Hunter
  448. Name: kills_250_spiders
  449. 500:
  450. Goal: Kill 500 spiders.
  451. Message: "&4500 Spiders were slayed by your hand!"
  452. DisplayName: Arachnophobe
  453. Name: kills_500_spiders
  454. guardian:
  455. 100:
  456. Goal: Kill 100 guardians.
  457. Message: "&4100 Guardians were slayed by your hand!"
  458. DisplayName: Thorns Killer
  459. Name: kills_100_guardians
  460. 500:
  461. Goal: Kill 250 guardians.
  462. Message: "&4250 Guardians were slayed by your hand!"
  463. DisplayName: Underwater Slaughter
  464. Name: kills_250_guardians
  465. 500:
  466. Goal: Kill 500 guardians.
  467. Message: "&4500 Guardians were slayed by your hand!"
  468. DisplayName: Fish Aren't Friends
  469. Name: kills_500_guardians
  470. witch:
  471. 250:
  472. Goal: Kill 250 witches.
  473. Message: "&4250 Witches were slayed by your hand!"
  474. DisplayName: Salem Witch Trials
  475. Name: kills_250_witches
  476. ghast:
  477. 10:
  478. Goal: Kill 10 ghasts.
  479. Message: "&410 Ghasts were slayed by your hand!"
  480. DisplayName: Uneasy Death
  481. Name: kills_10_ghasts
  482. 25:
  483. Goal: Kill 25 ghasts.
  484. Message: "&425 Ghasts were slayed by your hand!"
  485. DisplayName: Teardrop
  486. Name: kills_25_ghasts
  487. 50:
  488. Goal: Kill 50 ghasts.
  489. Message: "&450 Ghasts were slayed by your hand!"
  490. DisplayName: Ghost Buster
  491. Name: kills_50_ghasts
  492. blaze:
  493. 25:
  494. Goal: Kill 25 blazes.
  495. Message: "&425 Blazes were slayed by your hand!"
  496. DisplayName: Into Fire
  497. Name: kills_25_blazes
  498. 50:
  499. Goal: Kill 50 blazes.
  500. Message: "&450 Blazes were slayed by your hand!"
  501. DisplayName: Fight or Flight
  502. Name: kills_50_blazes
  503. 100:
  504. Goal: Kill 100 blazes.
  505. Message: "&4100 Blazes were slayed by your hand!"
  506. DisplayName: Hot Rod
  507. Name: kills_100_blazes
  508. player:
  509. 100:
  510. Goal: Kill 100 players.
  511. Message: "&4100 Players were slayed by your hand!"
  512. DisplayName: Homicidal
  513. Name: kills_100_players
  514. Reward:
  515. Command:
  516. Execute: "minecraft:give PLAYER 264 1 0 {display:{Name:'§1Homicidal',Lore:['Earned by killing 100 players.']}}"
  517. wither_skeleton:
  518. 5:
  519. Goal: Kill 5 wither skeletons.
  520. Message: "&45 Wither Skeletons were slayed by your hand!"
  521. DisplayName: The Beginning?
  522. Name: kills_5_witherskeletons
  523. 15:
  524. Goal: Kill 15 wither skeletons.
  525. Message: "&415 Wither Skeletons were slayed by your hand!"
  526. DisplayName: The Beginning
  527. Name: kills_15_witherskeletons
  528. 25:
  529. Goal: Kill 25 wither skeletons.
  530. Message: "&425 Wither Skeletons were slayed by your hand!"
  531. DisplayName: Spooky Scary Skeleton
  532. Name: kills_25_witherskeletons
  533. wither:
  534. 1:
  535. Goal: Kill the Wither.
  536. Message: "&4You've defeated the Wither!"
  537. DisplayName: Withering Heights
  538. Name: kills_1_wither
  539. Reward:
  540. Command:
  541. Execute: "minecraft:give PLAYER 272 1 0 {display:{Name:'§1Wither Slayer',Lore:['Earned by killing the Wither.']}}"
  542. ender_dragon:
  543. 1:
  544. Goal: Kill the Ender Dragon.
  545. Message: "&4You've defeated the Ender Dragon!"
  546. DisplayName: Free the End
  547. Name: kills_1_enderdragon
  548. Reward:
  549. Command:
  550. Execute: "minecraft:give PLAYER 368 1 0 {display:{Name:'§1Freedom',Lore:['Earned by killing the Ender Dragon.']}}"
  551.  
  552. # When a specific item is crafted (specify material name, lower case).
  553. Crafts:
  554. beacon:
  555. 1:
  556. Goal: Craft 1 beacon.
  557. Message: "&4You've finally crafted a beacon!"
  558. Name: craft_1_beacon
  559. DisplayName: The Beaconator
  560. cake:
  561. 10:
  562. Goal: Craft 10 cakes.
  563. Message: "&4You crafted 10 cakes!"
  564. Name: craft_10_cake
  565. DisplayName: The Cakes are a Lie
  566. end_crystal:
  567. 12:
  568. Goal: Craft 12 end crystals.
  569. Message: "&4You crafted 12 end crystals!"
  570. Name: craft_12_end_crystals
  571. DisplayName: Crystal Clear
  572. diamond_sword:
  573. 1:
  574. Goal: Craft 1 diamond sword.
  575. Message: "&4You crafted 1 diamond sword!"
  576. Name: craft_1_diamond_sword
  577. DisplayName: Advanced Weaponry
  578. diamond_pickaxe:
  579. 1:
  580. Goal: Craft 1 diamond pickaxe.
  581. Message: "&4You crafted 1 diamond pickaxe!"
  582. Name: craft_1_diamond_pickaxe
  583. DisplayName: Diamond Age
  584. diamond_axe:
  585. 1:
  586. Goal: Craft 1 diamond axe.
  587. Message: "&4You crafted 1 diamond axe!"
  588. Name: craft_1_diamond_axe
  589. DisplayName: Chop Chop
  590. gold_shovel:
  591. 1:
  592. Goal: Craft 1 gold shovel.
  593. Message: "&4You crafted 1 gold shovel!"
  594. Name: craft_1_gold_shovel
  595. DisplayName: Gold Digger
  596. golden_apple:
  597. 1:
  598. Goal: Craft 1 golden apple.
  599. Message: "&4You crafted 1 golden apple!"
  600. Name: craft_1_golden_apple
  601. DisplayName: Healthy Snack
  602. bookshelf:
  603. 15:
  604. Goal: Craft 15 bookshelves.
  605. Message: "&4You crafted 15 bookshelves!"
  606. Name: craft_15_bookshelves
  607. DisplayName: Librarian
  608.  
  609. # When the player dies.
  610. Deaths:
  611. 50:
  612. Goal: Die 50 times.
  613. Message: "&4How did you manage to die and come back 50 times?"
  614. Name: deaths_50
  615. DisplayName: "'Tis But A Scratch"
  616. Reward:
  617. Command:
  618. Execute: "minecraft:give PLAYER 1 1 0 {display:{Name:'§1Tombstone',Lore:['Earned by dying 50 times.']}}"
  619.  
  620. # When an arrow is shot.
  621. Arrows:
  622. 100:
  623. Goal: Shoot 100 arrows.
  624. Message: "&4You shot 100 arrows!"
  625. Name: arrows_100
  626. DisplayName: Amateur Archer
  627. 250:
  628. Goal: Shoot 250 arrows.
  629. Message: "&4You shot 250 arrows!"
  630. Name: arrows_250
  631. DisplayName: Robin Hood
  632. 500:
  633. Goal: Shoot 500 arrows.
  634. Message: "&4You shot 500 arrows!"
  635. Name: arrows_500
  636. DisplayName: Artemis
  637. Reward:
  638. Command:
  639. Execute: "minecraft:give PLAYER 262 1 0 {display:{Name:'§1Artemis's Arrow,Lore:['Earned by shooting 500 arrows.']}}"
  640.  
  641. # When a fish is caught.
  642. Fish:
  643. 100:
  644. Goal: Catch 100 fish.
  645. Message: "&4You caught 100 fish!"
  646. Name: fish_100
  647. DisplayName: Fishing Beginner
  648. 250:
  649. Goal: Catch 250 fish.
  650. Message: "&4You caught 250 fish!"
  651. Name: fish_250
  652. DisplayName: Amateur Fisherman
  653. 500:
  654. Goal: Catch 500 fish.
  655. Message: "&4500 fish later and you finally know the secrets to underwater breathing."
  656. Name: fish_500
  657. DisplayName: You Got Gills
  658. Reward:
  659. Command:
  660. Execute: "minecraft:give PLAYER minecraft:potion 1 8205 {display:{Name:'§1One with the Fish',Lore:['Earned by catching 500 fish.']}}"
  661.  
  662. # When a treasure is caught with a fishing rod.
  663. # Will this work with mcmmo fishing? - Outback
  664. Treasures:
  665. 100:
  666. Goal: Catch 100 treasures while fishing.
  667. Message: "&4You've fished up 100 different treasures from the sea!"
  668. Name: treasure_100
  669. DisplayName: You Got Treasure
  670. 250:
  671. Goal: Catch 250 treasures while fishing.
  672. Message: "&4You've fished up 250 different treasures from the sea!"
  673. Name: treasure_250
  674. DisplayName: Pirate's Apprentice
  675. 500:
  676. Goal: Catch 500 treasures while fishing.
  677. Message: "&4You've fished up 500 different treasures from the sea!"
  678. Name: treasure_500
  679. DisplayName: Treasure Hunter
  680. Reward:
  681. Command:
  682. Execute: "minecraft:give PLAYER 266 1 0 {display:{Name:'§1Treasure',Lore:['Earned by catching 500 treasures while fishing.']}}"
  683.  
  684. # When a tool/armor/weapon is broken.
  685. ItemBreaks:
  686. 10:
  687. Goal: Use up the full durability of a few items.
  688. Message: "&4You broke 10 items!"
  689. Name: itembreaks_10
  690. DisplayName: Inefficient
  691. 50:
  692. Goal: Use up the full durability of 50 items.
  693. Message: "&4You broke 50 items!"
  694. Name: itembreaks_50
  695. DisplayName: Clumsy
  696.  
  697. # When an item is eaten (excludes potions and milk).
  698. EatenItems:
  699. 1728:
  700. Goal: Eat a lot of food.
  701. Message: "&4Did I really eat an entire chest of food...?"
  702. Name: eatenitems_1728
  703. DisplayName: Hungry
  704. Reward:
  705. Command:
  706. Execute: "minecraft:give PLAYER 394 1 0 {display:{Name:'§1Hungry',Lore:['Earned by eating 27 stacks of food.']}}"
  707.  
  708. # When a sheep is sheared.
  709. Shear:
  710. 160:
  711. Goal: Shear an entire max-capacity sheep farm.
  712. Message: "&4You sheared 160 sheep!"
  713. Name: shear_160
  714. DisplayName: Wool Enthusiast
  715. 800:
  716. Goal: Shear an entire max-capacity sheep farm 5 times.
  717. Message: "&4You sheared 800 sheep!"
  718. Name: shear_800
  719. DisplayName: Wool Addict
  720. 1600:
  721. Goal: Shear an entire max-capacity sheep farm 10 times.
  722. Message: "&4You sheared 1600 sheep!"
  723. Name: shear_1600
  724. DisplayName: Have a Shearful Day
  725.  
  726. # When a bucket is filled with water.
  727. WaterBuckets:
  728. 25:
  729. Goal: Fill 25 buckets with water.
  730. Message: "&425 buckets filled with water!"
  731. Name: waterbuckets_25
  732. DisplayName: Bath Time
  733. 50:
  734. Goal: Fill 50 buckets with water.
  735. Message: "&450 buckets filled with water!"
  736. Name: waterbuckets_50
  737. DisplayName: Fireman
  738. 100:
  739. Goal: Fill 100 buckets with water.
  740. Message: "&4100 buckets filled with water!"
  741. Name: waterbuckets_100
  742. DisplayName: Water Witch
  743.  
  744. # When a trade with a villager is made.
  745. Trades:
  746. 25:
  747. Goal: Trade with villagers a few times.
  748. Message: "&4You traded with villagers 25 times!"
  749. Name: trades_25
  750. DisplayName: Haggler
  751. 50:
  752. Goal: Trade with villagers 50 times.
  753. Message: "&4You traded with villagers 50 times!"
  754. Name: trades_50
  755. DisplayName: Merchant
  756. 100:
  757. Goal: Trade with villagers 100 times.
  758. Message: "&4You traded with villagers 100 times!"
  759. Name: trades_100
  760. DisplayName: Businessman
  761.  
  762. # When an anvil is used.
  763. AnvilsUsed:
  764. 1:
  765. Goal: Use an anvil.
  766. Message: "&4You used an anvil!"
  767. Name: anvilsused_1
  768. DisplayName: First Repair
  769. 5:
  770. Goal: Use an anvil 5 times.
  771. Message: "&4You used an anvil 5 times!"
  772. Name: anvilsused_5
  773. DisplayName: Durable
  774. 10:
  775. Goal: Use an anvil 10 times.
  776. Message: "&4You used an anvil 10 times!"
  777. Name: anvilsused_10
  778. DisplayName: Trained Blacksmith
  779.  
  780. # When an enchantment is performed.
  781. Enchantments:
  782. 10:
  783. Goal: Enchant 10 objects.
  784. Message: "&4You enchanted 10 objects!"
  785. Name: enchantments_10
  786. DisplayName: Spellcaster
  787. 20:
  788. Goal: Enchant 20 objects.
  789. Message: "&4You enchanted 20 objects!"
  790. Name: enchantments_20
  791. DisplayName: Arcane Knowledge
  792. 30:
  793. Goal: Enchant 30 objects.
  794. Message: "&4You enchanted 30 objects!"
  795. Name: enchantments_30
  796. DisplayName: Wizard
  797. Reward:
  798. Command:
  799. Execute: "minecraft:give PLAYER 403 1 0 {display:{Name:'§1Wizard',Lore:['Earned by enchanting 30 objects.']}}"
  800.  
  801. # When a bed is entered.
  802. Beds:
  803. 5:
  804. Goal: Go to sleep 5 times.
  805. Message: "&4You set your bed home 5 times!"
  806. Name: bed_5
  807. DisplayName: Sleep Tight
  808.  
  809. # Maximum level reached.
  810. MaxLevel:
  811. 30:
  812. Goal: Reach level 30.
  813. Message: "&4Level 30 reached!"
  814. Name: maxlevel_30
  815. DisplayName: Ready to Enchant
  816. 50:
  817. Goal: Reach level 50.
  818. Message: "&4Level 50 reached!"
  819. Name: maxlevel_50
  820. DisplayName: XP Grinder
  821. 100:
  822. Goal: Reach level 100.
  823. Message: "&4Level 100 reached!"
  824. Name: maxlevel_100
  825. DisplayName: Experienced
  826. Reward:
  827. Command:
  828. Execute: "minecraft:give PLAYER 384 1 0 {display:{Name:'§1Experienced',Lore:['Earned by reaching level 100.']}}"
  829.  
  830. # When a potion is consumed.
  831. ConsumedPotions:
  832. 25:
  833. Goal: Consume 25 potions.
  834. Message: "&4You consumed 25 potions!"
  835. Name: consumedpotions_25
  836. DisplayName: Strange Tastes
  837. 50:
  838. Goal: Consume 50 potions.
  839. Message: "&4You consumed 50 potions!"
  840. Name: consumedpotions_50
  841. DisplayName: Potion Enthusiast
  842. 100:
  843. Goal: Consume 100 potions.
  844. Message: "&4You consumed 100 potions!"
  845. Name: consumedpotions_100
  846. DisplayName: Heavy Drinker
  847. Reward:
  848. Command:
  849. Execute: "minecraft:give PLAYER 374 1 0 {display:{Name:'§1Empty Bottle',Lore:['Earned by consuming 100 potions.']}}"
  850.  
  851. # Amount of time played on the server (in hours, use integers).
  852. PlayedTime:
  853. 24:
  854. Goal: Spend 24 hours online.
  855. Message: "&4You played for a total of 24 hours on the server!"
  856. Name: playedtime_1
  857. DisplayName: Day 1
  858. 48:
  859. Goal: Spend 48 hours online.
  860. Message: "&4You played for a total of 48 hours on the server!"
  861. Name: playedtime_2
  862. DisplayName: Day 2
  863. 240:
  864. Goal: Spend 10 days online.
  865. Message: "&4You played for a total of 10 days on the server!"
  866. Name: playedtime_10
  867. DisplayName: Day 10
  868. 720:
  869. Goal: Spend 30 days online.
  870. Message: "&4You played for a total of 30 days on the server!"
  871. Name: playedtime_30
  872. DisplayName: Day 30
  873.  
  874. # When a distance is traveled by foot.
  875. DistanceFoot:
  876. 1000:
  877. Goal: Travel 1 kilometer by foot.
  878. Message: "&4You traveled 1 kilometer by foot!"
  879. Name: distancefoot_1000
  880. DisplayName: Kilometer Long Club
  881. 12874:
  882. Goal: Travel 8 miles by foot.
  883. Message: "&4You traveled 8 miles by foot!"
  884. Name: distancefoot_4828
  885. DisplayName: 8 Mile
  886. Reward:
  887. Command:
  888. Execute: "minecraft:give PLAYER 301 1 0 {display:{Name:'§1Boots of the Traveler',Lore:['Earned by traveling 8 miles by foot.']}}"
  889.  
  890. # When a distance is traveled on a pig.
  891. DistancePig:
  892. 100:
  893. Goal: Travel 100 blocks by pig.
  894. Message: "&4You traveled 100 blocks on a pig!"
  895. Name: distancepig_100
  896. DisplayName: "This isn't a Horse..."
  897. 500:
  898. Goal: Travel 500 blocks by pig.
  899. Message: "&4You traveled 500 blocks on a pig!"
  900. Name: distancepig_500
  901. DisplayName: Carrot on a Stick Master
  902. 1000:
  903. Goal: Travel 1000 blocks by pig.
  904. Message: "&4You traveled 1000 blocks on a pig!"
  905. Name: distancepig_1000
  906. DisplayName: Lord of the Pigs
  907. Reward:
  908. Command:
  909. Execute: "minecraft:give PLAYER 391 1 0 {display:{Name:'§1Lord of the Pigs',Lore:['Earned by traveling 1000 blocks by pig.']}}"
  910.  
  911. # When a distance is traveled on a horse.
  912. DistanceHorse:
  913. 500:
  914. Goal: Travel 500 blocks by horse.
  915. Message: "&4You traveled 500 blocks on a horse!"
  916. Name: distancehorse_500
  917. DisplayName: Better Transportation
  918. 1000:
  919. Goal: Travel 1000 blocks by horse.
  920. Message: "&4You traveled 1000 blocks on a horse!"
  921. Name: distancehorse_1000
  922. DisplayName: Run for the Roses
  923. 5000:
  924. Goal: Travel 5000 blocks by horse.
  925. Message: "&4You traveled 5000 blocks on a horse!"
  926. Name: distancehorse_5000
  927. DisplayName: Equestrian
  928. Reward:
  929. Command:
  930. Execute: "minecraft:give PLAYER 260 1 0 {display:{Name:'§1Equestrian',Lore:['Earned by traveling 5000 blocks by horse.']}}"
  931.  
  932. # When a distance is traveled in a minecart.
  933. DistanceMinecart:
  934. 100:
  935. Goal: Travel 100 meters by minecart.
  936. Message: "&4You traveled 100 meters in a minecart!"
  937. Name: distanceminecart_100
  938. DisplayName: Quick Ride
  939. 1609:
  940. Goal: Travel 1 mile by minecart.
  941. Message: "&4You traveled 1 mile in a minecart!"
  942. Name: distanceminecart_1609
  943. DisplayName: On A Rail
  944. Reward:
  945. Command:
  946. Execute: "minecraft:give PLAYER 328 1 0 {display:{Name:'§1On A Rail',Lore:['Earned by traveling 1 mile by minecart.']}}"
  947.  
  948. # When a distance is traveled in a boat.
  949. DistanceBoat:
  950. 100:
  951. Goal: Travel 100 meters by boat.
  952. Message: "&4You traveled 100 meters in a boat!"
  953. Name: distanceboat_100
  954. DisplayName: Boater
  955. 500:
  956. Goal: Travel 500 meters by boat.
  957. Message: "&4You traveled 500 meters in a boat!"
  958. Name: distanceboat_500
  959. DisplayName: Great Sailor
  960. 1000:
  961. Goal: Travel 1 kilometer by boat.
  962. Message: "&4You traveled 1 kilometer in a boat!"
  963. Name: distanceboat_1000
  964. DisplayName: Pirate
  965. Reward:
  966. Command:
  967. Execute: "minecraft:give PLAYER 333 1 0 {display:{Name:'§1Pirate Ship',Lore:['Earned by traveling 1 kilometer by boat.']}}"
  968.  
  969. # When a distance is traveled with elytra.
  970. # Ignored on Minecraft versions prior to 1.9, add it to DisabledCategories list.
  971. DistanceGliding:
  972. 100:
  973. Goal: Travel 100 meters with an elytra.
  974. Message: "&4You traveled 100 blocks with elytra!"
  975. Name: distancegliding_100
  976. DisplayName: I Believe I Can Fly
  977. 500:
  978. Goal: Travel 500 meters with an elytra.
  979. Message: "&4You traveled 500 blocks with elytra!"
  980. Name: distancegliding_500
  981. DisplayName: Experienced Pilot
  982. 1000:
  983. Goal: Travel 1000 meters with an elytra.
  984. Message: "&4You traveled 1000 blocks with elytra!"
  985. Name: distancegliding_1000
  986. DisplayName: Angel
  987. Reward:
  988. Command:
  989. Execute: "minecraft:give PLAYER 334 1 0 {display:{Name:'§1Angel's Wing',Lore:['Earned by traveling 1 kilometer by elytra.']}}"
  990.  
  991. # When a distance is traveled on a llama.
  992. # Ignored on Minecraft versions prior to 1.11, add it to DisabledCategories list.
  993. DistanceLlama:
  994. 10:
  995. Goal: Travel 10 blocks by llama.
  996. Message: "&4You traveled 10 blocks on a llama!"
  997. Name: distancellama_10
  998. DisplayName: Slow Travels
  999. 50:
  1000. Goal: Travel 50 blocks by llama.
  1001. Message: "&4You traveled 50 blocks on a llama!"
  1002. Name: distancellama_50
  1003. DisplayName: Frustrating Movement
  1004. 100:
  1005. Goal: Travel 100 blocks by llama.
  1006. Message: "&4You traveled 100 blocks on a llama!"
  1007. Name: distancellama_100
  1008. DisplayName: Spit Rider
  1009. Reward:
  1010. Command:
  1011. Execute: "minecraft:give PLAYER 171 1 7 {display:{Name:'§1Spit Rider',Lore:['Earned by riding a llama for 100 meters.']}}"
  1012.  
  1013. # When an item is dropped on the ground.
  1014. ItemDrops:
  1015. 1728:
  1016. Goal: Drop an entire chest worth of items.
  1017. Message: "&4You dropped an entire chest worth of items!"
  1018. Name: itemdrops_1728
  1019. DisplayName: Polluter
  1020.  
  1021. # When an item is picked up from the ground.
  1022. ItemPickups:
  1023. 10000:
  1024. Goal: Pick up 10,000 items.
  1025. Message: "&4You picked up 10,000 items!"
  1026. Name: itempickups_10000
  1027. DisplayName: Environmentalist
  1028.  
  1029. # When soil is plowed with a hoe.
  1030. HoePlowings:
  1031. 100:
  1032. Goal: Plow the ground 100 times.
  1033. Message: "&4You plowed the ground to plant crops 100 times!"
  1034. Name: hoeplowings_100
  1035. DisplayName: Farmer
  1036.  
  1037. # When bone meal is used to fertilise plants.
  1038. Fertilising:
  1039. 100:
  1040. Goal: Fertilize plants 100 times.
  1041. Message: "&4You used bonemeal on plants 100 times!"
  1042. Name: fertilising_100
  1043. DisplayName: Gardener
  1044.  
  1045. # When an animal is tamed.
  1046. Taming:
  1047. 1:
  1048. Goal: Tame 1 animals.
  1049. Message: "&4You tamed 1 animal!"
  1050. Name: taming_1
  1051. DisplayName: Tamer
  1052. 5:
  1053. Goal: Tame 5 animals.
  1054. Message: "&4You tamed 5 animals!"
  1055. Name: taming_5
  1056. DisplayName: Pet Owner
  1057. 10:
  1058. Goal: Tame 10 animals.
  1059. Message: "&4You tamed 10 animals!"
  1060. Name: taming_10
  1061. DisplayName: Animal Lover
  1062. Reward:
  1063. Command:
  1064. Execute: "minecraft:give PLAYER 420 1 0 {display:{Name:'§1Animal Lover',Lore:['Earned by taming 10 animals.']}}"
  1065.  
  1066. # When animals breed (specify an entity name, lower case).
  1067. Breeding:
  1068. sheep:
  1069. 10:
  1070. Goal: Breed 10 sheep.
  1071. Message: "&4You bred 10 sheep!"
  1072. Name: breeding_10_sheep
  1073. DisplayName: Sheep Breeder
  1074. 25:
  1075. Goal: Breed 25 sheep.
  1076. Message: "&4You bred 25 sheep!"
  1077. Name: breeding_25_sheep
  1078. DisplayName: Sheep Rancher
  1079. cow:
  1080. 10:
  1081. Goal: Breed 10 cows.
  1082. Message: "&4You bred 10 cows!"
  1083. Name: breeding_10_cows
  1084. DisplayName: Cow Breeder
  1085. 25:
  1086. Goal: Breed 25 cows.
  1087. Message: "&4You bred 25 cows!"
  1088. Name: breeding_25_cows
  1089. DisplayName: Cow Rancher
  1090. pig:
  1091. 10:
  1092. Goal: Breed 10 pigs.
  1093. Message: "&4You bred 10 pigs!"
  1094. Name: breeding_10_pigs
  1095. DisplayName: Pig Breeder
  1096. 25:
  1097. Goal: Breed 25 pigs.
  1098. Message: "&4You bred 25 pigs!"
  1099. Name: breeding_25_pigs
  1100. DisplayName: Pig Rancher
  1101. chicken:
  1102. 10:
  1103. Goal: Breed 10 chickens.
  1104. Message: "&4You bred 10 chickens!"
  1105. Name: breeding_10_chickens
  1106. DisplayName: Chicken Breeder
  1107. 25:
  1108. Goal: Breed 25 rabbits.
  1109. Message: "&4You bred 25 chickens!"
  1110. Name: breeding_25_chickens
  1111. DisplayName: Chicken Rancher
  1112. rabbit:
  1113. 10:
  1114. Goal: Breed 10 rabbits.
  1115. Message: "&4You bred 10 rabbits!"
  1116. Name: breeding_10_rabbits
  1117. DisplayName: Rabbit Breeder
  1118. 25:
  1119. Goal: Breed 25 rabbits.
  1120. Message: "&4You bred 25 rabbit!"
  1121. Name: breeding_25_rabbits
  1122. DisplayName: Rabbit Rancher
  1123.  
  1124. # When a potion is brewed.
  1125. Brewing:
  1126. 25:
  1127. Goal: Brew 25 potions.
  1128. Message: "&4You concocted 25 potions!"
  1129. Name: brewing_25
  1130. DisplayName: Strange Brews
  1131. 50:
  1132. Goal: Brew 50 potions.
  1133. Message: "&4You concocted 50 potions!"
  1134. Name: brewing_50
  1135. DisplayName: Brewing Enthusiast
  1136. 100:
  1137. Goal: Brew 100 potions.
  1138. Message: "&4You concocted 100 potions!"
  1139. Name: brewing_100
  1140. DisplayName: Alchemist
  1141. Reward:
  1142. Command:
  1143. Execute: "minecraft:give PLAYER 373 1 0 {display:{Name:'§1Filled Bottle',Lore:['Earned by brewing 100 potions.']}}"
  1144.  
  1145. # When a firework is launched.
  1146. Fireworks:
  1147. 50:
  1148. Goal: Launch 50 fireworks.
  1149. Message: "&4You launched 50 fireworks!"
  1150. Name: fireworks_50
  1151. DisplayName: Pretty Lights
  1152. 100:
  1153. Goal: Launch 100 fireworks.
  1154. Message: "&4You launched 100 fireworks!"
  1155. Name: fireworks_100
  1156. DisplayName: Pyrotechnist
  1157. Reward:
  1158. Command:
  1159. Execute: "minecraft:give PLAYER 289 1 0 {display:{Name:'§1Pyrotechnist',Lore:['Earned by launching 100 fireworks.']}}"
  1160.  
  1161. # When a music disc is played.
  1162. MusicDiscs:
  1163. 1:
  1164. Goal: Play a music disc.
  1165. Message: "&4You played 1 music disc!"
  1166. Name: musicdiscs_1
  1167. DisplayName: Easy Listening
  1168. 5:
  1169. Goal: Play 5 music discs.
  1170. Message: "&4You played 5 music discs!"
  1171. Name: musicdiscs_5
  1172. DisplayName: Music To My Ears
  1173. 10:
  1174. Goal: Play 10 music discs.
  1175. Message: "&4You played 10 music discs!"
  1176. Name: musicdiscs_10
  1177. DisplayName: DJ
  1178. Reward:
  1179. Command:
  1180. Execute: "minecraft:give PLAYER 25 1 0 {display:{Name:'§1Speaker',Lore:['Earned by playing 10 music discs.']}}"
  1181.  
  1182. # When a player teleports with an enderpearl.
  1183. EnderPearls:
  1184. 100:
  1185. Message: "&4You teleported 100 times with ender pearls!"
  1186. Name: enderpearls_100
  1187. DisplayName: How Did I Get Here?
  1188. 500:
  1189. Message: "&4You teleported 500 times with ender pearls!"
  1190. Name: enderpearls_500
  1191. DisplayName: Teleporter
  1192. 1000:
  1193. Message: "&4You teleported 1000 times with ender pearls!"
  1194. Name: enderpearls_1000
  1195. DisplayName: You Can't See Me
  1196. Reward:
  1197. Command:
  1198. Execute: "minecraft:give PLAYER 381 1 0 {display:{Name:'§1Teleporter',Lore:['Earned by teleporting 1000 times with ender pearls.']}}"
  1199.  
  1200. # When a player enters a specific command (specify command prefixes in lower case without initial slash).
  1201. # For instance a command /awf add world from the AntiWorldFly plugin matches with subcategory 'awf add'.
  1202. # Aliases of a given command will also be taken into account.
  1203. PlayerCommands:
  1204. home:
  1205. 1000:
  1206. Goal: Go home frequently.
  1207. Message: "&4You went home 1000 times!"
  1208. Name: playercommand_home_1000
  1209. DisplayName: Homebody
  1210. Reward:
  1211. Command:
  1212. Execute: "minecraft:give PLAYER 355 1 0 {display:{Name:'§1Homebody',Lore:['Earned by teleporting home 1000 times.']}}"
  1213. warp:
  1214. 50:
  1215. Goal: Visit some warps.
  1216. Message: "&4You visited 50 warps!"
  1217. Name: playercommand_warp_50
  1218. DisplayName: Visitor
  1219. 100:
  1220. Goal: Visit 100 warps.
  1221. Message: "&4You visited 100 warps!"
  1222. Name: playercommand_warp_100
  1223. DisplayName: Warped
  1224. bal:
  1225. 50:
  1226. Goal: Keep track of your money.
  1227. Message: "&4You checked your balance 50 times!"
  1228. Name: playercommand_bal_50
  1229. DisplayName: Balanced
  1230. 100:
  1231. Goal: Check your balance 100 times.
  1232. Message: "&4You checked your balance 100 times!"
  1233. Name: playercommand_bal_100
  1234. DisplayName: Money Conscious
  1235.  
  1236. #===========================OOO=OOO===========================#
  1237. # VI-------------------------------------------------------VI #
  1238. # | Command-based achievements | #
  1239. # 6---------------------------------------------------------6 #
  1240. #===========================ooo=ooo===========================#
  1241.  
  1242. # Let achievement commands be given several times.
  1243. MultiCommand: true
  1244.  
  1245. # A player with achievement.give (or the console) can use /aach give yourAch1 PLAYER to give
  1246. # yourAch1 achievement to PLAYER. The /aach give command does NOT work with other achievements.
  1247. # Want to add: Execute: {give general event tag} ???? need feedback - Outback
  1248. Commands:
  1249. eventwinner:
  1250. Goal: Win a server-run event.
  1251. Message: "&4You won an event!"
  1252. Name: eventwinner
  1253. DisplayName: Winner Winner Chicken Dinner!
  1254. Reward:
  1255. Experience: 100
  1256. Command:
  1257. Execute: "lp user PLAYER permission set deluxetags.tag.Event"
  1258. bingowinner:
  1259. Goal: Win a bingo event.
  1260. Message: "&4You won bingo!"
  1261. Name: bingowinner
  1262. DisplayName: Bingo Bango Bongo!
  1263. Reward:
  1264. Experience: 100
  1265. Command:
  1266. Execute: "lp user PLAYER permission set deluxetags.tag.Bingo"
  1267. speedwinner:
  1268. Goal: Win a Speed Build event.
  1269. Message: "&4You won a Speed build event!"
  1270. Name: speedwinner
  1271. DisplayName: Speed Build Winner!
  1272. Reward:
  1273. Experience: 100
  1274. Command:
  1275. Execute: "lp user PLAYER permission set deluxetags.tag.SpeedBuild"
  1276. writerwinner:
  1277. Goal: Win a writing event.
  1278. Message: "&4You won a writing event!"
  1279. Name: writerwinner
  1280. DisplayName: Writer!
  1281. Reward:
  1282. Experience: 100
  1283. Command:
  1284. Execute: "lp user PLAYER permission set deluxetags.tag.Writer"
  1285.  
  1286. #===========================OOOOOOO===========================#
  1287. # VII-----------------------------------------------------VII #
  1288. # | Disabled Achievements | #
  1289. # 7---------------------------------------------------------7 #
  1290. #===========================ooooooo===========================#
  1291.  
  1292. # When a cow is milked.
  1293. Milk:
  1294.  
  1295. # When a bucket is filled with lava.
  1296. LavaBuckets:
  1297.  
  1298. # When a player gives a pet to another player (requires Pet Master plugin version 1.4 or above).
  1299. PetMasterGive:
  1300.  
  1301. # When a player receives a pet from another player (requires Pet Master plugin version 1.4 or above).
  1302. PetMasterReceive:
  1303.  
  1304. # When an item is smelt in a furnace.
  1305. Smelting:
  1306.  
  1307. # When a snowball is thrown.
  1308. Snowballs:
  1309.  
  1310. # When an egg is thrown.
  1311. Eggs:
  1312.  
  1313. # When the command /aach add is called for this category.
  1314. # Not sure how this works, so disabled - Outback
  1315. Custom:
  1316. # votes:
  1317. # 500:
  1318. # Goal: Vote 500 times for the server
  1319. # Message: "&4You voted 500 times for the server!"
  1320. # Name: customs_votes_500
  1321. # DisplayName: Biggest Fan
  1322. # Reward:
  1323. # Experience: 100
  1324.  
  1325. #===========================OOOOOOO===========================#
  1326. # VIII---------------------------------------------------VIII #
  1327. # | Parameters in future plugin versions will appear here | #
  1328. # 8---------------------------------------------------------8 #
  1329. #===========================ooooooo===========================#
Add Comment
Please, Sign In to add comment