Changelog.txt 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001
  1. Changelog:
  2. Versions without changelogs probably had very small misc fixes, like tweaks to the source code
  3. Key:
  4. + Addition
  5. = Fix
  6. ! Change
  7. - Removal
  8. Version 1.5.01-dev
  9. + Added new child skill; Salvage
  10. + Added new feature to Herbalism. Instantly-regrown crops are protected from being broken for 1 second
  11. + Added option to config.yml to show the /mcstats scoreboard automatically after logging in
  12. + Added option to config.yml for Alchemy. Skills.Alchemy.Prevent_Hopper_Transfer_Bottles
  13. + Added support for `MATERIAL|data` format in treasures.yml
  14. + Added API to experience events to get XP gain reason
  15. + Added API to check if an entity is bleeding
  16. + Added options to tools.yml and armor.yml config files to set a pretty repair material name
  17. + Added full support for repairables in tools.yml and armor.yml config files
  18. + Added new API class SkillAPI used to get a list of valid skill names
  19. = Fixed bug where pistons would mess with the block tracking
  20. = Fixed bug where the Updater was running on the main thread.
  21. = Fixed bug when players would use /ptp without being in a party
  22. = Fixed bug where player didn't have a mcMMOPlayer object in AsyncPlayerChatEvent
  23. = Fixed bug where dodge would check the wrong player skill level
  24. = Fixed bug which causes /party teleport to stop working
  25. = Fixed bug where SaveTimerTask would produce an IndexOutOfBoundsException
  26. = Fixed bug where Alchemy would not fire BrewEvents
  27. = Fixed bug with setting custom names and lore in treasures config
  28. = Fixed bug which would cause a NullPointerException with getFlowerAndGrassXp()
  29. = Fixed bug which could cause and SQLException regarding the connection property 'maxReconnects'.
  30. = Fixed bug where falling blocks were incorrectly tracked
  31. = Fixed bug where items would get deleted when in Berserk with a full inventory
  32. = Fixed bug where the console would not correctly show party chat colors
  33. = Fixed bug where party chat was using non thread safe methods
  34. = Fixed bug where Blast Mining unlock levels could be to high in certain occasions
  35. = Fixed bug where Blast Minings ability "Demolition Expert" would not work
  36. ! Changed SecondaryAbilityEvent to implement Cancellable and it now gets fired for damage related secondary abilities
  37. ! Changed the way mcMMO handles bonus damage, updated for the new damage event API
  38. ! Changed player data saving. Save tasks are now asynchronous
  39. ! Vanished players no longer get hit by AoE effects
  40. ! Changed Alchemy config option 'Prevent_Hopper_Transfer' renamed to 'Prevent_Hopper_Transfer_Ingredients'
  41. ! Changed Alchemy XP distribution. XP is granted based on the stage of the potion.
  42. ! Changed behavior of the Blast Mining ability "Demolition Expert"; now only decreases damage for the ability user
  43. ! Updated for new getOnlinePlayers() behavior
  44. - Removed salvage ability from Repair, salvage has it's own (child) skill now
  45. Version 1.5.00
  46. + Added Podzol & Red Sand to Excavation
  47. + Added Hardened Clay, Stained Clay, and Packed Ice to Mining blocks
  48. + Added Acacia and Dark Oak to Woodcutting blocks
  49. + Added Salmon, Clownfish, and Pufferfish to Fishing XP
  50. + Added new flowers and grasses to Herbalism XP
  51. + Added option to config.yml which allows players to always catch fish, even when a treasure is found
  52. + Added option to config.yml to override vanilla Minecraft treasures
  53. ! Fishing XP now depends on the type of fish.
  54. ! Woodcutting XP in experience.yml and Woodcutting double drops in config.yml now use the tree species names. Oak is now Generic, and Spruce is now Redwood.
  55. ! Red_Rose was replaced by Poppy, and so the key in experience.yml has been updated accordingly.
  56. - Removed deprecated permission nodes
  57. - Removed "Treasure found!" message
  58. Version 1.4.08
  59. + Added a new skill; Alchemy. Special thanks to EasyMFnE for creating this!
  60. + Added SecondaryAbilityType enum, and new SecondaryAbilityWeightedActivationCheckEvent, fired when a secondary ability checkes its activation chances
  61. + Added the possibility to gain experience when using Fishing "Shake"
  62. + Added config options to disable various sound effects
  63. + Smelting now works with custom ores - add smelting XP value to blocks.yml, or it will default to 1/10th of normal XP.
  64. + Added automatic cleanup of backups folder.
  65. + Added bypass permission for finding Fishing traps
  66. + Added level threshold settings to hardcore modes. When a players skill level is below this threshold, they will not lose any stats
  67. + Added party alliances, two parties can now team up. Allies share party chat and cannot harm each other.
  68. + Added new experience bonus perk 'mcmmo.perks.xp.10percentboost.<skillname>' multiplies incoming XP by 1.1
  69. + Added new experience bonus perk 'mcmmo.perks.xp.customboost.<skillname>' multiplies incoming XP by the boost amount defined in the experience config
  70. + Added Ender Dragon, Wither, and Witch to combat experience multipliers - they do not give XP by default
  71. + Added support for multiple mod config files, naming can be done as either armor.<modname>.yml or <modname>.armor.yml
  72. + Added config options to configure the items used in "Call of the Wild"
  73. + Added config option to configure the database command cooldown
  74. = Fixed bug where healthbars wouldn't display if skills were disabled
  75. = Fixed bug with "Call of the Wild" entities despawning
  76. = Fixed bug with updating (very) old user data.
  77. = Fixed bug with checking maximum durability of mod items.
  78. = Fixed exploit involving Call of The Wild.
  79. = Fixed bug where LeafBlower permissions were ignored
  80. = Fixed bug with toggle commands not properly displaying the success message.
  81. = Fixed IllegalArgumentException caused by an empty Fishing treasure category
  82. = Fixed bug with Salvage not reading the config value for the anvil material.
  83. = Fixed exploit where you could receive smelting XP for improper items
  84. = Fixed bug where the Unbreaking enchantment was ignored when using "Super Breaker" or "Giga Drill Breaker"
  85. = Fixed bug which prevented players from gaining Acrobatics XP when the setting 'Prevent_XP_After_Teleport' was set to false
  86. = Fixed bug where cooldown donor perks were reducing more than expected
  87. = Fixed bug where disabling hardcore mode for specific skills didn't work
  88. = Fixed bug which caused the backup cleanup to delete old backups while it should have kept those
  89. = Fixed bug where party chat broke if the display name contained special characters
  90. = Fixed bug where `/addlevels all` and `/skillreset all` didn't work
  91. = Fixed bug which made it possible to gain XP by taming the same horse multiple times, if a player "untamed" that horse
  92. = Fixed bug where some horses summoned with "Call of the Wild" were unable to jump
  93. = Fixed bug where the /ptp request expiration time was checked wrongly - preventing players from using the command
  94. = Fixed bug where Hylian Luck was broken
  95. = Fixed bug where Snow would never drop treasures
  96. = Fixed issues with commands giving away vanished players.
  97. = Fixed bug where the Repair lucky perk would increase the Arcane Forging downgrade chance, instead of decreasing it
  98. ! Changed party system. Parties now have XP and Levels. Party features such as party teleport and party chat have to be unlocked before they can be used by the party members
  99. ! Changed appearance of party member list. Gold = party leader, White = online, Gray = offline, Italic = not nearby
  100. ! Updated localization files
  101. ! Changed the appearance of /mcmmo commands
  102. ! Changed AxesCritical to CriticalHit in config file
  103. ! Changed several secondary ability permissions(deprecated versions still exist)
  104. ! Changed /ptp config setting, Commands.ptp.Confirm_Required is now Commands.ptp.Accept.Required
  105. ! Changed config validation for UnlockLevels, they can now also be 0
  106. ! Changed config validation for Rank_Levels, successive Ranks can now be less than or equal to each other
  107. ! Changed default amount of XP gained from mining Quartz Ore. From 250 to 100 XP.
  108. ! Changed Acrobatics config setting, Skills.Acrobatics.Prevent_XP_After_Teleport is now Skills.Acrobatics.XP_After_Teleport_Cooldown
  109. - Removed /stats alias for /mcstats
  110. Version 1.4.07
  111. + Added XP boost to Acrobatics when wearing Boots of Feather Falling
  112. + Added SQL Database can now recover from a dropped connection without losing data. (Thanks Riking!)
  113. + Added more tiers to Fishing, Repair and Smelting!
  114. + Added Carrot on a Stick and Flint & Steel to repair.vanilla.yml
  115. + Added horses to the "Shake" ability
  116. + Added ability to summon horses via "Call of the Wild" using apples
  117. + Added XP gain to Taming for horses
  118. + Added new permission nodes to allow more control over Taming and "Call of the Wild"
  119. + Added new experience.yml config file! Moved all experience related settings from config.yml to experience.yml
  120. + Added support for EXPONENTIAL formula curves to experience.yml
  121. + Added new /mcconvert command to convert players levels and experience from one formula curve to another.
  122. + Added snow to Excavation blocks
  123. + Added new experience curve option. Cumulative curve, calculates experience needed for next level using power level.
  124. + Added extra settings to config.yml for "Call of the Wild" (Taming)
  125. + Added a 5 second cooldown after teleporting before Acrobatics XP can be earned. Plus a config option to disable
  126. + Added new API methods to ExperienceAPI to get a players rank on the leaderboards
  127. + Added new McMMOPlayerDeathPenaltyEvent, fired when a player dies and would lose levels
  128. + Added new McMMOPlayerLevelChangeEvent, fired when a players level changes
  129. + Added new McMMOPlayerLevelDownEvent, fired when a player loses levels
  130. + Added ability to give custom names to items in treasures.yml - use the key "Custom_Name" to set, expects a string.
  131. + Added ability to give lore to items in treasures.yml - use the key "Lore" to set, expects a list of strings.
  132. + Added Quartz and Name Tags to the default Excavation treasures
  133. + Added a warning message if the server is running NoCheatPlus without CompatNoCheatPlus
  134. + Added cooldown to commands with heavy database access to prevent denial of service
  135. + Added /mcscoreboard keep, to keep the scoreboard up forever
  136. + Added Rainbow Mode to scoreboards
  137. + Added new /mccooldowns command to show all ability cooldowns
  138. + Commands may now both print text and display a scoreboard
  139. + Killing a custom entity will automatically add it to the custom entity config file with default values.
  140. = Fixed bug which allowed players to bypass fishing's exploit prevention
  141. = Fixed bug where FakeEntityDamageByEntityEvent wasn't being fired
  142. = Fixed bug with "Skull Splitter" not finding the locale string
  143. = Fixed issue where locale strings could cause the scoreboard header to be longer than 16 characters.
  144. = Fixed a bug with "Beast Lore" when the entity had no owner but was tamed.
  145. = Fixed a bug where AbilityDeactivateEvent would throw an error if the player logged out before his ability ran out.
  146. = Fixed a bug where LevelUpEvent would be called for an offline player.
  147. = Fixed a bug where teleport location was never reset if warmup was set to 0 for "Chimaera Wing".
  148. = Fixed a bug where the "Dodge" DamageModifier wasn't being read from advanced.yml
  149. = Fixed a bug where squid were not awarding XP.
  150. = Fixed a bug where Combat XP was granted within 5 seconds for respawned players
  151. = Fixed a bug where wrong feedback messages were being send when using a command on an offline player
  152. = Fixed a bug where players were able to gain Herbalism XP in mine carts, even though Prevent_AFK_Leveling was enabled
  153. = Fixed a bug where players would get hit by fireworks if they leveled up while in a boat
  154. ! Changed Fishing "Treasure Hunter" and "Magic Hunter" drop percentages
  155. ! Changed format of mod config files. (blocks.yml, tools.yml, armor.yml and entities.yml) **YOU WILL NEED TO UPDATE YOUR FILE TO THE NEW FORMAT**
  156. ! Changed format of treasures.yml. **YOU WILL NEED TO UPDATE YOUR FILE TO THE NEW FORMAT**
  157. ! Changed format of repair.vanilla.yml. **YOU WILL NEED TO UPDATE YOUR FILE TO THE NEW FORMAT**
  158. ! Changed default XP multiplier for repairing shears
  159. ! Changed "Shake" drops for Witches. They no longer drop water bottles, since they no longer drop them in Vanilla.
  160. ! Changed fishing exploit prevention, by default it will no longer send global sounds, effects and messages.
  161. ! Changed Hardcore modes, they will also subtract experience
  162. ! Changed various values to double in advanced.yml for the sake of consistency.
  163. ! Nerfed Fishing "Master Angler" (removed skill level based bonus) and also made the modifiers configurable
  164. ! Nerfed Archery damage to eliminate constant one-hit kills.
  165. ! Changed the way Repair hands out XP, also added config options to control Repair XP
  166. ! Changed Swords "Counter Attack" ability from passive to active. Blocking is required to activate.
  167. ! Hardcore modes can now be toggled for each skill individually
  168. ! Vampirism can now be enabled without having Skill Death Penalty enabled
  169. ! Admin and Party chat prefixes are now customizable
  170. ! Changed the color of party leader names in Party chat
  171. ! Improved "Tree Feller" algorithm (Thanks Riking!)
  172. ! Improved AFK Acrobatics prevention mechanism
  173. ! Improved profile saving
  174. ! Improved partial name matcher
  175. ! Improved update checker
  176. ! Updated localization files
  177. ! Party item share category states are now saved when the server shuts down.
  178. ! When using "Super Breaker" or "Giga Driller" abilities extra tool durability is used (again)
  179. ! Mob healthbars are automatically disabled when the plugin "HealthBar" is found
  180. ! Massively improved scoreboard handling
  181. ! Reworked scoreboard configuration (config.yml) - **you will need to update**
  182. - The /mmoupdate command has been removed. It is replaced by /mcconvert database
  183. - Removed Abilities.Tools.Durability_Loss_Enabled, set Abilities.Tools.Durability_Loss to 0 to disable instead.
  184. - Removed Skills.Fishing.Shake_UnlockLevel from advanced.yml, now using Skills.Fishing.Rank_Levels.Rank_1 instead.
  185. - Removed SpoutPlugin support
  186. Version 1.4.06
  187. + Added "Ice Fishing" ability to Fishing
  188. + Added global scoreboards to track skill rankings (display using /mctop)
  189. + Added per-player scoreboard displays for the /inspect, /mcrank, /mcstats, and /<skillname> commands
  190. + Added tab-complete support for all commands
  191. + Added ability to configure drops from Shake in treasures.yml
  192. + Added "Master Angler" ability to Fishing.
  193. + Added health display for mobs during combat.
  194. + Added new API method to McMMOPlayerLevelUpEvent to set levels gained
  195. + Added new permission node for /ptp; mcmmo.commands.ptp.send (enabled by default)
  196. + Added configurable cooldown and warmup times when using /ptp
  197. + Added a new Party item share category "Misc" which contains a list of configurable items. (By default all tools and armor)
  198. + Added fishing exploit prevention
  199. + Added permission node to bypass the fishing exploit prevention
  200. + Added boosts to Fishing chance depending on conditions
  201. + Added McMMOAbilityActivateEvent and McMMOAbilityDeactivateEvent
  202. + Added config option to toggle the size of fireworks
  203. + Added config option to multiply xp gains from mob spawner mobs
  204. + Added multiplier to Archery XP based on bow force
  205. + Added information about /party itemshare and /party expshare to the party help page
  206. + Added option to use scoreboards for power level display instead of Spout.
  207. + Added permission node to prevent inspecting hidden players
  208. + Added SQL to Flatfile database conversion
  209. + Added ability to use custom database managers and convert to/from them
  210. = Fixed bug which could cause the server to hang for a minute when checking for updates. (Thanks to Riking)
  211. = Fixed bug where spawned arrows could throw ArrayIndexOutOfBoundsException
  212. = Fixed bug where custom Spout titles were overwritten by mcMMO.
  213. = Fixed bug where Nether Quartz wasn't included in Smelting or item sharing
  214. = Fixed bug where players were able to join the same party multiple times
  215. = Fixed displaying partial names when trying to use /ptp
  216. = Fixed wolves from Call of the Wild only having 8 health
  217. = Fixed bug where /party chat was not working
  218. = Fixed bug where experience commands were adding levels to all skills when they shouldn't
  219. = Fixed mcmmo.commands.ptp.send not being set by default
  220. = Fixed NPE when trying to tab-complete /mctop
  221. = Fixed Fishing treasures always having the same enchants
  222. = Fixed Smelting returning ink sacs instead of Lapis when double-dropping
  223. = Fixed bug where players could remain in party chat after leaving or being kicked from a party.
  224. = Fixed bug where non-player arrows couldn't be deflected.
  225. = Fixed experience being applied even when the permission for a skill was denied
  226. = Fixed possible item duplication bug with infinity bows
  227. = Fixed bug with removing players from mySQL database
  228. = Fixed bug with empty metadata lists and Smelting
  229. = Fixed bug where Blast Mining would drop wrong items
  230. = Fixed bug with Blast Mining where the Ability refreshed message was being send too early
  231. = Fixed bug where the chance of a successful Gracefull Roll was twice as high as displayed
  232. = Fixed bug where lucky perks where not working
  233. = Fixed bug with Ice Fishing on a single block of ice
  234. = Fixed bug with Ice Fishing which allowed players to break ice in protected areas
  235. = Fixed a small bug with mob healthbars and bosses, such as EnderDragons and Withers
  236. ! Changed Spout notification tiers to be stored in SpoutConfig instead of AdvancedConfig
  237. ! Changed Berserk to add items to inventory rather than denying pickup
  238. ! Changed Call of the Wild, newly summoned pet's will have a custom name. (added permission node to disable this)
  239. ! Changed Chimaera Wing's recipe result to use the ingredient Material
  240. ! Changed Repair to ask a confirmation of the player when he tries to repair an enchanted item
  241. ! Players will no longer pickup items to their hotbar while using Unarmed
  242. ! ExperienceAPI methods will now throw InvalidSkillException if the skill name passed in is invalid.
  243. ! Changed default value for recently-hurt cooldown between teleports, this is also fully configurable now
  244. ! Changed the amount of info messages in the console when enabling/disabling, enable Verbose_Logging to enable them again
  245. ! Items dropped by players are now being tracked and are not being shared with party members
  246. ! Optimized tracking of tool & ability cooldowns.
  247. ! Updated the localization files
  248. Version 1.4.05
  249. + Added option to allow refreshing of chunks after block-breaking abilities. (Disabled by default)
  250. + Added fireworks effects when a player levels-up, for every 100 levels (configurable)
  251. = Fixed bug where /addxp was setting instead of adding experience
  252. = Fixed bug where /addxp was not processessing level-ups for online players
  253. = Fixed bug which allowed players to share experience with nearby dead players
  254. = Fixed bug with ChimaeraWings not taking Wings from a players inventory properly
  255. = Fixed bug which caused a NPE when trying to use /mctop smelting
  256. = Fixed Berserk misbehaving when /reload was used
  257. = Fixed parties misbehaving when /reload was used
  258. = Fixed Berserk getting "stuck" when /mcrefresh was used
  259. = Fixed ClassCastException with Taming
  260. = Fixed huge mushroom blocks not being properly tracked
  261. = Fixed potion buff option not using the appropriate # of ticks
  262. = Fixed Chimera Wing spamming console if Metrics was disabled
  263. = Fixed Chimera Wing displaying warmup message if warmup was set to 0
  264. = Fixed party & admin chat errors when not aysnc
  265. ! Updated localization files
  266. Version 1.4.04
  267. + Added functions to ExperienceAPI for use with offline players
  268. + Added Nether Quartz Ore to Mining
  269. + Added Dropper, Hopper, and Trapped Chest to blocks that shouldn't activate abilities
  270. + Added partial name matching
  271. = Fixed bug where trying to activate a Chimaera Wing would require one item too much
  272. = Fixed bug where Treefeller would try to cut too many leaves and reach the threshold when it shouldn't
  273. = Fixed bug where Mining wasn't awarding double drops
  274. = Fixed bug where Shake wouldn't damage mobs whose max health was less than 4
  275. = Fixed bug where the API would fail if the name of a player's current party is requested when the player isn't in one (Thanks @dualspiral!)
  276. = Fixed bug with retrieving a player's party members
  277. = Fixed bug which caused a NPE when trying to join the party of a non-existing player or when ptp to a non-existing player
  278. = Fixed bug which causes a NPE when trying to use /mcrefresh from the console
  279. = Fixed bug where Carrots and Potatoes weren't awarding Herbalism XP.
  280. = Fixed bug where some herbalism drops weren't properly shared within parties.
  281. = Fixed bug where players wouldn't be able to pick up items if they logged our while Berserk was still active.
  282. ! Changed config node name for the skill experience modifiers from "Experience.Formula.Multiplier.[Skill]" to "Experience.Formula.Modifier.[Skill]"
  283. ! Updated localization files
  284. ! mcMMO abilities can no longer be activated while in Creative mode
  285. ! Expanded ChatAPI to allow toggling of chat states for users
  286. ! Updated to EMetrics 0.0.4-SNAPSHOT
  287. - Removed deprecated functions from API classes.
  288. - Removed functions for getting the PlayerProfile - using API classes is preferred, but if not the McMMOPlayer should be used instead
  289. - Removed Ender Dragon, Wither, and Witch from granting combat experience and related configuration options
  290. Version 1.4.03
  291. + Added option to advanced.yml to determine the # of enchant levels used when buffing Super Breaker & Giga Drill Breaker
  292. + Improved stats display for child skills
  293. + Added cooldown between using Chimaera Wings
  294. = Fixed bug with '/party chat (on|off)' and '/partychat (on|off)' not working
  295. = Fixed bug with Repair not decreasing enchanting levels properly
  296. = Fixed bug with Smelting not properly tracking furnaces
  297. = Fixed bug with Blast Mining not dropping blocks correctly
  298. = Fixed bug with custom blocks not working
  299. = Fixed bug with Blast Mining increasing TNT damage.
  300. = Fixed bug where Blast Mining was awarding too much XP
  301. = Fixed bug where triple drops would award twice the amount of experience in Herbalism and Mining
  302. = Fixed bug where Green Thumb would consume wheat instead of seeds
  303. = Fixed bug where Green Terra would consume twice the amount of seed when used on crops
  304. = Fixed bug where experience would be awarded in Herbalism for some player-placed blocks
  305. = Fixed bug where players were unable to salvage leather armor
  306. = Fixed bug with repairing using materials with byte metadata
  307. = Fixed bug where Fishing was becoming less successful at higher levels
  308. = Fixed bug with using Salvage on stacked items.
  309. = Fixed bug where the 'mcmmo.commands.ptp.world.all' was registered twice
  310. = Fixed bug where Beast Lore wouldn't work on friendly pets
  311. = Fixed bug where Deflect was calculated based on the attacker, not the defender. (We really did this time!)
  312. = Fixed bug where Treefeller would not deal durability damage when the axe "splinters into dozens of pieces"
  313. ! Moved the Salvage unlock level from config.yml to advanced.yml
  314. ! Changed how Chimaera Wings are acquired, you need to craft them now. (By default, use 5 feathers in a shapeless recipe)
  315. ! Changed how Chimaera Wings teleport players to the spawnpoint, will now check if the location is safe
  316. - Removed option to disable Salvage via the config file. This should be handled via permissions instead.
  317. - Removed the option to use Woodcutting without an axe from the config file.
  318. Version 1.4.02
  319. + Added API to get the skill and power level caps.
  320. = Fixed bug where Deflect was calculated based on the attacker, not the defender
  321. = Fixed bug where some skills weren't registering as unlocked until one level later
  322. = Fixed bug where the PTP cooldown was being read improperly
  323. = Fixed bug where /ptp <accept|toggle|acceptall> where broken
  324. = Fixed ClassCastException relating to counter-attack with Swords
  325. = Fixed issue with some skill activations not activating enough or activating too much
  326. Version 1.4.01
  327. = Fixed bug where trying to use /mctop or /xplock with the Smelting child skill caused NPEs
  328. = Fixed bug where /mctop and /mcrank wouldn't show overall power levels for servers using Flatfile
  329. = Fixed bug where Smelting would throw consistent errors due to offline players
  330. = Fixed bug where repairing an mcMMO ability-buffed item with mcMMO repair could take the enchant but leave the lore tag
  331. = Fixed bug where using '/party chat message...' would result in the first word of the message being printed repeatedly
  332. = Fixed bug where the wrong flag was being set when taking damage
  333. = Fixed bug where the PTP cooldown was set improperly
  334. = Fixed bug where ptp permissions weren't being handled properly
  335. = Fixed bug where Beast Lore wouldn't work
  336. = Fixed bug where Chimaera Wing would always teleport to spawn, even when the player had a valid bed spawn location
  337. = Updated locale files
  338. Version 1.4.00
  339. + Added new Child Skill - Smelting!
  340. + Added a version check, admins will get notified when a new version is available!
  341. + Added new cancellable McMMOPlayerDisarmEvent for Citizens compatibility - fires whenever a player is disarmed.
  342. + Added config options for Hylian Luck skill
  343. + Added display values to Unarmed command for Iron Grip
  344. + Added '/party create <name>' command, use this to create a party
  345. + Added '/party disband' command, kicks out all members and deletes the party
  346. + Added '/ptp toggle' command, to disable party teleportation.
  347. + Added '/ptp accept' and '/ptp acceptall' commands
  348. + Added an automatic party kick when a party member has been offline for 7 days (default)
  349. + Added a permission to allow friendly fire in parties, both attacker and defender must have it for friendly fire to occur
  350. + Added timeout on party teleport requests
  351. + Added XP bonus for Archery based on distance from shooter to target
  352. + Added ability to config Hylian Luck drops through treasures.yml
  353. + Added party XP sharing, when more party members are near the share bonus increases.
  354. + Added vanilla XP boost for Fishing - includes permissions, config options, etc
  355. + Added particle effect for bleeding
  356. + Added methods to check if a player is in party or admin chat to the ChatAPI
  357. + Added /mcpurge functionality for Flatfile users
  358. + Added basic support for Mo' Creatures (and other entity mods) - specify mob info in entities.yml
  359. + Added Shears, Buckets, Fishing Rods, Flint & Steel, Carrot Sticks, and Bows to the list of items that can be Salvaged
  360. + Added the "wait" music disc to the default fishing treasures
  361. + Added "Chinese (Taiwan)" localization files (zh_TW)
  362. + Added '/hardcore' and '/vampirism' commands for toggling these modes on or off.
  363. + Added Block Cracker to Unarmed's Berserk, turn smooth brick into cracked smooth brick
  364. + Added config option to disable automatic zip backups.
  365. + Added particle effects for many abilities.
  366. + Added '/mcnotify' command to toggle ability notifications on/off
  367. + Added ability for config files to automatically update with new keys, and prune out old ones
  368. + Added config option to make .new config files instead over writing over old ones when updating
  369. + Added "Holy Hound" ability to Taming
  370. + Added "Shroom Thumb" ability to Herbalism
  371. + Added child.yml config file to choose parents for child skills
  372. + Added '/party itemshare <NONE | EQUAL | RANDOM>' command to choose party item share mode
  373. + Added '/party itemshare <loot | mining | herbalism | woodcutting> <true | false>' command to control items that are shared
  374. + Added itemweights.yml file to determine which items are more valuable for party itemshare
  375. = Fixed Green Thumb on wheat not working properly at rank 4
  376. = Fixed Green Thumb and Green Terra consuming twice the amount of seed needed
  377. = Fixed Green Terra not also checking Green Thumb permissions
  378. = Fixed bug where splash potions could raise a player's unarmed level
  379. = Fixed bug where fired arrows could raise skill levels other than Archery
  380. = Fixed /ptp telporting the target to the player, rather than the other way around.
  381. = Fixed Impact reducing the durability of non-armor equipped blocks
  382. = Fixed Impact reducing improperly the durability of armors (as a consequence it is now more effective)
  383. = Fixed multiple commands not working properly on offline players
  384. = Fixed /mmoedit not giving feedback when modifying another players stats
  385. = Fixed the guide usage string showing up every time /skillname was called
  386. = Fixed Spout not being able to precache our resources properly, and therefore making our XP bars fail
  387. = Fixed Spout config files loading / generating when they shouldn't have
  388. = Fixed mod config files loading / generating when they shouldn't have
  389. = Fixed bug where Green Terra could activate on crops that weren't fully grown.
  390. = Fixed several typos relating to locale string display
  391. = Fixed bug where all skill guide headers appeared as "Skillname Guide Guide"
  392. = Fixed bug where Impact was applied incorrectly due to an inverted method call
  393. = Fixed bug where Impact improperly determined the defender's armor
  394. = Fixed a bug which made it impossible to join other players' parties
  395. = Fixed ArrayIndexOutOfBoundsException resulting from being unranked in a skill when using FlatFile
  396. = Fixed Woodcutting accidentally using Mining double drop values.
  397. = Fixed Hylian Luck not removing the block-placed flag from flowers.
  398. = Fixed Hylian Luck not checking the block-placed flag on flowers.
  399. = Fixed Leaf Blower not respecting the unlock level set in advanced.yml
  400. = Fixed abilities activating with the wrong tool in hand
  401. = Fixed Experience.Gains.Mobspawners.Enabled not being used correctly (the check was inverted)
  402. = Fixed bug where Iron Grip was using the attacker's skill values rather than the defender's.
  403. = Fixed a bug where /party kick would trigger the PartyChangeEvent for the wrong player
  404. = Fixed /party kick not working on offline players
  405. = Fixed a bug where party join messages weren't displayed
  406. = Fixed a bug where a new party leader wasn't appointed, after the previous party leader left
  407. = Fixed a bug where Disarm and Deflect had wrong values
  408. = Fixed Magic Hunter (Fishing ability) favoring certain enchants
  409. ! Changed our custom chat events to be async
  410. ! Changed some config value key names regarding double drops and XP - make sure you copy any custom values to your new config after updating.
  411. ! Changed Green Terra blocks to be determined via permissions instead of the config file
  412. ! Config files are now backed up even when running in SQL mode
  413. ! Changed /p and /a to use /partychat and /adminchat as the default command name. The use of /p, /pc, /a, and /ac is still supported.
  414. ! We're now using Bukkit sounds instead of Spout sounds.
  415. ! It is now possible to use a negative number for Max_Level in treasures.yml to not use a maximum level, changed default file accordingly
  416. ! A Fishing catch will now always contains a fish even if a treasure is found
  417. ! Changed how Berserk handles not picking up items to avoid listening to PlayerPickupItemEvent
  418. ! Moved Hylian Luck into a separate listener since it actually cancels the event and shouldn't just be on MONITOR.
  419. ! Changed how Tree Feller is handled, it should now put less stress on the CPU
  420. ! Changed Tree Feller to work on huge mushrooms
  421. ! Changed Fisherman's Diet and Farmer's Diet to use two seperate config values
  422. ! Major refactoring - please take note, this WILL break any mcMMO-related plugin not properly hooking into the API.
  423. ! Changed the way party commands work, use /party ? to check how to use the new commands
  424. ! Changed McMMOChatEvent to contain the plugin that the event originated from.
  425. ! Changed Excavation to have individual XP values for each block type, rather than a base XP value.
  426. ! Changed the way party teleportation works. When using /ptp, the target player needs to confirm the teleport before it takes place. (Configurable)
  427. ! Changed BeastLore: Now also displays offline player names
  428. ! Changed backup task to include ALL config files
  429. ! Deprecated most functions in ExperienceAPI, replaced them with identical versions that use a String for the SkillName rather than the SkillType enum values
  430. ! Changed Super Breaker & Giga Drill Breaker to be an enchantment-based boost, rather than an instabreak. Option exists in hidden.yml to change this to an potion-based buff.
  431. ! Changed locales to fall back on English when translated strings cannot be found.
  432. - Removed Party "master/apprentice" system. Replaced with the new party XP share feature.
  433. - Removed unused "healthbar" files from the resources
  434. - Removed config options for disabling commands from the config.yml. This should instead be done through permissions.
  435. - Removed /mcc command. Replaced with /mcmmo [?|help|commands]
  436. - Removed options to allow Mining & Excavation without a tool due to the changes to their abilities
  437. Version 1.3.14
  438. + Added new Hylian Luck skill to Herbalism.
  439. = Fixed a memory leak involving mob tracking
  440. - Removed extra durability loss from Leaf Blower
  441. Version 1.3.13
  442. + Added task & command to prune old and powerless users from the SQL database.
  443. + Added Craftbukkit 1.4.6 / 1.4.7 compatibility
  444. + Added new /mcrank command for showing a players leader board ranking for all skills in one place
  445. + Added a configurable durability cap for ArmorImpact to advanced.yml
  446. + Added the version number to /mcmmo
  447. + Added bats, giants, witches, withers, and wither skeletons to the mcMMO combat experience list, and makes their experience drops configurable
  448. + Added the ability to track mobs spawned by mob spawners or the Taming ability when the chunks they are in unload and reload
  449. + Added wooden button to the list of items that shouldn't trigger abilities
  450. + Added a new feature to fishing. Players will have +10% chance of finding enchanted items when fishing while it's raining
  451. + Added displaying bonus perks on skill commands
  452. + Added config option to disable gaining Acrobatics XP from dodging lightning
  453. + Added missing skill guides. They're finally here!
  454. + Added more localization
  455. + Added a very secret easter egg
  456. = Fix issue with Sand/Gravel tracking
  457. = Fix possible NPE when using the PartyAPI to add a player to a party that doesn't exist.
  458. = Fix mcremove command for mySQL
  459. = Fix a java.io.FileNotFoundException when using SQL
  460. = Impact now works with mobs wearing armor
  461. = Fixed issue with Tree Feller dropping player-placed blocks
  462. = Fixed issue with missing default cases from several switch/case statements
  463. = Fixed issue with Mining using actual skill level rather than max skill level
  464. = Fixed some issues with static access
  465. = Fixed ItemStack deprecation issues
  466. = Fixed Async deprecation issues
  467. = Fixed a bug with MySQL databases (non-alphanumeric characters preventing MySQL access)
  468. = Fixed a bug where the /skillreset command was broken
  469. = Fixed a bug where skill commands displaying .x% instead of 0.x%
  470. = Fixed a bug Unbreaking enchantments being ignored when using Treefelling and when hit by Armor Impact
  471. = Fixed a bug where only 1 diamond was needed to fully repair a broken item: Repaired the Repair skill!
  472. = Fixed a bug where a infinite loop of errors caused by mySQL database could cause the server to crash
  473. = Fixed a bug where PartyChangeEvent was fired even when a player isn't able to change parties
  474. = Fixed a bug which caused advanced.yml not to work for Swords
  475. = Fixed a bug which caused advanced.yml not to respect every MaxChance node
  476. = Fixed a bug where GreenThumb_StageChange wasn't read from advanced.yml
  477. = Fixed a bug where Repair would remove enchantments but the glow effect remained
  478. = Fixed a bug where dropped items did not retain custom NBT data
  479. = Fixed a bug which caused a potentially infinite recursion in a btree structure
  480. = Fixed a NPE with custom blocks
  481. = Fixed a bug with Blast Mining never dropping debris blocks
  482. = Fixed a bug with Blast Mining incorrectly handling reduced TNT damage
  483. = Fixed a bug with conflicting fishing enchantments
  484. = Fixed a bug where triple drops wouldn't happen
  485. = Fixed a bug which caused fishing to ignore max/min levels in treasures.yml
  486. = Fixed a bug where treefeller affected player-placed blocks
  487. = Fixed bug where Skull Splitter would be applied twice.
  488. ! GJ stopped being a lazy slacker and got stuff done
  489. ! Nossr50 actually committed something
  490. ! Changed code that uses SpoutPlugin to make it compatible with the latest version
  491. ! Reimplemented skill level and power level caps.
  492. ! Moved Arcane Forging and Fishing setting from config.yml to advanced.yml
  493. ! Overall SQL query improvements
  494. ! Reduced number of SQL queries for mcTop command from 11 to 1, speeding it up immensely
  495. ! Changed FFS Leaderboards to hold information in memory rather than doing IO work (optimizations)
  496. ! Improved chunk conversion (less errors)
  497. ! Changed Fishing Treasure Hunter, chance has increased and now actually is level dependent
  498. ! Indexed most used mySQL columns for faster queries
  499. - Removed dead code relating to null profiles
  500. - Removed unused imports
  501. - Removed ChunkletUnloader and dependents, since they are no longer necessary.
  502. Version 1.3.12
  503. + Added Craftbukkit 1.4.5 compatibility
  504. + Added the new 1.3.2 items, xp and double drops for Cocoa beans & Emeralds, EnderChest to the list of blocks that shouldn't trigger abilities
  505. + Added new items from Minecraft 1.4 to Herbalism (potatoes & carrots)
  506. + Added new configuration file for advanced users.
  507. + Added new permission nodes to greenthumb for the 1.4 items
  508. + Added new mobs from Minecraft 1.4 checks for every ability
  509. + Added new active ability for Repair: Salvage
  510. + Added options to 'config.yml' configure shake chance
  511. + Added the option to negate experience earned for Herbalism while in a minecart to prevent afk leveling
  512. + Added Green thumb now converts cobble walls to mossy cobble walls
  513. + Added beacons and anvils to list of blocks that don't trigger abilities
  514. + Added a configuration option to disable experience gains when in a minecraft for Acrobatics and Herbalism, to prevent AFK leveling
  515. + Added a new passive ability for Fishing, Fishermans diet. Increases hunger restored from fish
  516. + Added a feature to display all active perks on login
  517. ! Changed Fishing, Shake drops changed from guaranteed to based upon fishing level and perks
  518. ! Changed Woodcutting, the amount of experience earned when using Tree Feller on jungle trees has increased
  519. ! Changed Herbalism double drop rates for melons and netherwart
  520. ! Changed filesystem usage, it's reduced a lot. Should help reduce lag on larger servers
  521. ! Changed database connection handling. Support for aggressive connection timeouts, with exponential backoff for multiple failures
  522. ! Changed Cobblestone walls are now mossy-able with Greenthumb
  523. ! Changed the skull drop rates of the shake ability to 3%
  524. = Fixed a NPE when Citizens perform certain tasks
  525. = Fixed a NPE with Woodcutting, excessive null chunk before earning Woodcutting experience
  526. = Fixed a NPE related to skill cooldowns
  527. = Fixed a NPE when a players profile was null
  528. = Fixed a NPE involving certain explosions
  529. = Fixed a dupe bug when for players who were using a 'nuker' client
  530. = Fixed a dupe bug where pistons were used to dupe ores
  531. = Fixed a dupe bug with Salvage when players were in Creative mode
  532. = Fixed a bug where the player was displayed an incorrect cooldown time
  533. = Fixed a bug where players could earn experience when they were dealing 0 damage
  534. = Fixed a bug where players could get double drops from mossified Cobblestone
  535. = Fixed a bug where Herablism magically converted potatoes to carrots
  536. = Fixed a bug where you couldn't modify the stats of offline players
  537. = Fixed a bug where treefeller didn't work properly on tree's with side-way logs
  538. = Fixed a bug where the Arcane forging downgrade chance should've been 0, but actually wasn't
  539. = Fixed a bug where Fishing would sometimes give items with empty enchantments
  540. = Fixed a bug where the lucky perk for Fishing was actually an unlucky perk
  541. - Removed nothing
  542. Version 1.3.11
  543. ! Changed axes to start with 1 durability damage instead of 5, gain 1 durability damage every 50 levels instead of 30, and only have a 25% chance on hit to damage armor (per armor piece)
  544. + Added compatibility with bow-wielding NPCs from Citizens/NPC mods
  545. + Added compatibility for pvp-prevention plugins for Serrated Strikes
  546. = Fixed bug where mcMMO could throw NPE errors if trees cut down were from a custom mod and had an id of 17
  547. = Fixed dupe bug where mcMMO would ignore other block-protection plugins for various abilities
  548. = Fixed NPE with hardcore mode's vampirism
  549. Version 1.3.10
  550. + Added 1.3.1 compatibility
  551. + Added permission node for Iron Grip ability (mcmmo.ability.unarmed.irongrip)
  552. + Added ability for custom blocks to drop a range of items.
  553. + Added Ability API functions
  554. + Added 50% & 150% XP boost perks
  555. + Added "lucky" perk for donors
  556. = Fixed /inspect not working on offline players
  557. = Fixed custom blocks, tools and armors not loading properly
  558. = Fixed duplication bug with sticky pistons
  559. = Fixed "GenericLabel belonging to mcMMO..." message
  560. = Fixed menu exit button not working
  561. = Fixed Repair enchant downgrade not working
  562. = Fixed NPE caused by Spout players after a /reload
  563. = Fixed ConcurrentModificationException on world unload
  564. = Fixed players never being removed from memory (memory leak)
  565. = Fixed admin chat being seen by everyone
  566. = Fixed issue with UTFDataFormatException occurring on occasion when trying to load Chunklets
  567. = Fixed ArrayIndexOutOfBounds error caused when trying to use /xplock after logging in but before gaining XP
  568. = Fixed custom tools not properly respecting the Ability_Enabled flag.
  569. = Fixed "lower tool" messages still being displayed even when ability messages are disabled.
  570. = Fixed custom blocks not dropping the proper item with Super Breaker when Silk Touch is used
  571. = Fixed custom woodcutting blocks throwing errors.
  572. = Fixed possible ClassCastException from catching something other than a mob when using the Shake Mob skill
  573. ! Changed the format by which Chunklets are stored to be much smaller, and much faster to load
  574. ! Optimized how player placed blocks are tracked
  575. Version 1.3.09
  576. + Added compatibility with AntiCheat (Which I highly recommend to prevent cheating)
  577. + Added several permission nodes to give individual users special perks (Double/Triple/Quadruple XP)
  578. + Added reduced cooldown permission nodes as special perks (1/4, 1/3, 1/2 cooldown)
  579. + Added increased activation time permissions nodes as special perks (+4, +8, and +12 seconds)
  580. + Added API for plugins to add custom tools directly via Spout - repair / abilities do not work ATM
  581. + Added offline party members to the list displayed by /party
  582. + Added possibility to kick offline members from parties
  583. = Fixed bug that would cause a NPE for players that had no parties
  584. = Fixed Vampirism not notifying the correct amount of stolen levels
  585. = Fixed bug with Acrobatics not saving you from deadly falls
  586. = Fixed /mcremove being applied only after a reload
  587. = Fixed Archery PVE disablement not working properly
  588. = Fixed possible NPE when a projectile is shot by a dispenser or doesn't have any shooter
  589. = Fixed issue with NoCheatPlus and Serrated Strikes / Skull Splitter (fight.noswing)
  590. = Fixed tiny memory leak concerning Archery
  591. = Fixed bug where you could receive Archery XP from Potions
  592. = Fixed bug where Chunklets for the < 64 y coordinates would not be properly loaded
  593. = Fixed exploit with block duplication via piston pushing
  594. = Fixed bug with falling sand/gravel not being tracked
  595. = Fixed bug with Tree Feller not working with custom axes
  596. = Fixed bug with locale strings when trying to teleport to a non-existent player
  597. = Fixed bug with Tree Feller changing durability before checking for axe splintering
  598. = Fixed bug with Repair Mastery permission due to typo
  599. = Fixed bug with repairing items that use metadata
  600. = Fixed bug with Chunklets not being reloaded on /reload
  601. = Fixed possible NPE when falling with no item in hand
  602. ! API methods can now only be used in a static way
  603. ! Arrows shot from a bow having the Infinity enchantment can no longer be retrieved
  604. ! Arrows that aren't shot by an entity are now able to be dodged (currently only from dispensers)
  605. ! Changed Spout settings to be in their own config file (spout.yml)
  606. ! Changed file format for parties (parties.yml), previous files are no longer used
  607. ! Changed mcMMO to inform on corrupt Chunklets and make new ones
  608. Version 1.3.08
  609. + Added more notifications about Vampirism and Hardcore mode on player death
  610. + Added information about Hardcore mode when joining a server running Hardcore mode
  611. + Added new hidden.yml inside the jar for very sensitive config options for advanced users
  612. + Added option to disable Chunklets for servers which do not have doubledrops and do not care about xp farming
  613. + Added new "Max_Seconds" setting in config.yml to limit the max time of abilities
  614. + Added new repair configs to allow customization of the repair skill
  615. + Added message to inform users about hardcore mode on login
  616. = Fixed exploit where you could gain tons of Acrobatics XP from spamming Ender Pearls
  617. = Fixed normal pistons marking a block as user-placed on retract if it wasn't a sticky piston (thanks turt2live!)
  618. = Fixed handling of the Unbreaking enchantment so that tools are actually damaged as they should now
  619. = Fixed hurting pet cats with serrated strikes
  620. ! Changed Hardcore Vampirism to require the victim to have at least half the skill level of the killer in order for vampirism to proc (this is to avoid exploitation)
  621. ! Changed Hardcore Vampirism to steal a minimum of 1 skill level from a player no matter the percentage
  622. ! Changed Hardcore & Vampirism to not be executed if percentages were set to zero or below
  623. ! Changed Vampirism to actually remove stats from the victim
  624. ! Changed Vampirism to inform the victim of their stat loss
  625. ! Changed Mining to allow Silk Touch to work again since the dupe exploit has been fixed.
  626. ! Changed Metrics to also report if the server uses plugin profiling
  627. - Removed level and item settings from Repair skill in config.yml
  628. Version 1.3.07
  629. + Added ability to gain XP from custom blocks. Enable custom blocks in the config file, then enter the data in the blocks.yml file.
  630. + Added ability to gain XP with custom tools. Enable custom tools in the config file, then enter the data in the tools.yml file.
  631. + Added ability to repair custom tools. Enable custom tools in the config file, then enter the data in the tools.yml file.
  632. + Added ability to repair custom armor. Enable custom armor in the config file, then enter the data in the armor.yml file.
  633. + Added functionality which makes a new folder in all world files "mcmmo_data" to store player placed block information in
  634. + Added new configurable Hardcore mode functionality to mcMMO
  635. + Added new configurable Vampirism PVP stat leech for Hardcore mode
  636. + Added new bypass permission node for the negative penalties of Hardcore mode 'mcmmo.bypass.hardcoremode'
  637. + Added configurable level curve multiplier which allows for tweaking the steepness of the XP needed to level formula
  638. + Added a permission node for Archery bonus damage
  639. + Added a permission node for Greater Impact ability
  640. + Added permission nodes for Treasure & Magic Hunter for Fishing
  641. + Added a permission node for Farmer's Diet
  642. + Added config options for enabling/disabling specific double drops
  643. + Added automatic zip backup of flatfile database & config files
  644. + Added config options to enable/disable specific skills for PVP & PVE
  645. = Fixed bug where Tree Feller was looking at the wrong blocks for determining how much to take down.
  646. = Fixed bug where Green Terra consumed seeds even on Mossy Stone Brick
  647. = Fixed bug where the client didn't reflect the Stone Brick to Mossy Stone Brick change
  648. = Fixed bug where an arrow could bounce off entities on daze proc
  649. = Fixed bug where a player could gain Acrobatics experience while riding a cart
  650. = Fixed /party not working properly with 2 arguments
  651. = Fixed /party not showing properly the member list
  652. = Fixed /ability not checking the right permission
  653. = Fixed rare NPE on /party command
  654. = Fixed Arrow Retrieval dropping only one arrow
  655. = Fixed /p and /a incompatibilities with bChatManager
  656. = Fixed Iron Grip working reversely
  657. = Fixed NPE when user clicked the HUD button with Spout
  658. = Fixed bug where the permission node for Impact didn't work
  659. = Fixed some bypass nodes defaulting true for Ops
  660. = Fixed bug with trying to use Chimera Wing while standing on a half-block
  661. = Fixed duplication bug when a placed block was mined after a server restart
  662. = Fixed exploit where shooting yourself with an arrow gave Archery XP
  663. ! Changed the mcMMO motd to link to the new website rather than the wiki
  664. ! Changed bleeding ticks damage to 1 from 2
  665. ! Changed Mining to ignore blocks when the pick is enchanted with Silk Touch
  666. ! Changed Super Breaker to be non-functional when used with a Silk Touch enchanted pick
  667. ! Changed MySQL to save player information 50ms apart from each other to reduce the load on the MySQL server
  668. ! Changed the permission node for Blast Mining detonation to mcmmo.ability.blastmining.detonate (was mcmmo.skills.blastmining) for the sake of consistency
  669. ! Changed skill commands to only display what you have permissions for
  670. ! Changed mcMMO to use a new storage system for player placed blocks
  671. - Removed some unused permission nodes
  672. - Removed a few config options in favor of permissions nodes (Hunger Bonus, Armor/Tool Repair, Instant Wheat Regrowth)
  673. - Removed level requirement for repairing string tools from the config file
  674. Version 1.3.06
  675. + Added Iron Golem XP for aggressive golems
  676. + Added permissions check to skill functions
  677. + Added API functions for obtaining offline profiles & profiles via player names
  678. + Added API functions for admin & party chat
  679. + Added Iron Grip skill to Unarmed which gives players an chance to keep from being disarmed.
  680. + Added some new languages to the locale files.
  681. = Fixed Green Thumb consuming 2 seeds instead of 1
  682. = Fixed exploit where you could teleport to yourself with PTP to prevent things like fall damage
  683. = Fixed NPE error with Metrics on startup
  684. = Fixed bug where Herbalism required double drops permission to give XP
  685. = Fixed bug where {0} would be displayed in front of your power level in mcstats
  686. = Fixed mmoupdate not being useable from console
  687. = Fixed bug with repairing wooden tools
  688. = Fixed bug with Nether Wart not awarding XP
  689. = Fixed bug with fishing treasures when treasures list is empty
  690. = Fixed bug with only getting one level when there was enough XP for multiple levels.
  691. = Fixed bugs with the way /mctop displayed
  692. = Fixed issues with custom characters & locale files.
  693. = Fixed double explosion for Blast Mining
  694. = Fixed Blast Mining not giving triple drops when it should
  695. ! Changed Bleeding to now stack to a finite number on Monsters and will wear off eventually
  696. ! Changed how we handled the config file to prevent any bugs when returning values
  697. ! Changed locale files to use a new naming scheme. This breaks ALL old locale files. If you want to assist with re-translating anything, go to getlocalization.com/mcMMO
  698. ! Changed /mcremove to check for users in the MySQL DB before sending queries to remove them
  699. ! Changed how the tree feller threshold worked for the better
  700. ! Changed /mcremove to no longer kick players when they are removed from database
  701. ! Changed /mcremove to work on offline users for FlatFile
  702. ! Changed PlayerProfile constructor to always take a boolean
  703. ! Changed getPlayerProfile function to work for online & offline users
  704. ! Changed Archery's Daze to deal 4 DMG on proc (2 Hearts)
  705. ! Changed /addlevel command to work for offline users
  706. ! Changed party & admin chat handling to be nicer to developers
  707. ! Changed /mcrefresh to work from console
  708. ! Changed /mcrefresh to work for offline players
  709. ! Changed UpdateXPBar function to hopefully avoid errors
  710. ! Changed /party to show offline party members
  711. ! Changed Blast Mining requirements, now asks for the player to be crouching
  712. Version 1.3.05
  713. + Added Skill Shot to Archery which increases damage dealt by 10% every 50 skill levels (caps at 200%)
  714. + Added ExperienceAPI and PartyAPI classes for developer use
  715. + Added ability to cap overall power level
  716. + Added showing powerlevel below a persons name if you run Spout (optional)
  717. = Fixed errors when Spout would disable itself after start-up
  718. = Fixed XP bar not updating when XP was gained
  719. = Fixed bug with repairing wooden tools
  720. = Fixed bug where spawned wolves only had 8 health.
  721. = Fixed bug where rare Treasures from Excavation were dropping too often
  722. = Fixed bug where Skull Splitter & Serrated Strikes could be used without permissions.
  723. = Fixed bug where API functions were set to static
  724. = Fixed bug where mmoedit threw errors when modifying an offline user
  725. = Fixed dupe exploit with Blast Mining
  726. ! Changed Tree Feller to account for ability durability loss but not leaves.
  727. ! Changed bypass node for Arcane Forging to not default to true for OPs
  728. - Removed Ignition from Archery
  729. - Removed McMMOPlayerRepairEvent - was basically a duplicate of McMMOPlayerRepairCheck but couldn't be cancelled.
  730. Version 1.3.04
  731. + Added McMMOPlayerRepairEvent for API usage - fires after completion of a repair.
  732. + Added McMMOPlayerRepairCheckEvent for API usage - fires before repair process begins, can be cancelled.
  733. + Added ability to get skill level from McMMOPlayerExperience events
  734. + Added McMMOPartyTeleportEvent for API usage - fires before a successful teleportation would occur.
  735. + Added McMMOPartyChangeEvent for API usage - fires whenever a player joins or leaves a party
  736. = Fixed Shake ability dropping bonemeal instead of ink for squids.
  737. = Fixed Green Terra & Super Breaker awarding 4x drops at high levels.
  738. = Fixed summoned ocelots never changing skins.
  739. = Fixed bug with Disarm not working
  740. = Fixed some API functions not being visible
  741. = Fixed bug where /ptp worked on dead party members
  742. ! Changed MySQL to reload all player information on reconnection
  743. ! Changed event package structure - be sure to update these if you're using the API in your plugin
  744. Version 1.3.03
  745. + Added Ocelots to Taming XP tables
  746. + Added ability to summon Ocelots with Call of the Wild
  747. + Added offline user functionality to mmoedit
  748. + Added bookshelves to list of blocks that don't trigger abilities.
  749. + Added 'mcmmo.repair.arcanebypass' permission node to bypass Arcane Repair and keep your enchantments
  750. + Added config option to disable Herbalism's instant wheat replanting
  751. + Added LOTS of new permissions nodes. *CHECK PLUGIN.YML FOR UPDATES*
  752. + Added Italian locale file - thanks Luxius96!
  753. + Added ability to inspect Ocelots with Beast Lore
  754. + Added console functionality to mctop
  755. = Fixed Green Terra not awarding Triple Drops
  756. = Fixed ClassCastException from Taming preventDamage checks
  757. = Fixed issue with Blast Mining not seeing TNT for detonation due to snow
  758. = Fixed issue with block interaction returning NPEs
  759. = Fixed issue where every block broken had a mining check applied
  760. = Fixed issue where every block broken had a herbalism check applied
  761. = Fixed issue where blocks weren't being removed from the watchlist
  762. = Fixed exploit where you could use /ptp to teleport to anyone
  763. = Fixed bug where Green Terra didn't work on Stone Brick
  764. = Fixed bug where Tree Feller could be used without permissions
  765. = Fixed exploit where falling sand & gravel weren't tracked
  766. = Fixed exploit where Acrobatics could be leveled via Dodge on party members.
  767. = Fixed exploit where you could gain combat XP on animals summoned by Call of the Wild
  768. ! Changed mcMMO to save profiles only when the profile is about to be discarded rather than on player quit
  769. ! Changed MySQL to try to reconnect every 60 seconds rather than infinitely which caused server hangs
  770. ! Changed mcMMO to be better about saving player information on server shutdown
  771. ! Changed PTP to prevent teleporting if you've been hurt in the last 30 seconds (configurable)
  772. ! Changed Chimera Wing failure check to use the maxWorldHeight.
  773. ! Changed inspect failed message to say inspect rather than whois
  774. ! Changed Call of the Wild to activate on left-click rather than right-click
  775. ! Changed Blast Mining to track based on Entity ID vs. Location
  776. ! Changed mmoedit to save a profile when used (this will make mctop update)
  777. ! Changed a few Runnable tasks to have their own classes
  778. ! Changed parties so that a player will leave their existing party if they enter a world where they don't have party permissions.
  779. ! Changed Call of the Wild to summon animals already tamed.
  780. ! Changed mob spawner tracking to use new Metadata API
  781. ! Changed block watch list to use new Metadata API
  782. ! Changed around a few config options, including the ones for mySQL. *YOU NEED TO REDO YOUR CONFIG FILE*
  783. - Removed 'true/false' debug message from Inspect command
  784. Version 1.3.02
  785. + Added in game guides for Mining, Excavation, and Acrobatics. Simply type /skillname ? to access them
  786. ! Changed Tree Feller to hand out 1/4 of normal XP for each JUNGLE LOG block it fells
  787. ! Changed Tree Feller to only fell trees if you have enough durability
  788. ! Changed Tree Feller to cause injury if your axe splinters from a failed Tree Feller attempt
  789. ! Changed invincibility checks in EntityDamage listeners to accommodate for vanilla MC behaviour
  790. ! Changed Ignition to add fire ticks rather than replacing them.
  791. ! Changed Axes critical to have a max critical rate of 37.5% down from 75%
  792. = Fixed bug where Taming defensive checks got called twice
  793. = Fixed Shake not working correctly
  794. = Fixed bug with Axes command displaying wrong Greater Impact bonus damage
  795. = Fixed bug where Impact didn't apply bonus damage
  796. = Fixed Impact proccing multiple times in a row
  797. = Fixed bug where PVE skills didn't level
  798. Version 1.3.01
  799. = Fixed bug where Tree Feller had no cooldown
  800. = Fixed bug with activating Skull Splitter after using Tree Feller
  801. Version 1.3.00
  802. + Added ability to customize drops for Excavation skill (treasures.yml)
  803. + Added ability to customize drops for Fishing skill (treasures.yml)
  804. + Added messages to nearby players when your abilities wear off
  805. + Added jungle trees to Woodcutting XP tables
  806. + Added player notification for when they stop Bleeding
  807. + Added configuration option to control mcMMO reporting damage events
  808. + Added hunger regain bonuses to Herbalism skill
  809. + Added Blast Mining subskills to Mining
  810. + Added Fast Food Service subskill to Taming
  811. + Added size limit to Tree Feller in config as Tree Feller Threshold
  812. + Added /inspect (works on offline players)
  813. + Added /addlevels commands
  814. + Added /mcremove command which lets you remove users from MySQL or FlatFile
  815. + Added config values for XP multipliers for different hostile mobs
  816. + Added 'mcmmo.commands.inspect' permission node for the new /inspect command
  817. + Added Impact & Greater Impact subskills to Axes
  818. + Re-added mcMMO reporting damage events
  819. = Fixed bug with updating MySQL tables to include fishing on servers using custom table prefixes
  820. = Fixed bug where Disarm didn't work at all ever
  821. = Fixed bug where Swords command showed Bleed Length twice instead of Bleed Chance
  822. = Fixed bug where Tree Feller wasn't checking for Tree Feller permission
  823. = Fixed bug where Leaf Blower required Tree Feller permissions rather than Woodcutting permissions
  824. = Fixed Leaf Blower preventing the use of shears to collect leaves
  825. = Fixed Green Thumb & Green Terra not consuming or requiring seeds to replant Wheat
  826. = Fixed Super Breaker & Giga Drill Breaker failing to damage tools
  827. = Fixed Tree Feller not giving proper XP for different kinds of trees
  828. = Fixed Skill Abilities conflicting with NoCheat
  829. = Fixed memory leak with mob spawner tracking
  830. = Fixed /mcability not respecting permissions
  831. = Prettied up new config files
  832. = Various skill function optimizations
  833. ! Changed how mcMMO calculates distance between two points (optimizations)
  834. ! Changed how mcMMO handles MySQL connections (optimizations)
  835. ! Changed the description /mcmmo provides to be more up to date and relevant
  836. ! Changed mcMMO user information to be stored for 2 minutes after log out to reduce lag on rejoins
  837. ! Changed Food+ to be named Farmer's Diet in Herbalism
  838. ! Changed default values of Woodcutting XP tables
  839. ! Changed 'Pine' to be renamed 'Oak' in Woodcutting XP tables
  840. ! Changed the name of Unarmed Apprentice/Mastery to Iron Arm Style
  841. ! Changed Axes to gain bonus damage every 50 skill levels
  842. ! Changed Unarmed to start with a +3 DMG (1 Heart = 2 DMG) bonus from Iron Arm Style to make leveling it more viable
  843. ! Changed Unarmed to gain bonus damage every 50 skill levels
  844. ! Changed Unarmed to gain more bonus damage total than before
  845. ! Changed Unarmed to have a max disarm chance of 33.3% rather than 25%
  846. ! Changed Tree Feller to take down entire trees
  847. ! Changed mob spawn tracking to use Unique Entity ID instead of Entity Object
  848. ! Changed stats command name to mcstats for better plugin compatibility
  849. ! Changed god mode to turn off if player enters world where he does not have mcgod permission
  850. ! Changed Taming to also gain XP from animal taming
  851. ! Changed Swords Bleeding effect to never kill
  852. ! Changed Bleeding to never go beyond 10 ticks
  853. ! Changed to use Bukkit's built-in ignoreCancelledEvents system
  854. ! Changed chat logging for /p & /a
  855. ! Changed Tree Feller to use per-use ArrayList
  856. - Removed /mcstats console functionality
  857. - Removed /whois command (replaced with /inspect which has similar functionality)
  858. - Removed Master/Apprentice chat notifications to reduce spam
  859. - Removed MySpawn system (You can still use Chimaera Wings) due to being outdated and unwanted
  860. - Removed duplicate settings in config.yml
  861. - Removed unused settings from config.yml (HP Regen)
  862. - Removed Nether Brick from Mining XP Tables
  863. - Removed Stone Brick from Mining XP Tables
  864. Version 1.2.12
  865. - Fixed issue that caused terrible MySQL performance and negative XP on levelup (Issue #134)
  866. - Fixed addxp command taking xprate and skill modifiers into account
  867. - Added anonymous usage statistics (you can opt out in plugins/PluginMetrics/config.yml)
  868. - Modified onEntityDamage priority to have better compatibility with other plugins (Factions, WorldGuard, etc...)
  869. - Fixed /mcgod & /mmoedit permissions defaulting to true
  870. - Fixed Fishing not working or handing out XP
  871. - Fixed error with Skull Splitter / Serrated Strikes that caused server instability and log spam
  872. - Fixed config.yml not having values for End Stone & other new mining blocks
  873. - Fixed Green Thumb/Green Terra not correctly planting wheat (Issue #133)
  874. Version 1.2.11
  875. - Removed legacy Permission & PEX dependency. (PEX still works fine with mcMMO)
  876. - Made Smooth Brick to Mossy Brick and Dirt to Grass for green thumb configurable (Issue #120)
  877. - Added MagmaCube to XP tables
  878. - Made optimizations to Skull Splitter/Serrated Strikes
  879. - Made it so players take damage if they try to log out with Serrated Strikes stacked onto them (Issue #131)
  880. - Changed mcMMO to save data periodically to optimize performance with FlatFile & MySQL (Issue #138)
  881. - Added a configurable save interval for the new save system
  882. - Fixed a bug with the odds calculations for Serrated Strikes
  883. - Fixed several commands not working from console (mmoedit, etc..) (Issue #150)
  884. - Added a success message when executing xprate from console
  885. Version 1.2.10
  886. - Fixed issue with receiving Woodcutting XP for all blocks broken (Issue #103)
  887. - Fixed issue with Spout images & sounds not working (Issue #93)
  888. - Fixed typo with repairing Leather Armor & Bows
  889. - Fixed issue with Silk Touch & Double/Triple drops not working properly
  890. - Fixed conflict with NoCheat plugin & Super Breaker/Giga Drill Breaker/Berserk/Leaf Blower (Issue #104)
  891. - Fixed counter-attacking non-LivingEntity (Issue #100 & Issue #107)
  892. - Fixed various bugs with Leaf Blower
  893. - Added Monitor & ignoreCancelledEvents to onBlockPlace
  894. - Made Anvil ID configurable
  895. Version 1.2.09
  896. - Fixed issue with Repair Mastery (Issue #47)
  897. - Made Arcane Forging fully configurable (Pull Request #52)
  898. - Made Fishing configurable (Pull Request #60)
  899. - Changed timer to be a bit more efficient (Issue #19)
  900. - Changed to fire EntityDamageEvents for all damage done by mcMMO
  901. - New custom event for developers McMMOPlayerLevelUpEvent
  902. - New custom event for developers McMMOItemSpawnEvent
  903. - Changed LoadProperties from the old Configuration to FileConfiguration
  904. - Removed aliasing from config.yml
  905. - Fixed mining procs from Super Break & Silk Touch
  906. - Unused smelt property removed
  907. - Minor optimizations
  908. - Fix for setting properly block damage values
  909. - Initial skill level capping added
  910. - Initial command alias framework added
  911. - Fixed abilities not handling Unbreaking items
  912. - Fix for treefeller glitch
  913. - Super secret anniversary easter egg!
  914. Version 1.2.08
  915. - Changed Bukkit events to new event system
  916. - Changed aliasing to send both the mcmmo command and the command used.
  917. - Changes in combat exp (Pull Request #49)
  918. - Repair for bows & leather armor (Pull Request #46)
  919. - Fixed missing images (Pull Request #45)
  920. - POM Changes for dependencies (Pull Request #36)
  921. - Fishing & Repair fixes (Pull Request #31)
  922. - Fixed CraftOfflinePlayer issue (Issue #212) errors for offline wolf owners
  923. - Pull in commit from @NuclearW for issue from previous commit
  924. Version 1.2.07
  925. Fixed mctop not working at all (whoops!)
  926. Fixed problem with multithreading in mcMMO causing errors
  927. Fixed bug with Repair where it would remove the enchantments if you could not even repair the item
  928. The command mmoupdate now runs in its own thread to ease the burden on the server
  929. Version 1.2.06
  930. German translation has been updated
  931. Fixed fishing not being applied to MySQL DB when converting from Flat File -> MySQL
  932. Fixed mctop not taking Fishing into account some of the time
  933. Fixed bug where Taming would try to grab the name of offline players
  934. Fixed bug where Fishing would try to add an enchantment level not normally possible
  935. Fixed another bug with mmoedit and Fishing
  936. Added option to only allow tools to ready when you are sneaking, this is off by default
  937. Added Brewing Stand & Enchanters table to the list of blocks that won't cause you to ready your tool on right click
  938. Version 1.2.05
  939. Fixed my fix of not being able to place blocks near/on Anvils
  940. Fixed resources in inventory not correctly updating after Repair
  941. Version 1.2.04
  942. Fixed bug where you could not place blocks near/on the Anvil
  943. Version 1.2.03
  944. skills2 and experience2 will be removed from MySQL DB automagically when this version first runs
  945. Fishing is now stored in skills and experience tables on the MySQL DB as it should have been
  946. Fishing will now save properly for MySQL
  947. Fishing will now work properly with mctop for those using MySQL
  948. Fixed problems with mmoedit and fishing
  949. Version 1.2.02
  950. Added measures to prevent easy xp from hacks that cause a ridiculous amount of clicks per second
  951. Fixed bug where Call Of The Wild used only 1 bone to summon
  952. Reduced Endermen XP from 3x to 2x
  953. The number of bonus fish caught from fishing has been reduced
  954. Fishing XP reduced from 1500 to 800
  955. Fishing XP is now configurable in the config file
  956. Version 1.2.01
  957. Added a setting to turn off abilities completely from config
  958. Added a setting to just turn off ability messages from config
  959. Fixed the bug with sword repair
  960. Fixed mcMMO not working properly with Spout
  961. Added Fishing XP icon to Normal/Retro HUDs for Spout
  962. Added icons to Spout notifications for leveling Fishing
  963. Added Fishing Retro XP bar color customization to config file
  964. The number of bones required to use Call of The Wild is now configurable
  965. Reduced the XP animals would give from 1.5x to 1x
  966. Removed current durability value message from Repairing
  967. Fixed bug where Arcane Forging failed to display messages
  968. Fixed bug where Arcane Forging tries to downgrade level 1 enchants
  969. Fixed bug where Arcane Forging always kept enchantments if you had under 100 Repair skill
  970. Version 1.2.00
  971. Added Fishing Skill
  972. Added Call Of The Wild to Taming
  973. Added Arcane Forging to Repair
  974. Added new mobs to XP tables
  975. Added Master/Apprentice system to the Party system
  976. Animals now give xp to combat skills (those poor sheep ;_;)
  977. Removed unnecessary sorcery permissions from plugin.yml
  978. Version 1.1.17
  979. XP gained in combat is now softcapped by the remaining health of the entity you are damaging, preventing many exploits.
  980. Players in Creative mode no longer gain XP
  981. Compiled against latest Spout & CraftBukkit
  982. Added World PVP check to Ignition, should no longer ignore PVP settings
  983. Enemies should no longer grant XP when hit during their death
  984. Fixed an exploit that led to unlimited ability use
  985. Possibly fixed a bug where the same player would be listed multiple times in mctop
  986. Added author and description to plugin.yml
  987. /mmoedit and /addxp are useable from the console now
  988. Swearword's statistics tracking removed (He stopped the service, so its gone now.. On a positive note, I did find out 1000-1500 servers installed mcMMO a day)
  989. Version 1.1.16
  990. Added Melons to Herbalism xp tables
  991. Endermen added to Combat skill xp tables
  992. Silverfish added to Combat skill xp tables
  993. CaveSpider added to Combat skill xp tables
  994. Version 1.1.15
  995. Smooth Brick added to Green Terra
  996. Green thumb can be used to spread moss to Smooth Brick now
  997. Implemented a ghetto fix for the sword durability bug (real fix sometime soon)
  998. Added Spain Spanish localization (es_es)
  999. Version 1.1.14
  1000. [1.8] Removed the Archery fire rate limiter as its no longer necesarry due to changes in game mechanics
  1001. [1.8] Removed the bonus damage from Archery (I'll rework this skill soon)
  1002. [1.8] Removed the food bonuses to healing Herbalism provided due to the change of eating in game mechanics
  1003. [1.8] Swords no longer parry, no need to compete with in game mechanics
  1004. [1.8] mcMMO no longer has an HP Regen system, no need to compete with in game mechanics
  1005. [SPOUT] mcMMO now transfers files between [MC Server] -> [Client] rather than [Webserver] -> [Client]
  1006. [SPOUT] Temporarily disabled the PartyHUD due to some performance issues
  1007. [SPOUT/CONFIG] mcMMO now allows for disabling of the party HUD with the node Spout.Party.HUD.Enabled
  1008. [BUG] Fixed a few problems with readying abilities for Woodcutting/Axes
  1009. [MYSQL] Improvements have been made to the performance of MySQL thanks to krinsdeath
  1010. [CONFIG] Spout.Party.HP tree removed, replaced with Spout.Party.HUD
  1011. [CONFIG] Added an option for Excavation to require use of a shovel, on by default
  1012. [COMPATIBILITY] Changed the listener priority for OnEntityDamage from High to Monitor (Should make mcMMO compatible with Worldguards pvp regions among other things)
  1013. [COMPATIBILITY] Made party/admin chat modes more compatible with chat plugins (vChat)
  1014. [API] Added addXpOverride for modders, this will ignore skill modifiers
  1015. [SPOUT] The option to change the weburl of mcMMO Images/Sounds has been removed, if you want to customize mcMMO images/sounds you can open mcMMO.jar and replace them there
  1016. [LOCALE] Portuguese Brazil locale added (Code: pt_br)
  1017. [MISC] Added some experimental usage tracking, you can opt out of this in /plugins/stats/config.yml (Once its generated, may require 2 restarts)
  1018. Version 1.1.13
  1019. Pets are removed from party bars
  1020. Version 1.1.12
  1021. mcMMO now downloads files when you join the server to provide the best experience
  1022. mcMMO now uses a brand new Party HUD by Rycochet (from his mmoParty plugin)
  1023. Fixed the xpbar and xpicon settings in config to work properly
  1024. Fixed infinite HP exploit with Herbalism
  1025. Fixed bug where herbalism would heal out of the players normal health range
  1026. Fixed bug where entering ':' into your party name caused stat loss among other things
  1027. Fixed issue with block break listener priority
  1028. Version 1.1.11
  1029. mcMMO now properly cancels its Async taks when disabled
  1030. Fixed newly generated configs using 2 instead of 1 for skill multipliers
  1031. Version 1.1.10
  1032. Added default hud setting to config
  1033. Fixed bug where newly generated configs used old xp gain numbers
  1034. Version 1.1.09
  1035. Fixed mcMMO to run fine without Spout :)
  1036. Version 1.1.08
  1037. Fixed repair being 10x slower to level than normal
  1038. Version 1.1.07
  1039. Fixed the default HUD being set to RETRO instead of STANDARD
  1040. Version 1.1.06
  1041. mcMMO menu implemented! Default is 'M', change this in config
  1042. Retro HUD implemented!
  1043. Retro XP fill color is completely customizable on a per skill basis
  1044. New levelup sound thanks to @Rustydaggers !
  1045. With the help of Randomage the XP Formulas have been vastly changed for flexibility
  1046. Global modifiers and skill modifiers now support decimals
  1047. Global formula modifier dropped from config
  1048. GigaDrillBreaker/Berserk doesn't drop clay blocks anymore
  1049. Fixed bug where Herbalism didn't heal more for bread/stew when right clicking a block
  1050. Fixed bug where Wheat did not use the values form the config file
  1051. Fixed bug where Archery gave xp for inflicting self injury
  1052. Watch added to clay loot tables and maps remove from clay loot tables
  1053. Version 1.1.05
  1054. Maps dropped from excavation are created correctly, and represent the area they are found in
  1055. Fixed an exploit with clay and excavation
  1056. Fixed a NPE with locking xp bars
  1057. Fixed the !AdeptDiamond! localization error when repairing diamond with a skill below 50
  1058. Version 1.1.04
  1059. Removed URL settings for XPBAR/XPICON/HPBAR
  1060. Added single URL setting for mcMMO
  1061. Changed default host from Dropbox to Rycochet's webserver (with apparently unlimited bandwidth!, thanks Rycochet)
  1062. Fixed Repair noise not getting played
  1063. Fixed a small memory leak with party health bars
  1064. Version 1.1.03
  1065. Fixed a few images being hard-coded still rather than configurable
  1066. Version 1.1.02
  1067. Fixed bug where toggle for xpicon didn't work
  1068. Fixed bug where Excavation gave gravel drops to grass
  1069. Excavation now uses more enums
  1070. Version 1.1.01
  1071. Fixed toggles for hpbar/xpbar not working
  1072. Version 1.1.0
  1073. Brand new XP Bars, Health bars, and Skill Icons designed by BrandonXP
  1074. Added /xplock <skillname> to lock the xp bar to a skill
  1075. Repairing metal now has a sound effect
  1076. Shears added to Repair
  1077. MySpawn now works correctly when you are in the nether
  1078. MySpawn message when you right click a bed is now squelched
  1079. Intervals at which players renegerate hp have doubled in length (making it take 100% longer to regenerate than before)
  1080. Rewrote many variables stored per player to be integer instead of long, reducing overall memory usage of mcMMO
  1081. Rewrote the Timer mcMMO relies on to instead use the BukkitScheduler for performance
  1082. Fixed the party member list of /party
  1083. Fixed bug where Swords would counter-attack Projectiles
  1084. Removed a debug message when repairing diamond armor
  1085. Changed chat to use getDisplayName() instead of getName()
  1086. Changed chat priority from lowest to highest
  1087. Added Clay to excavation
  1088. Added new items to Clay's loot tables
  1089. Archery now works with the latest CB
  1090. Version 1.0.50
  1091. New /xprate command for those with mcmmo.admin permissions!
  1092. mcMMO now uses Spout instead of BukkitContrib
  1093. BukkitContrib support dropped
  1094. XP Formula is now 100+(skill level value * skill modifier * global modifier) thanks to suggestion
  1095. Fixed bug where /mmoupdate used the old directory instead of the new one to find the flat file
  1096. Fixed bug where Unarmed Mastery damage bonus only did as much as Unarmed Apprentice
  1097. Fixed bug where Pumpkins did not give out XP
  1098. Coordinates removed from /whois as they didn't really fit
  1099. /mcgod and /mmoedit now require permissions to be setup in some shape or form to be used
  1100. Lapus renamed to Lapis in config
  1101. Version 1.0.49
  1102. Updated German locale
  1103. Fixed bug where using the party system on a MySQL setup caused errors when writing to non-existent files
  1104. Fixed bug where using /accept caused a NPE (hopefully)
  1105. Fixed a few missing descriptions for commands
  1106. Version 1.0.48
  1107. Updated French Translation
  1108. Updated German Translation
  1109. Updated Polish Translation
  1110. Placed Coal Ore and Redstone Ore won't give XP anymore
  1111. Fixed unusually high memory usage at startup
  1112. Added many features to the party system written by NuclearW
  1113. Version 1.0.47
  1114. Fixed another BukkitContrib error for servers not running BukkitContrib
  1115. Version 1.0.46
  1116. Fixed bug preventing Excavation from gaining skill
  1117. Version 1.0.45
  1118. Corrected /stats showing Repair XP as Level for Repair
  1119. Corrected /repair showing Repair XP as Level for Repair
  1120. Corrected /whois showing Repair XP as Level for Repair
  1121. Version 1.0.44
  1122. Fixed my 'fix' of BukkitContrib errors with Tree Feller
  1123. Version 1.0.43
  1124. Stopped things from being auto-smelt'd
  1125. Version 1.0.42
  1126. Corrected 2 more errors involving not running BukkitContrib
  1127. Version 1.0.41
  1128. Fixed errors using Tree Feller if your server wasn't running BukkitContrib (sorry!)
  1129. Fixed some more leftover stuff involving the new half-finished mining skill
  1130. Fixed excavation's Giga Drill Breaker not working on placed blocks
  1131. Version 1.0.40
  1132. Fixed errors if your server wasn't running BukkitContrib
  1133. Version 1.0.39
  1134. mcMMO won't auto-download and auto-run BukkitContrib anymore
  1135. Version 1.0.38
  1136. Commented code for the half-finished Infernal Pick subskill (Whoops)
  1137. Version 1.0.37
  1138. The donation message in /mcmmo is now toggle-able
  1139. The anvil message now only gets shown the first time you place an anvil (after login)
  1140. Reworked /mcmmo (an improvement I would say)
  1141. Added /mcmmo text to localization file
  1142. Archery fire rate now configurable
  1143. Berserk mode stops items from being collected
  1144. Taming no longer receives xp from wolves being harmed
  1145. Fixed bug where /stats required Tree Feller permission to show Woodcutting skill
  1146. Fixed bug where players with mcgod could be harmed by AoE
  1147. Fixed bug where modifying a skill also modified the xp to the same amount (when it should be zero)
  1148. BukkitContrib Stuff
  1149. Added a pop-up when placing an Anvil
  1150. Added pop-ups on levelup
  1151. Added basic sound effects to various abilities (Berserk, Tree Feller, Super Breaker, Leaf Blower, etc...)
  1152. Code Stuff
  1153. Added checkXp(SkillType, Player) for plugin devs (use this after modifying XP to check for levels)
  1154. Added getPlayerProfile() which returns a PlayerProfile object for plugin devs (You can do almost everything with this object)
  1155. 100% more enums
  1156. Changed how checking skill xp worked to be more efficient
  1157. Version 1.0.36
  1158. mcMMO now properly supports Bukkit/PEX/Permissions for Permissions
  1159. Config.yml will no longer generate Performance Debugging nodes
  1160. Registered permission nodes to plugin.yml
  1161. Some more changes to Permissions code
  1162. Fixed bug where Super Breaker activated where it shouldn't
  1163. Fixed bug with enabling/disabling mcgod in config.yml
  1164. Fixed bug with Excavation not kicking in until 1 level higher
  1165. Version 1.0.35
  1166. Added a Toggle for Chimaera Wing in config.yml
  1167. Added customization of what item is used for Chimaera Wing in config.yml
  1168. Fixed bug with randomly receiving Taming XP
  1169. mcmmo.users file moved into /plugins/mcMMO/FlatFileStuff/
  1170. Leaderboard files now moved into /plugins/mcMMO/FlatFileStuff/Leaderboards
  1171. Locale files now have the prefix locale_ instead of messages_
  1172. Locale files are now located inside com/gmail/nossr50/locale/ instead of com/gmail/nossr50/
  1173. Updated the code that handles permissions (this may mean 3.1.6 will finally play well!)
  1174. Some more source code organization
  1175. Fixed warnings for compiler
  1176. Removed dependencies on CraftBukkit
  1177. Registered commands to OnCommand
  1178. Removed performance debugging
  1179. Removed some useless settings from the config file
  1180. Version 1.0.34
  1181. Fixed the PVP setting determining whether or not you would hurt yourself from AoE Abilities
  1182. Added Dutch (nl) language support
  1183. Super Breaker now gives the correct XP as determined by config.yml
  1184. Sand Stone XP is now configurable and no longer shares the 'stone' node
  1185. /mining now shows mining values instead of taming values
  1186. Version 1.0.33
  1187. Fixed the toggle for the Excavation drop 'Cocoa Beans'
  1188. Fixed bug where Unarmed users could disarm without being bare handed
  1189. Cocoa Beans now have an XP modifier in config.yml
  1190. You can now toggle whether or not Mobspawners will give XP (in config.yml)
  1191. MySQL version now makes requests to the MySQL server less frequently (should help performance)
  1192. Fixed bug with Skull Splitter hitting the user
  1193. Version 1.0.32
  1194. Added "General.Performance.Print_Reports" node to config.yml to help identify causes of performance issues
  1195. Fixed bug of swords users hurting themselves with serrated strikes
  1196. Version 1.0.31
  1197. Fixed bug of trying to cast Animals to non-animals
  1198. Version 1.0.30
  1199. Mobs that spawn from spawners no longer give XP (for reals this time)
  1200. Version 1.0.29
  1201. Mobs that spawn from spawners no longer give XP (again)
  1202. Fixed bug where Serrated Strikes did not Bleed additional targets
  1203. Identified and solved a potential memory leak in Bleed Simulation
  1204. Renamed the Object Config to Misc and rewrote parts of it
  1205. Rewrote Party/Admin/God toggles
  1206. Added Polish language support (pl)
  1207. Version 1.0.28
  1208. Actually fixed /stats showing excavation values for swords
  1209. Made some improvements to how Bleed Simulation was handled for different entity types
  1210. Obsidian now does normal durability damage during Super Breaker
  1211. Version 1.0.27
  1212. Fixed /stats showing excavation values for swords
  1213. Hopefully fixed a wide range of NPE errors
  1214. Updated German (de) localization
  1215. Version 1.0.26
  1216. Fixed accidentally making power levels go above 9,000
  1217. Version 1.0.25
  1218. Compatible with the latest CB
  1219. Beast Lore now functions correctly
  1220. Wolves are no longer invincible to players
  1221. Changed the look of Beast Lore
  1222. Skill info pages now show your stat in that skill (if you have permission)
  1223. /stats and /whois has been alphabetized and divided into three categories (Gathering/Combat/Misc)
  1224. Abilities will not trigger on Trap Doors
  1225. Version 1.0.24
  1226. Now compatible with latest RB (928)
  1227. Taming now receives XP from your wolves harming foes
  1228. Taming is now easier to level
  1229. Green Thumb now drops seeds when harvesting Wheat
  1230. Version 1.0.23
  1231. Modified Bleed Simulation to fix performance problems
  1232. Rewrote MySpawn to be more efficient when calculating time left
  1233. Rewrote Skills to be more efficient when calculating time left
  1234. Version 1.0.22
  1235. Added 'Name' nodes to commands for renaming them
  1236. Version 1.0.21
  1237. Fixed Skull Splitter length in /axes displaying incorrectly
  1238. Fire rate limiter now correctly uses the value in the config file
  1239. Stone XP now correctly uses the value in the config file
  1240. Cobble -> Mossy now correctly uses the value in the config file
  1241. Removed setmyspawn from config file as it serves no purpose
  1242. All commands now have an 'Enabled' node in the config file that when set to false disables the command completely
  1243. Fixed color scheme inconsistency for Mining in /whois results
  1244. Version 1.0.20
  1245. Fixed Array Index Out of Bounds error
  1246. Version 1.0.19
  1247. Removed a failsafe for the Timer that is no longer necessary (should improve performance)
  1248. Fixed /myspawn not working by rewriting it :3
  1249. Fixed exploit where players could break a freshly placed mushroom for XP
  1250. MySQL User Passwords can now be blank (Although you really should have a password...)
  1251. Fixed a few NPE errors
  1252. Version 1.0.18
  1253. Fixed MySQL default TablePrefix
  1254. Fixed Wheat not being configurable
  1255. Version 1.0.17
  1256. Brand new YAML Configuration file
  1257. Ability to configure XP for all gathering skills in config file
  1258. German Language added to mcMMO
  1259. French Language added to mcMMO
  1260. MySpawn will no longer heal players
  1261. /<skillname> commands now also check for their localized names for displaying help
  1262. Added many more Strings to localization files
  1263. Added more safeguards to MySpawn for NPE
  1264. Fixed bug where Tree Feller Radius depended on WoodCutting XP rather than Skill Level
  1265. Fixed bug where Readying a Hoe returned a missing localization string
  1266. Added some safeguards into Bleed Simulation to prevent possible memory leaks
  1267. Performance improvements to storing/calling Skill/XP Values
  1268. Plugged a potential memory leak with PlayerProfiles not being removed correctly
  1269. Disabled the mob spawner camping anti-exploit in favor of performance
  1270. Version 1.0.16
  1271. Fixed bug where localization file failed to load
  1272. Changed en_US to lowercase
  1273. mcMMO now requires locale files to be in lowercase
  1274. Fixed a few strings missing from the localization file
  1275. Version 1.0.15
  1276. Removed leftover code that spammed SQL errors
  1277. Version 1.0.14
  1278. Added many missed strings into localization
  1279. Finnish Localization updated for the new strings
  1280. Green Thumb should respect Block Protection plugins now
  1281. Fixed Number Format Exception when loading a PlayerProfile
  1282. Version 1.0.13
  1283. Fixed bug/NPE where stats would not load and therefore 'reset' for players
  1284. Fixed NPE involving /ptp
  1285. Added "enableMOTD" setting to properties file
  1286. Version 1.0.12
  1287. Fixed another NPE error
  1288. Non-Gathering skills should correctly gain XP if PVP is set to false now
  1289. Localization will now support language codes that do not have two parts like "fi"
  1290. Fixed bug where Wiki MOTD message would not be loaded from localization file
  1291. Version 1.0.11
  1292. Fixed bug where players could not gain experience in several skills
  1293. Removed PVP flag from mcmmo.properties as its not needed anymore
  1294. Fixed a few NPE errors
  1295. Mushroom XP reduced from 25 to 15
  1296. Fixed an exploit where players who just logged in could be farmed for experience because they were invulnerable
  1297. Version 1.0.10
  1298. Added Localization/String Customization
  1299. Mushroom XP reduced from 40 to 25
  1300. Removed "clears inventory" warning in /mcc for /myspawn since this no longer happens
  1301. Version 1.0.09
  1302. Fixed the NPE that occurs when players gain experience (Sorry!)
  1303. Fixed bug where /myspawn & /clearmyspawn would work if MySpawn was disabled in the properties file
  1304. Changed strings containing "MMO" to read "mcMMO"
  1305. Removed a lot of unused or unnecessary variables from the PlayerProfiles in mcMMO, this should lower the memory footprint
  1306. Added getXpToLevel() for modders
  1307. Version 1.0.08
  1308. Added removeXP() for modders
  1309. Fixed bug where stone swords only repaired by 33% instead of 50%
  1310. Fixed bug where stone/wooden hoes wouldn't repair
  1311. Big overhaul to how skill values and xp values were handled in the code
  1312. Modifying the players skill levels now sets the corresponding skill xp to zero
  1313. Using Serrated Strikes/Skull Splitter on mobs should no longer harm nearby players when PVP is disabled
  1314. Switching to another weapon after firing your bow should no longer trigger procs for that weapon when the arrow hits
  1315. Slimes/Ghasts now give XP for combat skills
  1316. Added "EnableHpRegeneration" property setting
  1317. Added "EnableMySpawn" property setting
  1318. Version 1.0.07
  1319. Added more repair customization by solarcloud7
  1320. Leaderboards ignore players with the respective stat at 0
  1321. Reconnecting to MySQL will reload player data
  1322. Fixed a NPE with MySQL's Leaderboards
  1323. Removed "Loop iteration" debug message from mcMMO
  1324. Version 1.0.06
  1325. MySQL will attempt to reconnect if the connection is closed
  1326. Breaking the bottom block of Cactus/Reeds will award the correct experience and double drops
  1327. Added support for Minecraft Statistics
  1328. Fixed NPE with /myspawn command
  1329. Version 1.0.05
  1330. PVP interactions now check for permissions before handing out any experience
  1331. Many skill abilities now check for permissions correctly
  1332. All interactions with Taming now check for permissions
  1333. mcMMO now checks for its pvp flag being true before handling pvp interactions
  1334. Version 1.0.04
  1335. Fixed bug where players would be informed incorrectly when their cooldowns refreshed
  1336. Fixed exploit where players could reconnect to reset their cooldowns
  1337. Added new "cooldowns" table to MySQL
  1338. Berserk now breaks through snow
  1339. Lightning no longer gives Taming XP
  1340. Shortened /mcc to fit the screen
  1341. Version 1.0.03
  1342. Bleed will no longer trigger on friendly wolves
  1343. Axes criticals will no longer trigger on friendly wolves
  1344. Version 1.0.02
  1345. Fixed bug where the Timer would start before everything else was ready
  1346. Fixed bug where mcrefresh also required mcability permission node
  1347. Fixed bug where Unarmed was not checking for disarm procs
  1348. Green Thumb now checks for herbalism permissions
  1349. Added "enableGreenThumbCobbleToMossy" to config file, this also changes Green Terra
  1350. AoE abilities now harm wolves
  1351. Version 1.0.01
  1352. Removed debug message when wolves are struck
  1353. Fixed issue with reloading mcMMO when MySQL was enabled
  1354. Fixed a NPE with MySpawn
  1355. Fixed a NPE with removing users from PlayerProfile
  1356. Unarmed no longer starts with a damage bonus
  1357. Unarmed apprentice DMG bonus changed from 3 to 2
  1358. Version 1.0
  1359. Players can now repair Stone/Wood tools
  1360. Fixed duping bug with WG/Block Protection Plugins
  1361. Added Leaf Blower to WoodCutting
  1362. Different Trees give different WoodCutting XP
  1363. Water changing Gravel to Clay removed
  1364. Code Organized/Optimized further
  1365. MySQL Support
  1366. Taming Skill
  1367. Leaderboards
  1368. Players won't hand out XP if they died within the last 5 seconds
  1369. Version 0.9.29
  1370. Fixes critical bug involving water turning anything into clay
  1371. Version 0.9.28
  1372. Green thumb can now spread grass to dirt using seeds
  1373. Adding XP will check for level ups again
  1374. Acrobatics won't hand out XP on death anymore
  1375. Acrobatics will check plugins for the event being cancelled before handing out XP
  1376. Version 0.9.27
  1377. Fixed Herbalism not properly receiving Triple Drops from Green Terra
  1378. Fixed Herbalism not handing out any XP outside of Green Terra
  1379. Fixed Herbalism asking for seeds on things that did not require it
  1380. Version 0.9.26
  1381. Fixed Green Terra going off without readiness
  1382. Fixed Hoe trying to ready when tilling Grass
  1383. Version 0.9.25
  1384. Fixed issue with anti-exploits and Herbalism
  1385. MySpawn works like a hearthstone now, no inv pentality, 1hr cooldown
  1386. Added Green Terra Ability to Herbalism
  1387. Added Green Thumb ability to Herbalism
  1388. Fixed Repair not working for Iron Tools
  1389. Fixed bug where Axes Ability checked for Unarmed Ability Permission
  1390. Added Cocoa Beans to Excavation XP/Loot Tables, Found in Grass/Dirt
  1391. Using Super Breaker on Obsidian significantly damages it compared to other materials
  1392. Added Obsidian to Mining XP Table/Super Breaker
  1393. Added Pumpkins/Reeds/Cactus to Herbalism XP Tables/Double Drops
  1394. Corrected "mcMMMO" to "mcMMO" in MOTD
  1395. Version 0.9.24
  1396. PLAYER_BED_ENTER removed due to its unusual issues
  1397. Added info about the Wiki to the motd
  1398. /mcrefresh will reset if you were recently hurt (Chimaera Wing/HP Regen)
  1399. Fixed Armor Repair not adding XP
  1400. Boosted Repair XP of Armor to match Tools
  1401. Repairing Armor won't trigger Super Repair twice anymore
  1402. Setting your MySpawn now just requires right clicking a bed (still requires the setmyspawn permission node)
  1403. Version 0.9.23
  1404. Players will now announce ability usage within a short distance to nearby players
  1405. Chimaera Wing now takes the world into account
  1406. Acrobatics won't give XP on death, and will fail if you would've died after the damage reduction
  1407. Added yet another check to see if a Player is not in the Users system for NPC mod compatibility
  1408. Version 0.9.22
  1409. Fixed bug where chimaera wing was unusable after being hurt even after the cooldown
  1410. Version 0.9.21
  1411. /mcrefresh fixed to work properly with the new ability monitoring system
  1412. Ability lengths are now based on your skill level directly rather than a tiered system
  1413. Chimaera Wings won't trigger on things they shouldn't (Doors, Chests, ETC)
  1414. Chimaera Wings will properly tell you how long you have to wait to use it if you've been recently hurt
  1415. Version 0.9.20
  1416. Fixed Tree Feller not checking if their cooldown was refreshed and always activating
  1417. /stats and /whois will now show the powerlevel based on permissions
  1418. Shovels will no longer say you've lowered your axe
  1419. /myspawn will no longer say your inventory has been cleared if the server settings disable this feature
  1420. Version 0.9.19
  1421. Fixed Anti-Exploit XP stuff not working
  1422. Version 0.9.18
  1423. Added failsafe to prevent abilities from going on forever, abilities will check if they should've expired when being used in case the Timer fails
  1424. Archery Spam has been nerf'd, you can only fire once per second now (Toggle-able in config file)
  1425. Fixed bug when just having the Admin Chat permission wouldn't allow you to see Admin Chat
  1426. Fixed bug where Axes ability could be used without permission
  1427. Abilities are monitored with Timestamps rather than a Timer monitored tick rate
  1428. When players were last hurt is now monitored with Timestamps rather than a Timer monitored tick rate
  1429. Made Anti XP-Exploits more Robust
  1430. Repair XP is now based on durability restored
  1431. Acrobatics rolling will now reduce damage if you go over the damage threshold
  1432. Acrobatics rolling damage threshold lowered to 10 from 20
  1433. Added Graceful Roll to Acrobatics, hold Shift when falling to do a Graceful Roll
  1434. mcMMO now checks for the blockBreak and EntityDamage events being canceled before proceeding
  1435. Dodge notification shortened
  1436. Dodge won't negate damage completely anymore
  1437. Added 3 more functions for plugin authors to call, getPartyName(Player player), inParty(Player player), and getParties()
  1438. Version 0.9.17
  1439. Players now set their MySpawn by entering a bed, it requires the setmyspawn permission node
  1440. /setmyspawn has been removed
  1441. Compatible with CB 670
  1442. Fixed errors related to Repair
  1443. Abilities will no longer trigger from Bed interactions
  1444. /unarmed will now tell the player when they will receive unarmed master (if they have apprentice)
  1445. Version 0.9.16
  1446. Logs placed by the player won't grant XP/Double Drops anymore
  1447. Added more functions plugin authors can call
  1448. Acrobatics roll has a damage threshold of 20, going above this means a failed Roll
  1449. Version 0.9.15
  1450. Acrobatics will now behave properly
  1451. AoE Abilities ignore wolves (temp fix)
  1452. Added "all" parameter to /mmoedit & /addxp
  1453. After giving XP to a player it will now check for level ups in skills
  1454. Version 0.9.14
  1455. mcMMO checks for abilities being active before sending the fake block break event
  1456. Version 0.9.13
  1457. Fixed excavation ignoring the xpGainMultiplier
  1458. Now compatible with CB 600+
  1459. Fixed bug where Dodge acted maxed out no matter your skill level
  1460. Version 0.9.12
  1461. mcMMO now fakes a block break event for abilities to maximize plugin compatibility
  1462. /herbalism will return the correct values now
  1463. New /addxp command
  1464. Version 0.9.11
  1465. PVE Combat Skills experience is now based on damage dealt
  1466. The Timer will no longer break from Bleed Simulation
  1467. Tree feller no longer "damages" saplings
  1468. Bleed+ (Serrated Strikes) lasts 5 ticks down from 12
  1469. Bleed/Bleed+ now do 2 damage instead of 1
  1470. Power Level is now based on permissions
  1471. Counter Attack added to swords
  1472. Parry is now based directly on Swords skill level
  1473. Parry maximum proc chance raised to 30% from 20%
  1474. Serrated Strikes now properly applies Bleed+ to targets
  1475. Players who parry can no longer be disarmed
  1476. Acrobatics now has a Dodge passive skill reducing damage
  1477. Repair skill now effects how much durability is restored
  1478. Super repair now doubles the repair amount on proc
  1479. Unarmed now starts with a bonus to damage to encourage use
  1480. Unarmed now has two steps to damage scaling, Appentice, and Mastery
  1481. Unarmed disarm now caps at 25% for 1000 skill
  1482. Fixed problem where Archery skill procs would ignore other plugins
  1483. Ignition changed to 25% chance
  1484. Ignition length will be based on archery skill level
  1485. /myspawn now has a warning about the inventory loss penalty in /mcc
  1486. mcMMO Timer now runs in 1 second intervals rather than 2
  1487. Version 0.9.10
  1488. Party invites now show who they are from
  1489. Mushrooms added to Dirt/Grass excavation loot tables, drops with 500+ skill
  1490. mcMMO configuration files property setting names have been changed for readability
  1491. Fixed bug where Gold and Iron wouldn't drop anything during Super Breaker
  1492. Added /mcability info to /mcc
  1493. Potentially fixed NPE error when checking players for being in same party for PVP XP
  1494. Removed sand specific diamond drop from sand excavation loot table, Diamonds can still drop globally for sand
  1495. Added a global XP gain multiplier, increase it to increase XP gained
  1496. Reduced PVE XP for Unarmed, now identical to Axes/Swords
  1497. Changed Chat priority in mcMMO to be higher, this should help plugin conflicts
  1498. Mushroom XP raised to 40 from 10
  1499. Flower XP raised to 10 from 3
  1500. Version 0.9.9
  1501. Fixed problem where entities never got removed from the arrow retrieval list of entities
  1502. Version 0.9.8
  1503. EntityLiving shouldn't be cast to entities that are not an instance of EntityLiving
  1504. Added a null check in the timer for players being null before proceeding
  1505. Version 0.9.7
  1506. Procs/XP Gain will no longer happen when the Entity is immune to damage (Thanks EdwardHand!)
  1507. Axes critical damage versus players reduced to 150% damage from 200% damage
  1508. Fixed bug where Daze might not proc
  1509. Changed archery Daze to follow smooth transition
  1510. Added archery Daze chance info to /archery
  1511. Cooldown lengths are now customizable, they are in seconds and multiplied by 2 by mcMMO
  1512. Version 0.9.6
  1513. Timer checks for player being null before adding them to the mcUsers system
  1514. Cooldowns will now show how much time is remaining when trying to use their respective abilities
  1515. SkullSpliiter will now correctly inform the player when they are too tired to use it
  1516. Acrobatics will no longer give XP if the event was cancelled by another plugin
  1517. Version 0.9.5
  1518. Super Breaker now gives a chance for Triple Drops based on mining skill
  1519. Ability durability loss down from 15 to 2
  1520. Ability durability loss is now toggle-able
  1521. Ability durability loss can be adjusted in the configuration file
  1522. Mining Picks are no longer lowered after activating Super Breaker
  1523. Version 0.9.4
  1524. Flowers won't drop wheat anymore
  1525. Signs won't trigger ability readiness anymore
  1526. Version 0.9.3
  1527. Bug stopping abilities from never wearing of may have been fixed
  1528. Changed color of "X Ability has worn off" to RED from GRAY
  1529. Super Breaker, Giga Drill Breaker, and Tree Feller now damage the tool significantly during use
  1530. Netherrack and Glowstone now give Mining XP
  1531. Netherrack and Glowstone are now effected by Super Breaker
  1532. Abilities will no longer be readied when you right click signs or beds
  1533. Chimaera Wings won't activate on blocks you can interact with and signs
  1534. Abilities now adjust their effects depending on tool quality
  1535. Superbreaker won't break things that tool couldn't normally break
  1536. Giga Drill Breaker will only give triple xp and triple drops for diamond tools, with a reduced effect for lesser tools
  1537. Skull Splitter now has a limit of opponents nearby it will strike based on your tool quality
  1538. Serrated Strikes now has a limit of opponents nearby it will strike based on your tool quality
  1539. Modified /mcmmo description to be a little bit more relevant.
  1540. Version 0.9.2
  1541. Changed priority of some of the mcMMO listeners
  1542. Now when certain abilities are activated it shouldn't say "You lower your x"
  1543. Version 0.9.1
  1544. Fixed "Unknown console command" errors with CB 556
  1545. Added /mcability command to toggle being able to trigger abilities with right click
  1546. Added some more nullchecks for people reporting NPE errors
  1547. Compatibility with NPC mods improved (Mainly for archery!)
  1548. Other plugins can now call inSameParty() from mcMMO to increase compatibility
  1549. Version 0.9
  1550. --NEW CONTENT--
  1551. Woodcutting now has the "Tree Feller" Ability
  1552. Unarmed now has the "Berserk" Ability
  1553. Swords now has the "Serrated Strikes" Ability
  1554. Mining now has the "Super Breaker" Ability
  1555. Axes now has the "Skull Splitter" Ability
  1556. Excavation now has the "Giga Drill Breaker" Ability
  1557. Added /mcrefresh <playername> - tool for refreshing cooldowns
  1558. Unarmed now has the "Deflect Arrows" passive skill
  1559. Chimaera Wing Item Added
  1560. --CHANGES--
  1561. HP Regen & Bleed are back
  1562. Woodcutting will drop the appropriate log on double drop procs
  1563. Herbalism now applies double drops to herbs
  1564. /<skillname> now shows much more information to the player regarding their stats
  1565. Axes skill Critical Strikes are now based directly on your skill level
  1566. Swords skill Bleed chance is now based directly on your skill level
  1567. Unarmed disarm chance is now based directly on your skill level
  1568. Acrobatics now gives XP when you roll
  1569. --BUGFIXES--
  1570. Memory Leak Fixed
  1571. Axes not doing critical strikes
  1572. Gold Armor repair
  1573. Capped skills now have the correct proc chance
  1574. /mmoedit is no longer case sensitive
  1575. More NPE errors fixed
  1576. Many bugs I forgot to write down
  1577. --PLUGIN COMPATABILITY FIXES--
  1578. If combat interactions are cancelled by other plugins mcMMO should ignore the event
  1579. If block damage interactions are cancelled by other plugins mcMMO should ignore the event
  1580. Version 0.8.22
  1581. Fixed bug where Axes did less damage than normal
  1582. Acrobatic rolls now give XP
  1583. Acrobatics XP increased for non-rolls
  1584. Version 0.8.21
  1585. Fixed bug where axe criticals would dupe items
  1586. Version 0.8.20
  1587. 99.99% sure I fixed anvils that suddenly stop working
  1588. Version 0.8.19
  1589. Fixed being able to excavate placed blocks
  1590. Added toggle option to mining requiring a pickaxe
  1591. Added toggle option to woodcutting requiring an axe
  1592. PVP interactions now reward XP based on the damage caused (this is effected by skills)
  1593. PVP XP gain can be disabled in the configuration file
  1594. PVP XP has a modifier, increase the modifier for higher XP rewards from PVP combat
  1595. Version 0.8.18
  1596. Fixed sandstone not being watched for exploitation
  1597. Version 0.8.17
  1598. mcmmo.users moved to plugins/mcMMO/
  1599. Snowballs and Eggs will no longer trigger Ignition
  1600. Loot tables for excavation adjusted
  1601. Mining benefits now require the player to be holding a mining pick
  1602. Woodcutting benefits now require the player to be holding an axe
  1603. Version 0.8.16
  1604. Moved configuration file to /plugins/mcMMO
  1605. Arrows now have a chance to Ignite enemiesw
  1606. Fixed arrows not being retrievable from corpses
  1607. Added info about ignition to /archery
  1608. Version 0.8.14
  1609. Mining, Woodcutting, Herbalism, and Acrobatics proc rates now are based on your skill level directly rather than tiers you unlock via skill levels
  1610. Archery's ability to retrieve arrows from corpses now is based on your skill level directly rather than tiers you unlock via skill levels
  1611. Mining, Woodcutting, Herbalism, Archery, and Acrobatics now show their proc % relative to your skill if you type /<skillname>
  1612. You can now adjust what level is required to repair diamond in the configuration file
  1613. Changed mining XP rates to be a tad higher for some things
  1614. You can now get XP from sandstone
  1615. XP rates increased for gathering glowstone with excavation
  1616. XP rates increased a bit for excavation
  1617. Skill info is now a bit more detailed for certain skills
  1618. Added info about arrow retrieval to /archery
  1619. Version 0.8.13
  1620. Enemies no longer look like they have frozen when they die
  1621. Item duping fix
  1622. Version 0.8.11
  1623. Performance improvements
  1624. Memory leak fixed
  1625. NPE error with MySpawn really fixed
  1626. Version 0.8.9
  1627. Fixed NPE for My Spawn
  1628. Fixed NPE for onBlockDamage
  1629. Bleed proc now correctly checks for Swords permissions
  1630. Version 0.8.8
  1631. Gold can now be repaired
  1632. Tweaked Mining XP gains
  1633. Reorganized code
  1634. Added /mcgod godmode command
  1635. Fixed the pvp toggle in the settings file
  1636. Version 0.8.7
  1637. Removed packet-sending stuff wasn't working anyways
  1638. Fixed another NPE with the TimerTask
  1639. Skills now only show up in /stats if you have permissions for them
  1640. Version 0.8.6
  1641. Added a null check in bleed simulation to prevent a NPE
  1642. Version 0.8.5
  1643. Players are now added to files when they connect (to fix a NPE)
  1644. onPlayerCommand stuff moved into onPlayerCommandPreprocess
  1645. Version 0.8.4
  1646. Fixed another nullpointer error for TimerTask
  1647. Fixed bug making regeneration take twice as long to kick in after combat
  1648. Version 0.8.3
  1649. Modified the timer intervals (from 1 second to 2)
  1650. All skills now have an individual modifier (Set by default to 2)
  1651. There is now a global XP modifier (Set by default to 1)
  1652. Herbalism now correctly follows its skill curve
  1653. Unarmed no longer gives experience for harming other players
  1654. Players can no longer exploit mob spawners for experience
  1655. Version 0.8.2
  1656. Fixed Concurrent Modification Exception
  1657. Fixed some incorrect skill descriptions
  1658. First tier of HP Regeneration is now available from the start
  1659. Fixed bleed proc rate for very high skill levels
  1660. Changed regeneration permissions to 'mcmmo.regeneration'
  1661. Version 0.8
  1662. Archery skill now lets players recover arrows from downed foes
  1663. Health regenerates based on power level
  1664. Added toggle to myspawn clearing player inventory in settings file
  1665. Swords now have a bleed effect
  1666. Rewrote Skill descriptions to be more informative/better
  1667. Version 0.7.9
  1668. XP Curve now follows a new formula
  1669. Acrobatics XP gains changed
  1670. Compiled against permissions 2.1
  1671. Version 0.7.8
  1672. Massive tweaks to XP gain for Archery, Swords, Axes, Unarmed
  1673. Version 0.7.7
  1674. Minor tweak to how players are added to the flat file
  1675. Fixed some nullpointer exceptions when players die
  1676. Version 0.7.6
  1677. Fixed being able to repair diamond armor with below 50 skill
  1678. Myspawn now supports multiple worlds, clearing myspawn will set it to the first world created by the server
  1679. Version 0.7.5
  1680. Removed random checks for herbalism XP
  1681. Herbalism is now called properly (This should fix gaining no xp or double drops)
  1682. Version 0.7.4
  1683. Work around for a bukkit bug that broke my onBlockDamage event
  1684. Added /clearmyspawn
  1685. Version 0.7.3
  1686. Fixed to work with build 424 of CB
  1687. Lowered the XP of gold due to it not being that rare anymore
  1688. Version 0.7.2
  1689. Fixed security flaw where players could access /mmoedit if the server was not running permissions
  1690. Reduced XP gain of woodcutting a bit
  1691. Version 0.7
  1692. Completely rewrote the XP system
  1693. Added an XP skillrate modifier to the settings file
  1694. Version 0.6.2
  1695. Axes now do critical strikes against farm animals
  1696. Removed the "Stupidly Long Constructor"
  1697. Now compatible with the latest CB builds
  1698. Version 0.6.1
  1699. Customizable command names
  1700. Axes can now be modified with /mmoedit
  1701. Party members are now correctly informed when you leave the party
  1702. Fixed incorrect commands in /mcc
  1703. Version 0.5.17
  1704. Changed namespaces to fit bukkits new standard
  1705. Adjusted excavation proc rates
  1706. Modified excavation loot tables
  1707. Added Party Invite System
  1708. Version 0.5.16
  1709. Fixed unarmed not checking for permissions when hitting players
  1710. Version 0.5.15
  1711. Fixed stone swords not being recognized as swords
  1712. Fixed /a not working if you were an op but did not have permissions
  1713. Version 0.5.14
  1714. Added permissions for skills
  1715. Version 0.5.13
  1716. Removed skillgain from succesful parries
  1717. Repair now refreshed the inventory
  1718. Version 0.5.12
  1719. Fixed being able to hurt party members with the bow and arrow
  1720. Version 0.5.11
  1721. Added /mmoedit command
  1722. Fixed bug preventing player versus player damage
  1723. Fixed bug preventing damage from scaling with unarmed & bows
  1724. Fixed disarm proc making the opponent dupe his/her items
  1725. Added mcmmo.tools.mmoedit permission
  1726. Added mcmmo.commands.setmyspawn permission
  1727. Added totalskill to /stats
  1728. Changed the look of /stats
  1729. Version 0.5.10
  1730. Fixed trying to set health to an invalid value
  1731. Version 0.5.9
  1732. Fixed duping inventories on death
  1733. Version 0.5.8
  1734. Fixed bug where players inventories would dupe during combat
  1735. Version 0.5.7
  1736. Fixed monsters instant killing players
  1737. Misc fixes
  1738. Version 0.5.4
  1739. Changed herbalism skill gain from wheat to be WAAAAY slower
  1740. Version 0.5.3
  1741. Players will now correctly drop their inventories when killed by a monster
  1742. Version 0.5.2
  1743. Fixed MAJOR bug preventing swords skill from gaining through combat
  1744. Version 0.5
  1745. Archery Added
  1746. Swords Added
  1747. Acrobatics Added
  1748. Logging for Party/Admin chat added
  1749. Fixed whois to show correct values for Excavation
  1750. Made death messages much much more specific
  1751. Version 0.4.4
  1752. Fixed being able to repair full durability iron tools
  1753. Fixed herbalism benefits not behaving properly
  1754. Fixed removing 1 diamond from every stack of diamond when repairing diamond
  1755. Version 0.4.2
  1756. Removed myspawn from the motd
  1757. Version 0.4.1
  1758. Fixed /mcc showing incorrect command for herbalism
  1759. Changed unarmed skillrate to be much slower than before
  1760. Modified a few skill descriptions
  1761. Added permission for /whois
  1762. Players can now use admin chat without being op as long as they have the correct permission (requires Permissions)
  1763. Version 0.4
  1764. Permissions support
  1765. Removed OPs having different names than normal players
  1766. Removed /setspawn & /spawn
  1767. Slowed down excavation skill rate
  1768. Fixed excavation coal drop being too rare
  1769. Version 0.3.4
  1770. Creepers now give double xp for unarmed
  1771. Iron armor can now be repaired!
  1772. Fixed bug stopping items from being repaired
  1773. Version 0.3.3
  1774. Yet another herbalism skill gain tweak
  1775. Version 0.3.2
  1776. Changed excavation loot tables to be more rewarding
  1777. Changed sand to give normal excavation xp instead of double xp
  1778. Fixed herbalism skill exploit
  1779. Mobs killed with unarmed now drop loot properly
  1780. Unarmed xp rate depends on mob (zombies lowest fyi)
  1781. Huge player crashing bug fix on disarm!
  1782. Version 0.3.1
  1783. Fixed excavation not saving properly
  1784. Fixed repair using excavation values
  1785. Version 0.3
  1786. Unarmed skill
  1787. Herbalism skill
  1788. Excavation skill
  1789. Many bugfixes (thanks for reporting them!)
  1790. /<skillname> - Detailed information about skills in game
  1791. Version 0.2.1
  1792. Misc bugfixes
  1793. Version 0.2
  1794. Repair ability added
  1795. Repair skill added
  1796. Iron Armor repair temporarily disabled
  1797. Anvils (Iron Block) added
  1798. /mcmmo & /mcc added
  1799. Misc changes to existing commands
  1800. Misc bug fixes
  1801. Version 0.1
  1802. Releasing my awesome plugin