שימוש ב-Mythicmobs

Custom 3D models for Mythicmobs mobs

Reskinning a Mythicmob mob

You can use a custom model as skin for any Mythicmob mob.

Changing the model

Create a new Mythicmobs mob configuration file in this path: plugins/MythicMobs/Mobs/ninja_skeleton.yml (you can decide the filename).

ninja_skeleton.yml
ninja_skeleton:
  Type: ZOMBIE
  Display: '&aNinja Skeleton'
  Health: 10
  Damage: 2
  Options:
    MovementSpeed: 0
    Silent: true
  Skills:
  - customentity{model=custom:ninja_skeleton} @self ~onSpawn
  - customentity{play=attack} @self ~onAttack
  - customentity{walk=b_walk} @self ~onAttack

In this example I'm changing the Mythicmobs mob skin to a ninja_skeleton skin.

Animations

As you can see I also added some Skills to replace the mob animation dynamically.

{play=attack} is used to make the attack animation play, in this case when the entity attacks.

{walk=b_walk} is used to replace the mob walk animation with another one, in this case b_walk which is an "angry" walk animation, because the mob has just attacked someone and has a target.

Skills

  • customentity{model=custom:ninja_skeleton} Change the current model

  • customentity{idle=ANIMATION} To change the idle animation

  • customentity{walk=ANIMATION} To change the walk animation

  • customentity{attack=ANIMATION} To change the attack animation

  • customentity{death=ANIMATION} To change the death animation

  • customentity{play=ANIMATION} To play an animation right now

  • customentity{stop=ANIMATION} To stop the current animation

Done

Last updated

Was this helpful?