Boss area woof

Boss area woof

BossArea is a Fabric 1.20.1 mod designed for custom adventure modpacks to make fight areas in a RPG style

von
8 Downloads
fabricadventuregame-mechanics
Server mit dieser Mod mieten

Screenshots

Area selected and area infos
Area selection example

Über diese Mod

BossArea — Command Reference

Fabric 1.20.1 · Requires operator permission level 2

All data is saved in the world's data/bossarea.dat file and survives server restarts.


Table of Contents


Selection wand

/give @s bossarea:selection_wand
  • Left-click a block → sets corner A
  • Right-click a block → sets corner B

The selection outline displays as particles visible only to you, refreshed continuously while you hold the wand.


Creating and managing areas

/bossarea set <name>

Creates a new boss area from your current wand selection.

/bossarea remove <name>
/bossarea list
/bossarea info <name>
/bossarea status <name>
/bossarea enable <name> <true|false>

info shows the full configuration with clickable [edit] buttons that pre-fill commands in your chat bar. list shows all areas — click a name to open its info page. All commands that accept an area name support tab-autocomplete.

/bossarea edit <name> setcorners

Redefines the zone bounds from your current wand selection, preserving all existing configuration.


Mob waves

Mobs spawn in the central quarter of the zone (37.5%–62.5% on each axis) on a valid solid floor.

Simple method — addmob

/bossarea edit <name> addmob minecraft:zombie 10

→ 10 zombies per fight.

With optional player scaling:

/bossarea edit <name> addmob minecraft:zombie 10 25

→ 10 base zombies, +25% per player beyond the first.

/bossarea edit <name> addmob minecraft:zombie 10 25 1

→ same, plus +1 flat zombie per extra player.

Scaling formula for N players:

total = base + (flat × (N-1)) + round(base × percent% × (N-1))
/bossarea edit <name> clearmobs

Advanced method — setmobs

Replaces the entire mob list in one command:

/bossarea edit <name> setmobs minecraft:zombie 10 percent:25 flat:1, minecraft:skeleton 5

Note: setmobs uses percent: and flat: prefixes (no space before the value). Use addmob multiple times if you find this syntax confusing — it is strictly equivalent.


Boss sequence

Bosses spawn one at a time, in order. Each boss spawns only after the previous one is dead. The order is controlled by the order value set with reorderboss.

/bossarea edit <name> addboss minecraft:wither 1

Adds a boss at the end of the sequence.

/bossarea edit <name> addboss minecraft:wither 1 50 0

With scaling: +50% extra per player beyond the first, +0 flat.

With custom NBT (see Custom NBT):

/bossarea edit <name> addboss minecraft:wither_skeleton 1 0 0 {CustomName:'"The Ancient"',Health:200f}
/bossarea edit <name> setboss <entity> <amount> [percent] [flat] [nbt]

Replaces the entire boss list with a single entry (backward-compatible shorthand).

/bossarea edit <name> clearboss

Boss timing

/bossarea edit <name> bosstiming with_mobs
/bossarea edit <name> bosstiming after_clear
Value Behaviour
with_mobs (default) Boss #1 spawns alongside the mobs. Each subsequent boss spawns after the previous boss and all mobs are dead.
after_clear All mobs must be cleared first, then bosses spawn one after another.

Reordering bosses

/bossarea edit <name> reorderboss "minecraft:wither" 0
/bossarea edit <name> reorderboss "mobs_woof:spawn_spectre" 1

The order value (0 = first) controls the spawn sequence. Use the entity ID for MobSpawnEntry bosses, or the function name in quotes for function-based bosses.


Datapack functions

Functions allow spawning any entity — custom mobs, modded entities, multi-entity setups — via a datapack .mcfunction file. BossArea tracks the spawned entities via a scoreboard tag that you add in the mcfunction.

Tag naming

Role Tag format Example for zone dungeon
mob bossarea_<zone> bossarea_dungeon
boss bossarea_boss_<zone> bossarea_boss_dungeon

The exact tags for your zone are shown in /bossarea info <name> under "Functions".

Adding the tag in your mcfunction

Put the tag directly in the Tags:[...] NBT of the summon command:

summon minecraft:cave_spider ~ ~ ~ {PersistenceRequired:1b,...,Tags:["bossarea_boss_dungeon"]}

If your entity uses Passengers, add the tag to both the mount and the passenger so BossArea waits for both to die.

Registering a function

Simple (role mob, 1 call, no scaling):

/bossarea edit <name> addfunc mobs_woof:spawn_elite_zombie

With scaling and role:

/bossarea edit <name> addfuncscaled "mobs_woof:spawn_boss" 1 100 0 boss

Arguments: "function" count percent flat mob|boss

  • count = base number of calls (each call runs the mcfunction once)
  • percent = +X% more calls per extra player
  • flat = +X more calls per extra player
  • mob = entities count as normal mobs (must die before bosses spawn on after_clear)
  • boss = entities are part of the boss sequence
/bossarea edit <name> removefunc "mobs_woof:spawn_boss"
/bossarea edit <name> listfuncs

Note: function names containing : must be wrapped in double quotes in addfuncscaled, removefunc, and reorderboss.

After modifying a datapack mcfunction file, run /reload in-game to apply the changes without restarting the server.


Custom NBT

Pass custom NBT to any mob or boss added with addmob, addboss, or setboss. The NBT goes as the last argument, after amount percent flat (all three must be supplied, even if percent and flat are 0):

/bossarea edit <name> addboss minecraft:wither_skeleton 1 0 0 {CustomName:'"The Guardian"',Health:200f,Attributes:[{Id:"minecraft:generic.max_health",Base:200}]}
/bossarea edit <name> addmob minecraft:zombie 5 0 0 {HandItems:[{id:"minecraft:diamond_sword",Count:1b},{}],CustomName:'"Elite Zombie"'}

The NBT is validated immediately on entry. Build and test your NBT with /summon first (using in-game autocomplete), then copy the {...} block.


Doors

Select the door volume with the wand, then:

/bossarea edit <name> door set <doorName> <blocktype>

Invisible door (barrier without a visible block):

/bossarea edit <name> door invisible <doorName>

Define a door by coordinates (no wand needed):

/bossarea edit <name> door setcoords <doorName> <x1> <y1> <z1> <x2> <y2> <z2> <blocktype>
/bossarea edit <name> door list
/bossarea edit <name> door remove <doorName>

door list shows clickable [A: x y z] / [B: x y z] buttons that teleport you to each corner from chat.

Note: the original blocks inside the door volume are not preserved — design a dedicated empty frame for doors.


Timing

/bossarea edit <name> setgrace <seconds>

Grace period before doors close (default: 3 s). Players who leave during this window are removed from the fight. If all players leave, the fight is cancelled entirely.

/bossarea edit <name> setcooldown <seconds>

Cooldown after a fight ends (default: 300 s) before the room can trigger again.


Victory teleport

/bossarea edit <name> setvictorytp <x> <y> <z>

Teleports surviving engaged players on victory (same dimension as the zone).

/bossarea edit <name> setvictorytp <x> <y> <z> <dimension>

Teleports to a specific dimension. The dimension ID is validated immediately.

Dimension ID Dimension
minecraft:overworld Overworld
minecraft:the_nether Nether
minecraft:the_end The End

For modded dimensions, use the mod's identifier (e.g. aether:the_aether). Players who died are not teleported. Teleported players keep their yaw and pitch.

/bossarea edit <name> clearvictorytp

Messages

Four events can each have a custom message or be disabled:

Event Default trigger
grace A player enters the zone
combat Doors close, fight begins
victory All enemies defeated
defeat All engaged players are dead
/bossarea edit <name> setmessage <event> <text>
/bossarea edit <name> setmessage <event> default
/bossarea edit <name> setmessage <event> off
/bossarea edit <name> disablemessage <event>
/bossarea edit <name> enablemessage <event>

Messages display on the actionbar only, visible to players physically inside the zone.


Player progression

Once a group clears a room, every engaged player (including those who died before the final blow) is permanently marked as having completed it. Completed players can walk through freely — unless they enter alongside at least one player who has not yet completed it, in which case the fight triggers for everyone.

/bossarea completed <name> <player>

Shows whether that player has completed this room.

/bossarea completed <name> <player> <true|false>

Forces the completion status. false resets progress (they must fight again). true grants free passage.

Repeatable mode

/bossarea edit <name> setrepeatable true
/bossarea edit <name> setrepeatable false

When true, the fight triggers every time regardless of completion status.


Reset and debug

/bossarea forcereset <name>

Immediate full reset: removes all remaining entities, reopens doors, returns to idle.

/bossarea resettimer <name>

Cancels the cooldown or restarts the grace countdown without interrupting an active fight. Refuses to act if a fight is currently active — use forcereset in that case.


Full example

# 1. Get the wand and select the room
/give @s bossarea:selection_wand
# Left-click one corner, right-click the opposite corner
/bossarea set dragon_lair

# 2. Define the entrance door (select volume with wand first)
/bossarea edit dragon_lair door set entrance minecraft:stone

# 3. Regular mobs
/bossarea edit dragon_lair addmob minecraft:zombie 8 20 1
/bossarea edit dragon_lair addmob minecraft:skeleton 4 20

# 4. Two bosses in sequence via datapack functions
/bossarea edit dragon_lair addfuncscaled "mobs:spawn_spider_mount" 1 0 0 boss
/bossarea edit dragon_lair addfuncscaled "mobs:spawn_ancient_spectre" 1 0 0 boss
/bossarea edit dragon_lair reorderboss "mobs:spawn_spider_mount" 0
/bossarea edit dragon_lair reorderboss "mobs:spawn_ancient_spectre" 1
/bossarea edit dragon_lair bosstiming after_clear

# 5. Timing
/bossarea edit dragon_lair setgrace 3
/bossarea edit dragon_lair setcooldown 300

# 6. Teleport survivors to the nether on victory
/bossarea edit dragon_lair setvictorytp 100 64 200 minecraft:the_nether

# 7. Review the config
/bossarea info dragon_lair

# During testing: skip the cooldown instantly
/bossarea resettimer dragon_lair

Verfügbare Versionen

Boss area woof 6.0.0release
MC 1.20.1fabric
1. Juli 2026

Boss area woof auf dem Server installieren

1

Server bestellen

Bestelle einen Minecraft Java Server mit mindestens 3 GB RAM (4 GB empfohlen).

2

fabric Loader setzen

Wähle im Panel unter "Egg" den fabric-Loader und die passende Minecraft-Version (1.20.1).

3

Mod installieren

Öffne den Mod-Browser im Dashboard und suche nach "Boss area woof". Klicke "Installieren" – fertig! Alternativ: Lade die .jar via SFTP in den /mods Ordner.

Kompatibilität

Mod-Loader

fabric

Minecraft-Versionen

1.20.1

Server-seitig

Erforderlich

Empfohlener RAM

4 GB(min. 3 GB)

Häufige Fragen

Boss area woof Server crasht beim Start – was tun?

Häufigste Ursache: falsche fabric-Version oder zu wenig RAM. Prüfe im Server-Log (latest.log), ob ein "OutOfMemoryError" oder "Mixin"-Fehler auftritt. Bei Mado Hosting: Stelle sicher, dass mindestens 3 GB RAM zugewiesen sind und der Loader zur Mod-Version passt (1.20.1). Über das Panel kannst du den Loader mit einem Klick wechseln.

Ist Boss area woof mit fabric kompatibel?

Boss area woof unterstützt offiziell fabric für Minecraft 1.20.1. Im Mado Dashboard werden inkompatible Loader-Kombinationen automatisch erkannt.

Server laggt mit Boss area woof – wie optimiere ich die Performance?

Empfohlener RAM: 4 GB (+1 GB pro 8 Spieler). Prüfe mit /spark profiler, ob Boss area woof den meisten Tick-Time verbraucht. Häufige Fixes: Server-View-Distance auf 8-10 reduzieren, bei Forge "performant" oder "starlight" als Zusatz-Mod installieren. Bei Mado Hosting läuft dein Server auf NVMe-SSDs mit dedizierten CPU-Kernen für minimale Latenz.

Modded Server mieten

Installiere Boss area woof mit nur einem Klick auf deinem Server.

Empfohlener RAM
4 GBab €8/Monat
Min. 3 GB | +1 GB pro 8 Spieler
Jetzt Server erstellen
1-Klick Mod Installation
NVMe SSD Speicher
DDoS-Schutz inklusive

Details

Lizenz
LicenseRef-All-Rights-Reserved
Server-seitig
Erforderlich

Unterstützte Versionen

1.20.1