Advertisement
Guest User

Untitled

a guest
Feb 21st, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.45 KB | None | 0 0
  1. #==============================O==============================#
  2. # I---------------------------------------------------------I #
  3. # | Advanced Achievements 2.3.3 configuration - Readme | #
  4. # 1---------------------------------------------------------1 #
  5. #==============================o==============================#
  6.  
  7. # You can use Minecraft chat colours in messages and names, but include ' ' around the whole text.
  8. # If you want to use a ' in a text, write two ' instead, and include additional ' ' around the whole text.
  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. # Available mobs for the Kills section: hub.spigotmc.org/javadocs/bukkit/org/bukkit/entity/EntityType.html
  13. # Available items for rewards/Crafts/Places/Breaks: hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
  14. # Default file: dev.bukkit.org/bukkit-plugins/advanced-achievements/pages/configuration/
  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.
  23. TimeBook: 900
  24.  
  25. # Time in seconds between each /aach list.
  26. TimeList: 0
  27.  
  28. # Check for update on plugin launch and notify when an OP joins the game.
  29. CheckForUpdate: true
  30.  
  31. # Set to true to activate firework effects when a player receives an achievement.
  32. Firework: true
  33.  
  34. # Choose BALL_LARGE, BALL, BURST, CREEPER or STAR.
  35. FireworkStyle: BALL_LARGE
  36.  
  37. # Set to true to activate particle effects when receiving book and when player in top list.
  38. AdditionalEffects: true
  39.  
  40. # Set to true to activate sound effects when receiving book and when player in top list.
  41. Sound: true
  42.  
  43. # Set to true if you are using a version of Vault prior to 1.4.
  44. RetroVault: false
  45.  
  46. # Set the icon of the plugin (default: shamrock, "\u2618").
  47. Icon: "\u2618"
  48.  
  49. # Set the color of the plugin (default: 5, dark purple).
  50. Color: '5'
  51.  
  52. # Notify other connected players when an achievement is received.
  53. ChatNotify: false
  54.  
  55. # Separator between name, description and date on a book page.
  56. BookSeparator: ''
  57.  
  58. # Stop stats from increasing when player in creative mode (except Connections and PlayedTime).
  59. RestrictCreative: false
  60.  
  61. # Stop stats from increasing when player in a specific world (delete the [] before using).
  62. ExcludedWorlds: []
  63. # - yourWorld1
  64. # - yourWorld2
  65.  
  66. # Number of players displayed on /aach top command.
  67. TopList: 5
  68.  
  69. # Obfuscate achievements that have not yet been received in /aach list.
  70. ObfuscateNotReceived: true
  71.  
  72. # Hide categories with no achievements yet received in /aach list.
  73. HideNotReceivedCategories: false
  74.  
  75. # Display achievement name and description as screen titles.
  76. TitleScreen: true
  77.  
  78. #=============================OOO=============================#
  79. # III-----------------------------------------------------III #
  80. # | Database settings | #
  81. # 3---------------------------------------------------------3 #
  82. #=============================ooo=============================#
  83.  
  84. # Make a daily backup of your local database.
  85. DatabaseBackup: true
  86.  
  87. # Database type, sqlite or mysql.
  88. DatabaseType: sqlite
  89.  
  90. # Settings to link with MySQL database (ignore if sqlite).
  91. MYSQL:
  92. Database: 'jdbc:mysql://localhost:3306/minecraft'
  93. User: root
  94. Password: root
  95.  
  96. #============================OO=OO============================#
  97. # IV-------------------------------------------------------IV #
  98. # | Performance settings | #
  99. # 4---------------------------------------------------------4 #
  100. #============================oo=oo============================#
  101.  
  102. # DO NOT CHANGE THE FOLLOWING UNLESS YOU ARE AN EXPERIENCED USER. The intervals are in seconds.
  103. # Frequency of play time checks for players. Smaller values give more precision but more CPU usage.
  104. PlaytimeTaskInterval: 150
  105.  
  106. # Calculates distance traveled by players. Smaller values give more precision but more CPU usage.
  107. DistanceTaskInterval: 5
  108.  
  109. # Frequency of some statistics writes to the database.
  110. PooledRequestsTaskInterval: 60
  111.  
  112. # Enable multithreading for most database write operations.
  113. AsyncPooledRequestsSender: true
  114.  
  115. #============================OOOOO============================#
  116. # V---------------------------------------------------------V #
  117. # | Action achievements | #
  118. # 5---------------------------------------------------------5 #
  119. #============================ooooo============================#
  120.  
  121. # When a player connects during the day.
  122. Connections:
  123. '1':
  124. Message: You connected to our server for the first time!
  125. Name: Good Choice
  126.  
  127. # When a specific block is placed (specify block name, lower case).
  128. Places:
  129. stone:
  130. '100':
  131. Message: '&4One hundred placed stones!'
  132. Name: Stone Addict
  133. '1000':
  134. Message: '&4One thousand placed stones!'
  135. Name: Stone God
  136.  
  137. # When a specific block is broken (specify block name, lower case).
  138. Breaks:
  139. stone:
  140. '1':
  141. Message: '&1The first time you went mining!'
  142. Name: Cobble!
  143. Reward:
  144. Command: give PLAYER 158 10; give PLAYER 126 5
  145. log:
  146. '100':
  147. Message: '&2You have cut 100 logs!'
  148. Name: Wood Cutter
  149.  
  150. # When a specific mob is killed (specify mob name or 'player', lower case).
  151. Kills:
  152. zombie:
  153. '1':
  154. Message: '&8The first time you killed a zombie!'
  155. Name: The Walking Dead
  156. Reward:
  157. Money: 1
  158. Item: diamond 1
  159.  
  160. # When a specific item is crafted (specify item name, lower case).
  161. Crafts:
  162. diamond_sword:
  163. '1':
  164. Message: The first time you crafted a blade!
  165. Name: Blacksmith Apprentice
  166. Reward:
  167. Money: 2
  168.  
  169. # When the player dies.
  170. Deaths:
  171. '1':
  172. Message: The first time you died!
  173. Name: Rest in Peace
  174.  
  175. # When an arrow is shot.
  176. Arrows:
  177. '50':
  178. Message: '50 arrows shot!'
  179. Name: Arrows Around the Place
  180.  
  181. # When a snowball is thrown.
  182. Snowballs:
  183. '1000':
  184. Message: '1000 snowballs thrown. That''s the spirit!'
  185. Name: Winter Addict
  186.  
  187. # When an egg is thrown.
  188. Eggs:
  189. '1000':
  190. Message: '1000 eggs thrown!'
  191. Name: Omelet Addict
  192.  
  193. # When a fish is caught.
  194. Fish:
  195. '1':
  196. Message: The first time you caught a fish!
  197. Name: Time for Fish and Chips
  198.  
  199. # When a tool/armor/weapon is broken.
  200. ItemBreaks:
  201. '1':
  202. Message: You broke your favorite tool!
  203. Name: '&4Clumsy Guy'
  204.  
  205. # When an item is eaten.
  206. EatenItems:
  207. '1':
  208. Message: Just had a snack!
  209. Name: First Snack
  210.  
  211. # When a sheep is sheared.
  212. Shear:
  213. '100':
  214. Message: 100 sheep sheared!
  215. Name: '&1Wool Addict'
  216.  
  217. # When a cow is milked.
  218. Milk:
  219. '1':
  220. Message: Just milked a cow!
  221. Name: First Milk
  222.  
  223. # When a trade with a villager is made.
  224. Trades:
  225. '1':
  226. Message: Doing business with your first villager!
  227. Name: First Trade
  228.  
  229. # When an anvil is used.
  230. AnvilsUsed:
  231. '1':
  232. Message: You just repaired your first item!
  233. Name: First Repair
  234.  
  235. # When an anvil is used.
  236. Enchantments:
  237. '5':
  238. Message: 5 objects enchanted!
  239. Name: '&5Wizard'
  240.  
  241. # When a bed is entered.
  242. Beds:
  243. '5':
  244. Message: You entered a bed 5 times!
  245. Name: Sleepy guy
  246.  
  247. # Maximum level reached.
  248. MaxLevel:
  249. '10':
  250. Message: Level 10 reached!
  251. Name: '&4Rookie'
  252.  
  253. # When a potion is consumed.
  254. ConsumedPotions:
  255. '100':
  256. Message: Drinking weird beverages all the time...
  257. Name: Alcoholic
  258.  
  259. # Amount of time played on the server (in hours, use integers).
  260. PlayedTime:
  261. '1':
  262. Message: You played during one hour on the server!
  263. Name: First Hour
  264.  
  265. # When a distance is traveled by foot.
  266. DistanceFoot:
  267. '1000':
  268. Message: You traveled 1000 blocks by foot!
  269. Name: Big Walker
  270.  
  271. # When a distance is traveled on a pig.
  272. DistancePig:
  273. '100':
  274. Message: You traveled 100 blocks on a pig!
  275. Name: Carrot on a Stick Master
  276.  
  277. # When a distance is traveled on a horse.
  278. DistanceHorse:
  279. '500':
  280. Message: You traveled 500 blocks on a horse!
  281. Name: The Avener
  282.  
  283. # When a distance is traveled in a minecart.
  284. DistanceMinecart:
  285. '100':
  286. Message: You traveled 100 blocks in a minecart!
  287. Name: Carting Fan
  288.  
  289. # When a distance is traveled in a boat.
  290. DistanceBoat:
  291. '200':
  292. Message: You traveled 200 blocks in a boat!
  293. Name: Great Sailor
  294.  
  295. # When an item is dropped on the ground.
  296. ItemDrops:
  297. '15':
  298. Message: You're killing the planet!
  299. Name: Polluter
  300.  
  301. # When soil is plowed with a hoe.
  302. HoePlowings:
  303. '10':
  304. Message: You plowed the ground 10 times!
  305. Name: Farmer
  306. Reward:
  307. Item: cookie 15
  308.  
  309. # When bone meal is used to fertilise plants.
  310. Fertilising:
  311. '15':
  312. Message: You used bone meal on plants 15 times!
  313. Name: Gardener
  314.  
  315. # When an animal is tamed.
  316. Taming:
  317. '1':
  318. Message: You tamed your first animal!
  319. Name: Tamer
  320.  
  321. # When a potion is brewed.
  322. Brewing:
  323. '1':
  324. Message: You brewed your first potion!
  325. Name: Alchemist
  326.  
  327. # When a firework is launched.
  328. Fireworks:
  329. '10':
  330. Message: You launched 10 fireworks!
  331. Name: Pyrotechnist
  332.  
  333. #===========================OOO=OOO===========================#
  334. # VI-------------------------------------------------------VI #
  335. # | Command achievements | #
  336. # 6---------------------------------------------------------6 #
  337. #===========================ooo=ooo===========================#
  338.  
  339. # Let achievement commands be given several times.
  340. MultiCommand: true
  341.  
  342. # A player with achievement.give (or the console) can use the /aach give yourAch1 playerName
  343. # to give yourAch1 achievement to playerName.
  344. Commands:
  345. yourAch1:
  346. Message: You took part in the special event!
  347. Name: Special Event Achievement!
  348.  
  349. #===========================OOOOOOO===========================#
  350. # VII-----------------------------------------------------VII #
  351. # | Parameters to appear in future version | #
  352. # 7---------------------------------------------------------7 #
  353. #===========================ooooooo===========================#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement