MythicMobs v1.1.4

Details

  • Filename
    MythicMobs-1.1.4.jar
  • Uploaded by
  • Uploaded
    Nov 5, 2014
  • Size
    516.74 KB
  • Downloads
    10,762
  • MD5
    17329ed748544adc86fe7bc00578ff68

Supported Bukkit Versions

  • CB 1.7.9-R0.2
  • CB 1.7.2-R0.3
  • CB 1.6.4-R2.0

Changelog

v1.1.4

NOTICE: v1.1.x contains major re-written mob spawning code. Most mob configs will still work normally except most mobs containing the words "angry" or "baby" will no longer work. "Angry" and "Baby" have been separated into options (Angry, Age and AgeLock respectively) because they were not really mob types. Real mob variants such as BABY_ZOMBIE will still work.

AI Controls

  • AI Controls and Factions are now backwards compatible with all supported Bukkit versions.
  • Custom AI and Factions should now work on the Spigot 1.8 compatibility builds.

Skills

  • Added title skill, only works on 1.8 Spigot compatibility build.

- title [radius]:[fadeInTicks]:[displayTicks]:[fadeOutTicks]:"Title":"Subtitle"

API

  • Added some new API methods for the Spawn event

Bug Fixes/Other

  • Fixed a bunch of assorted NPE errors
  • Fixed ThreatTable error when target goes to a different world
  • Fixed various other minor bugs

v1.1.2

NOTICE: v1.1.x contains major re-written mob spawning code. Most mob configs will still work normally except most mobs containing the words "angry" or "baby" will no longer work. "Angry" and "Baby" have been separated into options (Angry, Age and AgeLock respectively) because they were not really mob types. Real mob variants such as BABY_ZOMBIE will still work.

Bug Fixes/Other

  • Fixed a critical bug where mob timer abilities would sometimes continue firing after death or despawning
  • Fixed a console error involving mobs that did not have equipment
  • Fixed a console bug thrown by mobs without certain options defined
  • Fixed an NPE error on mob spawn for mobs without Skills
  • Fixed an NPE error on mob damage for mobs without DamageModifiers

v1.1.1 (Release)

Spawners

  • Added RadiusY option to spawners

Bug Fixes/Other

  • Improved error-checking for mobs and spawners to prevent certain startup errors.
  • Fixed Creeper-specific options not being applied.
  • Fixed effects targeting spawners to target the center of blocks
  • Fixed a bug with preventSuicide creeper option not working in most cases
  • Fixed an alias for MagmaCube not working properly
  • Fixed a bug preventing Slime and MagmaCube options from applying
  • Fixed a bug preventing options that apply to after-death events from functioning
  • Fixed (hopefully) mob custom AI not persisting through chunk reloads

v1.1.0 (Beta)

New Features

AI Controls

  • Ability to clear, add to and modify a mob's AI Pathfinder Goals
  • Ability to clear, add to and modify a mob's AI TargetSelector Goals
  • Available AI goals can be found here.
  • Tutorial is available here.

Mob Factions

  • Mobs can now be marked with a Faction attribute
  • Mob AI controls include new custom Pathfinder goals to make mobs attack other mobs that are not in the same faction
  • Mobs in the same faction will never attack each-other.

Threat Tables

  • Added Threat Tables
  • Added Mob option UseThreatTable, defaults to false.
  • Added config.yml option for disabling Threat Tables entirely.
  • Added onEnterCombat, onDropCombat, and onTargetChange triggers for mobs with threat tables enabled.

Mobs with Threat Tables enabled will behave more like mobs in RPG games. Each player in combat with the mob has a threat value based on their damage done to the mob, and the mob will target the player who has done the most damage to it (allowing for roles like "tanks").

Threat diminishes for players who are out of line-of-sight or out of range of the mob for too long.

The API will include methods for "taunting" and modifying player threat.

Mob Options

Added lots of new options...

Animals

  • Options.Age: [integer] - Sets the mob's age.
  • Options.AgeLock: [true/false] - Locks the mob's age.

Creeper

  • Options.SuperCharged: [true/false] - Sets if the creeper is supercharged.

Ocelots

  • Options.Tameable: [true/false] - Determines whether the mob can be tamed.

Pig

  • Options.Saddled: [true/false] - Sets if the pig is saddled.

Pig Zombies + Variants

  • Options.Angry: [true/false] - Determines whether the mob starts out as angry or not.

Silverfish

  • Options.PreventBlockInfection: [true/false] - Prevents block infection, should actually work now...

Snowman

  • Options.PreventSnowFormation: [true/false] - Keeps the mob from forming snow.

Wolf

  • Options.Angry: [true/false] - Determines whether the mob starts out as angry or not.
  • Options.Tameable: [true/false] - Determines whether the mob can be tamed.

Zombies + Variants

  • Options.ReinforcementsChance: can be a number between 0 and 1.0 with 1 being a 100% chance to spawn reinforcements on taking damage.

Effects

  • Added EntitiesInRadius:radius:radiusY option for effect targets
  • Added ThreatTargets option for effect targets

Skills

New Triggers

  • Added onInteract - Fires when a player right-clicks the mob
  • Added onEnterCombat - Fires when a mob enters combat. (Requires ThreatTables to be enabled)
  • Added onDropCombat - Fires when a mob drops combat. (Requires ThreatTables to be enabled)
  • Added onTargetChange - Fires when a mob changes targets. (Requires ThreatTables to be enabled)

New Skills

  • Added AIRunGoalSelector skill - Modifys the mob's AI Goal Selector with the given string

- airungoalselector 'AI STRING'

  • Added AIRunTargetSelector skill - Modifys the mob's AI Target Selector with the given string

- airuntargetselector 'AI STRING'

  • Added Disguise skill - Changes the mob's disguise, uses the same format as the Disguise option

- disguise [disguise_string]

  • Added Jump skill - Makes the mob jump

- jump [vertical_strength]:<horizontal_strength>

  • Added Leap skill - Makes the mob leap through the air to its target.

- leap

  • Added Volley skill - Fires a volley of arrows

- volley [#_of_arrows]:[arrow_speed]:[arrow_spread]:<fire_ticks>

Skill Changes

  • Damage skill will now target non-player entities if the mob's target is that entity.
  • DamageAll will now behave as expected if radius is 0.

Spawners

  • Added /mm s resettimers [name] command to reset cooldown and warmup timers

API

  • Added MythicMobSpawnEvent

Bug Fixes/Other

  • Fixed a bug where MythicMobs would not always activate skills when attacking other MythicMobs.
  • Fixed bug with onAttack skills causing recursion when using damage-causing abilities
  • Fixed a bug that caused the onExplode trigger to not always work
  • Fixed some bugs with the preventSuicide option not retaining mob data after preventing a the mob's death
  • Fixed a bug with projectile skill causing projectiles to not always do the configured damage
  • Fixed a couple NullPointerExceptions

**<<color red>>NOTICE: v1.1.x contains major re-written mob spawning code. Most mob configs will still work normally except most mobs containing the words "angry" or "baby" will no longer work. "Angry" and "Baby" have been separated into options (Angry, Age and AgeLock respectively) because they were not really mob types. Real mob variants such as BABY_ZOMBIE will still work.<</color>>**

Several system rewrites in this build to improve performance. Please submit all bugs you find to the bug tracker.

Angry and Baby mob variants not working is NOT a bug. Those have been moved to options!