Advertisement
Guest User

Untitled

a guest
Jan 29th, 2016
393
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.63 KB | None | 0 0
  1. #==============================O==============================#
  2. # I---------------------------------------------------------I #
  3. # | Advanced Achievements 2.3.3 configuration - Readme | #
  4. # 1---------------------------------------------------------1 #
  5. #==============================o==============================#
  6. #Portuguese translation By RuntimeReviews
  7.  
  8. # You can use Minecraft chat colours in messages and names, but include ' ' around the whole text.
  9. # If you want to use a ' in a text, write two ' instead, and include additional ' ' around the whole text.
  10. # In command rewards, PLAYER designates the name of the player who got the achievement.
  11. # Only spaces, no tabs. Don't forget the indents, plugin won't work otherwise!
  12. # To check your file, use: yaml-online-parser.appspot.com
  13. # Available mobs for the Kills section: hub.spigotmc.org/javadocs/bukkit/org/bukkit/entity/EntityType.html
  14. # Available items for rewards/Crafts/Places/Breaks: hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
  15. # Default file: dev.bukkit.org/bukkit-plugins/advanced-achievements/pages/configuration/
  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: true
  34.  
  35. # Choose BALL_LARGE, BALL, BURST, CREEPER or STAR.
  36. FireworkStyle: BALL_LARGE
  37.  
  38. # Set to true to activate particle effects when receiving book and when player in top list.
  39. AdditionalEffects: true
  40.  
  41. # Set to true to activate sound effects when receiving book and when player in top list.
  42. Sound: true
  43.  
  44. # Set to true if you are using a version of Vault prior to 1.4.
  45. RetroVault: false
  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: 'e'
  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. # Stop stats from increasing when player in creative mode (except Connections and PlayedTime).
  60. RestrictCreative: false
  61.  
  62. # Stop stats from increasing when player in a specific world (delete the [] before using).
  63. ExcludedWorlds: []
  64. # - yourWorld1
  65. # - yourWorld2
  66.  
  67. # Number of players displayed on /aach top command.
  68. TopList: 5
  69.  
  70. # Obfuscate achievements that have not yet been received in /aach list.
  71. ObfuscateNotReceived: true
  72.  
  73. # Hide categories with no achievements yet received in /aach list.
  74. HideNotReceivedCategories: false
  75.  
  76. # Display achievement name and description as screen titles.
  77. TitleScreen: true
  78.  
  79. #=============================OOO=============================#
  80. # III-----------------------------------------------------III #
  81. # | Database settings | #
  82. # 3---------------------------------------------------------3 #
  83. #=============================ooo=============================#
  84.  
  85. # Make a daily backup of your local database.
  86. DatabaseBackup: true
  87.  
  88. # Database type, sqlite or mysql.
  89. DatabaseType: sqlite
  90.  
  91. # Settings to link with MySQL database (ignore if sqlite).
  92. MYSQL:
  93. Database: 'jdbc:mysql://localhost:3306/minecraft'
  94. User: root
  95. Password: root
  96.  
  97. #============================OO=OO============================#
  98. # IV-------------------------------------------------------IV #
  99. # | Performance settings | #
  100. # 4---------------------------------------------------------4 #
  101. #============================oo=oo============================#
  102.  
  103. # DO NOT CHANGE THE FOLLOWING UNLESS YOU ARE AN EXPERIENCED USER. The intervals are in seconds.
  104. # Frequency of play time checks for players. Smaller values give more precision but more CPU usage.
  105. PlaytimeTaskInterval: 150
  106.  
  107. # Calculates distance traveled by players. Smaller values give more precision but more CPU usage.
  108. DistanceTaskInterval: 5
  109.  
  110. # Frequency of some statistics writes to the database.
  111. PooledRequestsTaskInterval: 60
  112.  
  113. # Enable multithreading for most database write operations.
  114. AsyncPooledRequestsSender: true
  115.  
  116. #============================OOOOO============================#
  117. # V---------------------------------------------------------V #
  118. # | Action achievements | #
  119. # 5---------------------------------------------------------5 #
  120. #============================ooooo============================#
  121.  
  122. # When a player connects during the day.
  123. Connections:
  124. '1':
  125. Message: Você conectado ao nosso servidor pela primeira vez !
  126. Name: Boa Sorte
  127.  
  128. # When a specific block is placed (specify block name, lower case).
  129. Places:
  130. stone:
  131. '100':
  132. Message: '&100 pedras colocadas!'
  133. Name: Colocar Pedras
  134. '1000':
  135. Message: '&a1000 pedras colocadas'
  136. Name: Deus das Pedras
  137.  
  138. # When a specific block is broken (specify block name, lower case).
  139. Breaks:
  140. stone:
  141. '1':
  142. Message: '&aA Sua primeira vez na mineração!'
  143. Name: Pedregulho!
  144. Reward:
  145. Command: give PLAYER 50 64; give PLAYER 364 5
  146. log:
  147. '100':
  148. Message: '&aVocê cortou 100 madeiras!'
  149. Name: Lenhador
  150.  
  151. # When a specific mob is killed (specify mob name or 'player', lower case).
  152. Kills:
  153. zombie:
  154. '1':
  155. Message: '&aVocê Matou seu primeiro zombie'
  156. Name: The Walking Dead
  157. Reward:
  158. Money: 350
  159. Item: diamond 1
  160.  
  161. # When a specific item is crafted (specify item name, lower case).
  162. Crafts:
  163. diamond_sword:
  164. '1':
  165. Message: A primeira vez que você construiu uma lâmina!
  166. Name: ferreiro Aprendiz
  167. Reward:
  168. Money: 60
  169.  
  170. # When the player dies.
  171. Deaths:
  172. '1':
  173. Message: Sua Primeira Morte :(
  174. Name: Descance em paz
  175.  
  176. # When an arrow is shot.
  177. Arrows:
  178. '50':
  179. Message: 'Atirou 50 flechas'
  180. Name: Flechas
  181.  
  182. # When a snowball is thrown.
  183. Snowballs:
  184. '1000':
  185. Message: '1000 bolas de neve lançadas. Esse é o espírito!'
  186. Name: Inverno
  187.  
  188. # When an egg is thrown.
  189. Eggs:
  190. '1000':
  191. Message: '1000 Ovos Lançados'
  192. Name: Omelet Addict
  193.  
  194. # When a fish is caught.
  195. Fish:
  196. '1':
  197. Message: O primeiro peixe que você pescou
  198. Name: Peixes
  199.  
  200. # When a tool/armor/weapon is broken.
  201. ItemBreaks:
  202. '1':
  203. Message: Você quebrou sua ferramenta favorita !
  204. Name: '&4Despedida de Ferramenta'
  205.  
  206. # When an item is eaten.
  207. EatenItems:
  208. '1':
  209. Message: Apenas tivemos um lanche!
  210. Name: Primeiro Lanche
  211.  
  212. # When a sheep is sheared.
  213. Shear:
  214. '100':
  215. Message: 100 ovelhas tosquiadas !
  216. Name: '&aTosquiador de ovelhas'
  217.  
  218. # When a cow is milked.
  219. Milk:
  220. '1':
  221. Message: Apenas ordenhado uma vaca !
  222. Name: Primeiro leite
  223.  
  224. # When a trade with a villager is made.
  225. Trades:
  226. '1':
  227. Message: Fazendo negócios com a sua primeira aldeão!
  228. Name: Primeiro negocio!
  229.  
  230. # When an anvil is used.
  231. AnvilsUsed:
  232. '1':
  233. Message: Você reparou seu primeiro item
  234. Name: Primeira Reparação
  235.  
  236. # When an anvil is used.
  237. Enchantments:
  238. '5':
  239. Message: 5 Objetos Encantados
  240. Name: '&5Magico'
  241.  
  242. # When a bed is entered.
  243. Beds:
  244. '5':
  245. Message: Entrou na cama 5 vezes
  246. Name: Preguiçoso
  247.  
  248. # Maximum level reached.
  249. MaxLevel:
  250. '10':
  251. Message: Nível 10 atingido
  252. Name: '&4Rookie'
  253.  
  254. # When a potion is consumed.
  255. ConsumedPotions:
  256. '100':
  257. Message: A ingestão de bebidas estranhas o tempo todo ..
  258. Name: Alcolico
  259.  
  260. # Amount of time played on the server (in hours, use integers).
  261. PlayedTime:
  262. '1':
  263. Message: Você jogou durante uma hora no servidor !
  264. Name: Uma hora jogados
  265.  
  266. # When a distance is traveled by foot.
  267. DistanceFoot:
  268. '1000':
  269. Message: Você viajou 1.000 blocos a pé!
  270. Name: Viajante
  271.  
  272. # When a distance is traveled on a pig.
  273. DistancePig:
  274. '100':
  275. Message: Você viajou 100 blocos em um porco !
  276. Name: Porco tunado
  277.  
  278. # When a distance is traveled on a horse.
  279. DistanceHorse:
  280. '500':
  281. Message: Você viajou 500 blocos em um cavalo !
  282. Name: Cavalo Forte
  283.  
  284. # When a distance is traveled in a minecart.
  285. DistanceMinecart:
  286. '100':
  287. Message: Você viajou 100 blocos em um minecart !
  288. Name: Montanha russa
  289.  
  290. # When a distance is traveled in a boat.
  291. DistanceBoat:
  292. '200':
  293. Message: Você viajou 200 blocos em um barco !
  294. Name: Navegador
  295.  
  296. # When an item is dropped on the ground.
  297. ItemDrops:
  298. '15':
  299. Message: Você está matando o planeta! Poluidor
  300. Name: Poluidor
  301.  
  302. # When soil is plowed with a hoe.
  303. HoePlowings:
  304. '10':
  305. Message: Você Roçou a terra 10 vezes
  306. Name: Fazendeiro
  307. Reward:
  308. Item: cookie 15
  309.  
  310. # When bone meal is used to fertilise plants.
  311. Fertilising:
  312. '15':
  313. Message: Você usou farinha de ossos em plantas de 15 vezes!
  314. Name: Jardineiro
  315.  
  316. # When an animal is tamed.
  317. Taming:
  318. '1':
  319. Message: Você domesticou o seu primeiro animal !
  320. Name: Treinador
  321.  
  322. # When a potion is brewed.
  323. Brewing:
  324. '1':
  325. Message: Você fabricado sua primeira poção !
  326. Name: Macumbeiro
  327.  
  328. # When a firework is launched.
  329. Fireworks:
  330. '10':
  331. Message: Você lançou 10 fogos de artifício!
  332. Name: Copa do Mundo
  333.  
  334. #===========================OOO=OOO===========================#
  335. # VI-------------------------------------------------------VI #
  336. # | Command achievements | #
  337. # 6---------------------------------------------------------6 #
  338. #===========================ooo=ooo===========================#
  339.  
  340. # Let achievement commands be given several times.
  341. MultiCommand: true
  342.  
  343. # A player with achievement.give (or the console) can use the /aach give yourAch1 playerName
  344. # to give yourAch1 achievement to playerName.
  345. Commands:
  346. yourAch1:
  347. Message: Você participou do evento especial!
  348. Name: Achievement evento especial!
  349.  
  350. #===========================OOOOOOO===========================#
  351. # VII-----------------------------------------------------VII #
  352. # | Parameters to appear in future version | #
  353. # 7---------------------------------------------------------7 #
  354. #===========================ooooooo===========================#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement