Spawners Overview
Spawners allow you to automatically spawn mobs at specific locations or randomly around players.Static Spawners
Place spawners at fixed coordinates that spawn mobs when players are nearby.Configuration
Spawner files are located inplugins/btcMobs/Spawners/.
Options
| Option | Type | Description |
|---|---|---|
mob | string | Mob type to spawn |
world | string | World name |
location | object | Spawn coordinates (x, y, z, yaw, pitch) |
interval | number | Seconds between spawns |
warmup | number | Initial delay before first spawn |
amount | number/range | Mobs per spawn (e.g., 1-3) |
max-active | number | Maximum alive mobs from this spawner |
radius | number | Activation range |
Random Spawners
Spawn mobs randomly around players based on conditions.Configuration
Random spawn files are inplugins/btcMobs/RandomSpawns/.
Options
| Option | Type | Description |
|---|---|---|
mob | string | Mob type to spawn |
chance | float | Spawn probability (0.0-1.0) |
interval | number | Check interval in seconds |
amount | number/range | Mobs per spawn |
spawn-radius | number | Max distance from player |
min-distance | number | Min distance from player |
max-nearby | number | Max of this type nearby |
worlds | list | Allowed worlds |
biomes | list | Allowed biomes |
regions | list | WorldGuard regions (optional) |
Conditions
Control when spawning occurs:Commands
| Command | Description |
|---|---|
/btcmobs spawner create <name> <mob> | Create a spawner |
/btcmobs spawner remove <name> | Remove a spawner |
/btcmobs spawner list | List all spawners |