MythicAnnouncer | MythicMobs Add-on icon

MythicAnnouncer | MythicMobs Add-on -----

Displays spawn time holos and announces MythicMob spawning, death and despawning events.




  • Added the add-ranking option to the discordMessage section of kill-announce. When add-ranking is enabled inside discordMessage, the ranking is added to the normal text message. When add-ranking is enabled inside the embed section, the ranking is added to the embed description.
To enable or disable the ranking inside the Discord message, you need to add add-ranking to your config.yml, as shown in the example below:
Code (YAML):
    kill-announce :
      ...
      discord
:
        enable
: false
        webhookUrl
: ""
        minHealth
: 100.0
        discordMessage
:
          text
: ""
          ranking-message-template
: "%index%# %player% with %damage% damage."
          add-ranking
: true # Adds the ranking to the normal discord text
          embed
:
            enable
: false
            title
: ""
            description
: ""
            add-ranking
: true # Adds the ranking to the discord embed description
            color
: "#008bff"
            image
:
              enable
: false
              url
: ""
            timestamp
: true
----------, Today at 9:55 AM

  • Added support for FancyHolograms, but the holo-head options are disabled for now, as they don't work as well as with DecentHolograms.
  • The reward system has been reworked! You can now set as many reward ranks as you like. The "others" rank is used for players who are not in the top ranks. You need to replace the rewards section in your config.yml for each MythicMob:
    OLD config:
    Code (YAML):

       rewards
    :
         enable
    : false
         commands
    :
           first-damager
    : "give %player% diamond 1;;say %player% received 1 &bDiamond&r for being the first damager!"
           second-damager
    : "give %player% gold_ingot 1;;say %player% received 1 Gold Ingot for being the second damager!"
           third-damager
    : "give %player% iron_ingot 1;;say %player% received 1 Iron Ingot for being the third damager!"
     
    NEW config:
    Code (YAML):

        rewards
    :
          enable
    : false
          #You can set as many reward ranks as you like, starting from rank 1 (see the example below).
          #The "others" rank is used for players who are not in the top ranks.
          commands
    :
            1
    : "give %player% diamond 1;;say %player% received 1 Diamond for being the first damager!"
            2
    : "give %player% gold_ingot 1;;say %player% received 1 Gold Ingot for being the second damager!"
            3
    : "give %player% iron_ingot 1;;say %player% received 1 Iron Ingot for being the third damager!"
            4
    : "give %player% iron_ingot 1;;say %player% received 1 Iron Ingot for being the fourth damager!"
            5
    : "give %player% iron_ingot 1;;say %player% received 1 Iron Ingot for being the fifth damager!"
            others
    : "give %player% stick 1;;say %player% received 1 Stick for participating!"
     
    With the new system, in this example, the first 5 players will execute the commands for their respective ranks (1 to 5). All other players who dealt damage to the mob will receive the "others" rank.

    If you find any bugs or have new ideas, feel free to contact me privately or on the discussion page.
----------, Aug 31, 2025

  • Switched from depend to softdepend for DecentHolograms. The plugin will load even if DecentHolograms isn't installed, but note that hologram-related features won't work without it.
----------, Aug 29, 2025

  • Updated to support versions 1.21.3, 1.21.4, 1.21.5, 1.21.6, 1.21.7, 1.21.8
  • You can now use either a cooldown or warmup time! The timer will use whichever value is not set to 0 (If both settings are not set to 0, the timer will use the warmup time)
  • Added the option to tag anyone in your Discord server for each event! For example, you can include the following in the Discord message: @everyone, @here, <@discord-user-ID>, <@&discord-role-ID>
----------, May 31, 2025

  • Update to support 1.21.1
  • Added new placeholder (PAPI) %mythicannouncer_spawnername_formatted% to show the seconds in a formatted style (HH:mm:SS)
  • Added new placeholder %formatted_sec% to show the seconds in a formatted style (HH:mm:SS).
    You can use it in the holo-message-spawn-in option in the config.
----------, Aug 18, 2024

  • Update to support 1.16 (tested 1.16.5)
  • Update to support 1.20.6
----------, May 30, 2024

Bug fix.
----------, Feb 18, 2024

  • Implemented the option in the config to choose in which world the announcement of spawn,despawn and death will be sent for each mob type (more info in the config).
  • Fixed a bug that occurred when a player who had hit a mob exited the server (on death event).
To update, you should regenerate your config.yml so delete it (save it if you need to copy some text or options) and restart the server to regenerate it.
----------, Feb 15, 2024

  • Implemented the option to add a head at either the first or last line of the spawning hologram. You can choose the position, type, and skin of the head. Further information is available in the new configuration file.
  • Implemented a reward system for each type of MythicMob's mob, allowing the execution of 1 or more commands for the first three players who dealt the most damage to a mob(ranking system). Additional details can be found in the new configuration file.
  • Added support also for the latest dev version of MythicMobs.
To update, you should regenerate your config.yml so delete it (save it if you need to copy some text or options) and restart the server to regenerate it.
----------, Feb 10, 2024

Dependency version updated to the latest available version.
(tested with currently latest MM version (5.5.1) and currently latest DecentHologram version (2.8.6)) on 1.20.3 and 1.20.4.
I remind you to write to me privately or in the discussion for problems or ideas regarding the plugin.
Don't post your logs in the review section, thank you.
----------, Jan 9, 2024

Bug fix.
----------, Dec 4, 2023

  • Fixed the position of the hologram, it is now positioned in the center of the block.
  • Now you can adjust the hologram position for each mob type by editing the offset in the config.
To update, you should regenerate your config.yml so delete it (save it if you need to copy some text) and restart the server to regenerate it OR add the new property "offset-holo" just under "show-holo" for every type of mobs like in the code below:
Code (YAML):

show-holo
: true
offset-holo
: #You can adjust the position of the hologram by editing the x,y,z offset.
  x
: 0.0
  y
: 1.5
  z
: 0.0
----------, Oct 26, 2023

  • Update to support 1.20.2
  • Added a temporary ranking of the players who did the most damage for each type of mob. You can choose to enable it in the config in the kill-announce section for each type of mob by setting the ranking-message-template (more info in the new config). You can also choose how many players to show in the ranking by setting the top-ranking-players property.
To update, you should regenerate your config.yml so delete it (save it if you need to copy some text) and restart the server to regenerate it.
----------, Oct 1, 2023

  • Added global permission mythicannouncer.notify.*, players with this permission can receive every notification in chat.
  • Added global permission mythicannouncer.notify.spawn, players with this permission can receive every spawn notification in chat.
  • Added global permission mythicannouncer.notify.despawn, players with this permission can receive every despawn notification in chat.
  • Added global permission mythicannouncer.notify.death, players with this permission can receive every death notification in chat.
  • Added custom permissions for each type of mob and for each event, the permission can be set in the config, so if you wanna enable notifications only for certain mobs use these custom permissions instead of the global ones.
  • Added PlaceholderAPI's placeholder %mythicannouncer_spawnername% showing the remaining seconds to spawn of an active spawner. (install PlaceholderAPI to use it)
  • Added a couple of messages customizable in the config for the PlaceholderAPI's placeholder.
To update, you should regenerate your config.yml so delete it (save it if you need to copy some text) and restart the server to regenerate it.
----------, Sep 16, 2023

Bug fix: it was impossible to delete default mobs from the config, now you can remove from it the default mobs that you don't need.
If you're updating from version 1.0.x read the 1.1.0 update.
----------, Sep 4, 2023

Bug fix: Bug fix to support mobs with no damage set.
If you're updating from version 1.0.x read the 1.1.0 update.
----------, Aug 27, 2023

  • Renamed %mm_type% placeholder to %mob%
  • Added %health%, %damage% and %armor% placeholders
  • Added Discord Webhook (more info in the new config) for every type of MythicMob to announce the spawn, death and despawning events in certain Discord channels. (you can enable or disable everything about it in the config)
To update, you should regenerate your config.yml so delete it (save it if you need to copy some text) and restart the server to regenerate it.
----------, Aug 27, 2023

  • Renamed %mm_type% placeholder to %mob%
  • Added %health%, %damage% and %armor% placeholders
  • Added Discord Webhook (more info in the new config) for every type of MythicMob to announce the spawn, death and despawning events in certain Discord channels. (you can enable or disable everything about it in the config)
To update, you should regenerate your config.yml so delete it (save it if you need to copy later some text) and restart the server to regenerate it.
----------, Aug 27, 2023

Bug fix: now if you remove a spawner from MythicMobs while its hologram is visible, the hologram will be removed automatically.
----------, Jul 19, 2023

Resource Information
Author:
----------
Total Downloads: 2,288
First Release: Jun 18, 2023
Last Update: Today at 9:55 AM
Category: ---------------
All-Time Rating:
17 ratings
Version -----
Released: --------------------
Downloads: ------
Version Rating:
----------------------
-- ratings