Advertisement
Guest User

Untitled

a guest
May 12th, 2016
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.53 KB | None | 0 0
  1. #==============================O==============================#
  2. # I---------------------------------------------------------I #
  3. # | Advanced Achievements 2.5.3 configuration - Readme | #
  4. # 1---------------------------------------------------------1 #
  5. #==============================o==============================#
  6.  
  7. # You can use Minecraft chat colours in Message/Name, but include '' around the whole text: '&4Colour'.
  8. # When using colours, you must also double apostrophes: '&2I''ve doubled apostrophes!'.
  9. # In command rewards, PLAYER designates the name of the player who got the achievement.
  10. # Only spaces, no tabs. Don't forget the indents, plugin won't work otherwise!
  11. # To check your file, use: yaml-online-parser.appspot.com
  12. # Do NOT delete any sections in the configuration file.
  13. # Possible items for rewards/Crafts/Places/Breaks: hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
  14. # Possible mobs for the Kills section: hub.spigotmc.org/javadocs/bukkit/org/bukkit/entity/EntityType.html
  15. # Default config.yml file: github.com/PyvesB/AdvancedAchievements/blob/master/src/main/resources/config.yml
  16.  
  17. #=============================O=O=============================#
  18. # II-------------------------------------------------------II #
  19. # | General settings | #
  20. # 2---------------------------------------------------------2 #
  21. #=============================o=o=============================#
  22.  
  23. # Time in seconds between each /aach book.
  24. TimeBook: 900
  25.  
  26. # Time in seconds between each /aach list.
  27. TimeList: 0
  28.  
  29. # Check for update on plugin launch and notify when an OP joins the game.
  30. CheckForUpdate: true
  31.  
  32. # Set to true to activate firework effects when a player receives an achievement.
  33. Firework: false
  34.  
  35. # Choose BALL_LARGE, BALL, BURST, CREEPER or STAR.
  36. FireworkStyle: BALL
  37.  
  38. # Number of players displayed on /aach top command.
  39. TopList: 5
  40.  
  41. # Set to true to activate particle effects when receiving book and for players in top list.
  42. AdditionalEffects: true
  43.  
  44. # Set to true to activate sound effects when receiving book and for players in top list.
  45. Sound: true
  46.  
  47. # Set the icon of the plugin (default: shamrock, "\u2618").
  48. Icon: "\u2618"
  49.  
  50. # Set the color of the plugin (default: 5, dark purple).
  51. Color: '5'
  52.  
  53. # Notify other connected players when an achievement is received.
  54. ChatNotify: false
  55.  
  56. # Separator between name, description and date on a book page.
  57. BookSeparator: ''
  58.  
  59. # Separator between name and level in /aach list.
  60. ListItemSeparator: " \u2192 "
  61.  
  62. # Set the format of the achievement name in /aach list (default: '%ICON% %NAME% %ICON%').
  63. ListAchievementFormat: '%ICON% %NAME% %ICON%'
  64.  
  65. # Stop stats from increasing when player in creative mode (except Connections and PlayedTime).
  66. RestrictCreative: false
  67.  
  68. # Stop stats from increasing when player in a specific world (delete the [] before using).
  69. ExcludedWorlds: []
  70. # - yourWorld1
  71. # - yourWorld2
  72.  
  73. # Don't show these categories in the achievement GUI or in the stats output (delete the [] before using).
  74. # Also prevent obtaining achievements for these categories and prevent stats from increasing.
  75. # If changed, do a full server reload, and not just /aach reload.
  76. DisabledCategories: []
  77. # - Beds
  78. # - ItemBreaks
  79. # - Crafts
  80.  
  81. # Obfuscate achievements that have not yet been received in /aach list.
  82. ObfuscateNotReceived: true
  83.  
  84. # Hide categories with no achievements yet received in /aach list.
  85. HideNotReceivedCategories: false
  86.  
  87. # Hide the reward display in /aach list.
  88. HideRewardDisplayInList: false
  89.  
  90. # Display achievement name and description as screen titles.
  91. TitleScreen: false
  92.  
  93. #=============================OOO=============================#
  94. # III-----------------------------------------------------III #
  95. # | Database settings | #
  96. # 3---------------------------------------------------------3 #
  97. #=============================ooo=============================#
  98.  
  99. # Make a daily backup of your local database (if sqlite).
  100. DatabaseBackup: true
  101.  
  102. # Database type, sqlite or mysql.
  103. DatabaseType: mysql
  104.  
  105. # Settings to link with MySQL database (ignore if sqlite).
  106. MYSQL:
  107. Database: 'jdbc:mysql://localhost:3306/mysql'
  108. User: root
  109. Password: dynmap
  110.  
  111. #============================OO=OO============================#
  112. # IV-------------------------------------------------------IV #
  113. # | Performance settings | #
  114. # 4---------------------------------------------------------4 #
  115. #============================oo=oo============================#
  116.  
  117. # DO NOT CHANGE THE FOLLOWING UNLESS YOU ARE AN EXPERIENCED USER. The intervals are in seconds.
  118. # If any of the performance settings are changed, do a full server reload, and not just /aach reload.
  119. # Frequency of play time checks for players. Smaller values give more precision but more CPU usage.
  120. PlaytimeTaskInterval: 200
  121.  
  122. # Calculates distance traveled by players. Smaller values give more precision but more CPU usage.
  123. DistanceTaskInterval: 6
  124.  
  125. # Frequency of some statistics writes to the database.
  126. PooledRequestsTaskInterval: 60
  127.  
  128. # Enable multithreading for database write operations.
  129. AsyncPooledRequestsSender: true
  130.  
  131. #============================OOOOO============================#
  132. # V---------------------------------------------------------V #
  133. # | Action achievements | #
  134. # 5---------------------------------------------------------5 #
  135. #============================ooooo============================#
  136.  
  137. # When a player connects during the day.
  138. Connections:
  139. '1':
  140. Message: You connected to our server for the first time!
  141. Name: Good Choice
  142. Reward:
  143. Money: 100
  144. Item: ironongot 8
  145.  
  146. # When a specific block is placed (specify material name, lower case).
  147. Places:
  148. stone:
  149. '100':
  150. Message: '&4One hundred placed stones!'
  151. Name: Stone Addict
  152. Reward:
  153. Command: give PLAYER stone 32
  154. '1000':
  155. Message: '&4One thousand placed stones!'
  156. Name: Stone Lover
  157. Reward:
  158. Command: give PLAYER stone 64
  159. '10000':
  160. Message: '&4Ten thousand placed stones!'
  161. Name: Stone Lord
  162. Reward:
  163. Command: give PLAYER stone 64
  164. '100000':
  165. Message: '&4One hundred thousand placed stones!'
  166. Name: Stone Overlord
  167. Reward:
  168. Command: give PLAYER stone 128
  169. '1000000':
  170. Message: '&4One million placed stones!'
  171. Name: Stone God
  172. Reward:
  173. Command: give PLAYER stone 256
  174.  
  175. # When a specific block is broken (specify material name, lower case).
  176. # Below, the notation log:1 means log item with metadata 1.
  177. Breaks:
  178. stone:
  179. '1':
  180. Message: '&1The first time you went mining!'
  181. Name: Cobble!
  182. Reward:
  183. Command: give PLAYER 49 5; give PLAYER 89 5
  184. '100':
  185. Message: '&1You went mining!'
  186. Name: More Cobble!
  187. Reward:
  188. Command: give PLAYER 49 10
  189. '1000':
  190. Message: '&1You went mining!'
  191. Name: More and More Cobble!
  192. Reward:
  193. Command: give PLAYER 49 15
  194. '10000':
  195. Message: '&1You went mining!'
  196. Name: All This Cobble!
  197. Reward:
  198. Command: give PLAYER 49 20
  199. log:1:
  200. '100':
  201. Message: '&2You have cut dark oak 100 logs!'
  202. Name: Dark Oak Cutter
  203. Reward:
  204. Command: give PLAYER log:1 10
  205. '1000':
  206. Message: '&2You have cut dark oak 1000 logs!'
  207. Name: Dark Oak Cutter
  208. Reward:
  209. Command: give PLAYER log:1 20
  210. # When a specific mob is killed (specify an entity name or poweredcreeper or player, lower case).
  211. Kills:
  212. zombie:
  213. '1':
  214. Message: '&8The first time you killed a zombie!'
  215. Name: The Walking Dead
  216. Reward:
  217. Money: 10
  218. Item: ironongot 1
  219. '100':
  220. Message: '&8You killed a zombie 100 times!'
  221. Name: The Walking Dead 100
  222. Reward:
  223. Money: 10
  224. Item: ironongot 4
  225. '1000':
  226. Message: '&8You killed a zombie 1000 times!'
  227. Name: The Walking Dead 1000
  228. Reward:
  229. Money: 100
  230. Item: ironongot 8
  231.  
  232.  
  233. # When a specific item is crafted (specify material name, lower case).
  234. Crafts:
  235. diamond_sword:
  236. '1':
  237. Message: The first time you crafted a blade!
  238. Name: Blacksmith Apprentice
  239. Reward:
  240. Money: 2
  241.  
  242. # When the player dies.
  243. Deaths:
  244. '1':
  245. Message: The first time you died!
  246. Name: Rest in Peace
  247. Reward:
  248. Money: 100
  249. Item: ironongot 8
  250. # When an arrow is shot.
  251. Arrows:
  252. '50':
  253. Message: '50 arrows shot!'
  254. Name: Arrows Around the Place
  255. Reward:
  256. Money: 100
  257. Item: ironongot 8
  258.  
  259. # When a snowball is thrown.
  260. Snowballs:
  261. '1000':
  262. Message: '1000 snowballs thrown. That''s the spirit!'
  263. Name: Winter Addict
  264. Reward:
  265. Money: 100
  266. Item: ironongot 8
  267. # When an egg is thrown.
  268. Eggs:
  269. '1000':
  270. Message: '1000 eggs thrown!'
  271. Name: Omelet Addict
  272. Reward:
  273. Money: 100
  274. Item: ironongot 8
  275.  
  276. # When a fish is caught.
  277. Fish:
  278. '1':
  279. Message: The first time you caught a fish!
  280. Name: Time for Fish and Chips
  281.  
  282. # When a tool/armor/weapon is broken.
  283. ItemBreaks:
  284. '1':
  285. Message: You broke your favorite tool!
  286. Name: '&4Clumsy Guy'
  287.  
  288. # When an item is eaten.
  289. EatenItems:
  290. '1':
  291. Message: Just had a snack!
  292. Name: First Snack
  293.  
  294. # When a sheep is sheared.
  295. Shear:
  296. '100':
  297. Message: 100 sheep sheared!
  298. Name: '&1Wool Addict'
  299. Reward:
  300. Money: 100
  301. Item: ironongot 8
  302. # When a cow is milked.
  303. Milk:
  304. '1':
  305. Message: Just milked a cow!
  306. Name: First Milk
  307.  
  308. # When a trade with a villager is made.
  309. Trades:
  310. '1':
  311. Message: Doing business with your first villager!
  312. Name: First Trade
  313.  
  314. # When an anvil is used.
  315. AnvilsUsed:
  316. '1':
  317. Message: You just repaired your first item!
  318. Name: First Repair
  319.  
  320. # When an enchantment is performed.
  321. Enchantments:
  322. '5':
  323. Message: 5 objects enchanted!
  324. Name: '&5Wizard'
  325.  
  326. # When a bed is entered.
  327. Beds:
  328. '5':
  329. Message: You entered a bed 5 times!
  330. Name: Sleepy guy
  331.  
  332. # Maximum level reached.
  333. MaxLevel:
  334. '10':
  335. Message: Level 10 reached!
  336. Name: '&4Rookie'
  337.  
  338. # When a potion is consumed.
  339. ConsumedPotions:
  340. '100':
  341. Message: Drinking weird beverages all the time...
  342. Name: Alcoholic
  343.  
  344. # Amount of time played on the server (in hours, use integers).
  345. PlayedTime:
  346. '1':
  347. Message: You played during one hour on the server!
  348. Name: First Hour
  349.  
  350. # When a distance is traveled by foot.
  351. DistanceFoot:
  352. '1000':
  353. Message: You traveled 1000 blocks by foot!
  354. Name: Big Walker
  355.  
  356. # When a distance is traveled on a pig.
  357. DistancePig:
  358. '100':
  359. Message: You traveled 100 blocks on a pig!
  360. Name: Carrot on a Stick Master
  361.  
  362. # When a distance is traveled on a horse.
  363. DistanceHorse:
  364. '500':
  365. Message: You traveled 500 blocks on a horse!
  366. Name: The Avener
  367.  
  368. # When a distance is traveled in a minecart.
  369. DistanceMinecart:
  370. '100':
  371. Message: You traveled 100 blocks in a minecart!
  372. Name: Carting Fan
  373.  
  374. # When a distance is traveled in a boat.
  375. DistanceBoat:
  376. '200':
  377. Message: You traveled 200 blocks in a boat!
  378. Name: Great Sailor
  379.  
  380. # When a distance is traveled with elytra.
  381. # (ignored on Minecraft versions prior to 1.9)
  382. DistanceGliding:
  383. '100':
  384. Message: You traveled 100 blocks with elytra!
  385. Name: Angel
  386.  
  387. # When an item is dropped on the ground.
  388. ItemDrops:
  389. '15':
  390. Message: You're killing the planet!
  391. Name: Polluter
  392.  
  393. # When soil is plowed with a hoe.
  394. HoePlowings:
  395. '10':
  396. Message: You plowed the ground 10 times!
  397. Name: Farmer
  398. Reward:
  399. Item: cookie 15
  400.  
  401. # When bone meal is used to fertilise plants.
  402. Fertilising:
  403. '15':
  404. Message: You used bone meal on plants 15 times!
  405. Name: Gardener
  406.  
  407. # When an animal is tamed.
  408. Taming:
  409. '1':
  410. Message: You tamed your first animal!
  411. Name: Tamer
  412.  
  413. # When a potion is brewed.
  414. Brewing:
  415. '1':
  416. Message: You brewed your first potion!
  417. Name: Alchemist
  418.  
  419. # When a firework is launched.
  420. Fireworks:
  421. '10':
  422. Message: You launched 10 fireworks!
  423. Name: Pyrotechnist
  424.  
  425. # When a music disc is played.
  426. MusicDiscs:
  427. '1':
  428. Message: One jukebox used!
  429. Name: DJ
  430.  
  431. # When a player teleports with an enderpearl.
  432. EnderPearls:
  433. '10':
  434. Message: 10 teleportations with ender pearls!
  435. Name: Teleport Man
  436.  
  437. #===========================OOO=OOO===========================#
  438. # VI-------------------------------------------------------VI #
  439. # | Command achievements | #
  440. # 6---------------------------------------------------------6 #
  441. #===========================ooo=ooo===========================#
  442.  
  443. # Let achievement commands be given several times.
  444. MultiCommand: true
  445.  
  446. # A player with achievement.give (or the console) can use /aach give yourAch1 PLAYER to give
  447. # yourAch1 achievement to PLAYER. The /aach give command does NOT work with other achievements.
  448. Commands:
  449. yourAch1:
  450. Message: You took part in the special event!
  451. Name: Special Event Achievement!
  452.  
  453. #===========================OOOOOOO===========================#
  454. # VII-----------------------------------------------------VII #
  455. # | Parameters to appear in future versions | #
  456. # 7---------------------------------------------------------7 #
  457. #===========================ooooooo===========================#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement