This plugin prevents siege bomb spam by limiting how many can be placed in one area. Players attempting to place too many in close proximity will be blocked. The limit and detection range can be customized in the config.
Permissions
limitedsiegebombdeploy.ignore
- Allows a player to bypass the limit and place unlimited siege bombs.
Configuration
JSON:
{
"Maximum Nearby Siege Bombs": 5,
"Siege Bomb Check Radius": 5.0,
"Siege Bomb Prefab Names": [
"assets/prefabs/weapons/deployablesiegeexplosives/flammablesiegedeployable.prefab",
"assets/prefabs/weapons/deployablesiegeexplosives/explosivesiegedeployable.prefab"
]
}
Maximum Nearby Siege Bombs
- Sets the maximum number of siege bombs a player can place within the check radius. Once this limit is reached, additional bombs cannot be deployed.Siege Bomb Check Radius
- Determines the area around a newly placed bomb that is checked for existing bombs. If too many are found within this radius, placement will be blocked.Siege Bomb Prefab Names
- A list of prefabs that are affected by the limit. Only siege bombs matching these names will be restricted.
Localization
JSON:
{
"BombDeployRestricted": "Too many siege bombs deployed nearby."
}