https://github.com/devan-kerman/serversidecreepercontrolfabric
Serverside mod for managing creeper explosions for fabric
https://github.com/devan-kerman/serversidecreepercontrolfabric
Last synced: 12 months ago
JSON representation
Serverside mod for managing creeper explosions for fabric
- Host: GitHub
- URL: https://github.com/devan-kerman/serversidecreepercontrolfabric
- Owner: Devan-Kerman
- License: mit
- Created: 2024-03-30T22:05:59.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-13T00:44:25.000Z (about 2 years ago)
- Last Synced: 2025-06-06T12:06:22.538Z (about 1 year ago)
- Language: Java
- Size: 669 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Server-Side Creeper Control (SSCC)
---
This is a mod that allows for server-side configuration of creeper explosion behavior for fabric.
### Usage
```mcfunction
# Vanilla Behavior, destroys blocks according to mobGriefing gamerule, but also explodes a firework
gamerule creeperExplosionBehavior FIREWORK_DESTROY_EXPLOSION
# Creeper explodes normally but does not destroy nearby blocks, similar to mobGriefing=false, but also explodes a firework
gamerule creeperExplosionBehavior FIREWORK_KEEP_EXPLOSION
# Creeper does not explode but deals damage to nearby entities, but also explodes a firework
gamerule creeperExplosionBehavior FIREWORK_DAMAGE_EXPLOSION
gamerule creeperExplosionBehavior DEFAULT
# A firework explodes where the creeper was standing instead of exploding
gamerule creeperExplosionBehavior FIREWORK_ONLY
# Vanilla Behavior, destroys blocks according to mobGriefing gamerule
gamerule creeperExplosionBehavior DESTROY_EXPLOSION
# Creeper explodes normally but does not destroy nearby blocks, similar to mobGriefing=false
gamerule creeperExplosionBehavior KEEP_EXPLOSION
# Creeper does not explode but deals damage to nearby entities
gamerule creeperExplosionBehavior DAMAGE_EXPLOSION
# Creepers simply vanish from existance before exploding
gamerule creeperExplosionBehavior NONE
```