Structure Grief Manager

Quick rating

Community listing page, reviews here may not be monitored by the author.

Structure Grief Manager

No reviews yet

A server-side (and client side) protection mod that allows temporary destruction and building within structures using auto-respawn and auto-decay mechanics.

Mod Loaders
Forge
Minecraft

Community voices

Reviews

List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Show per page
10
25
50
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

About

Project Details

Type
Mod
Latest Version
structure_grief_manager-0.3.jar

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID

Resources

External Links

Source Issues Wiki Discord

About

Description

Structure Grief Manager (SGM)

Protection Reimagined: Don't just block griefers, manage them.

Structure Grief Manager (SGM) is not your typical protection mod. Instead of simply preventing players from breaking blocks, SGM introduces a Lifecycle System. You can allow players to break walls, loot chests, or build temporary bridges, knowing that the structure will automatically regenerate and foreign blocks will decay over time.

It allows for immersive gameplay in protected zones (like Raiding, RPG dungeons, or public servers) without leaving permanent scars on the map.


Key Features

  • Smart Zone Detection: Automatically apply rules to Vanilla or Modded structures (Villages, Strongholds, Ancient Cities) using Regex ID matching. You can also define custom cuboid zones.
  • Lifecycle System:
    • DENY: Standard protection. Blocks cannot be broken or placed.
    • ALLOW_RESPAWN: Players can break blocks, but they will reappear after a set time. served).
    • ALLOW_DECAY: Players can place blocks (e.g., scaffolding, bridges), but they will disappear after a set time.
  • Advanced Filtering: Use Whitelists, Blacklists, and powerful Macros (see below) to target specific blocks without listing thousands of IDs.
  • Physics & Multiblocks: Smart handling of gravity blocks (sand/gravel) and dependent blocks (Doors, Beds, Torches). If a door respawns, it won't break itself because the bottom half is missing.
  • Visual Feedback: When installed on the client, protected blocks feel unbreakable (Bedrock-like hardness) and denied placement is predicted instantly (Adventure mode feel), preventing "ghost blocks" and lag-back.

Configuration & Macros

The heart of SGM is its sgm.json config file. We've included a Smart Macro System to make configuration incredibly easy. You don't need to know every block ID.

Available Macros:

  • @solid - Matches any solid block (Stone, Dirt, Planks).
  • @non_solid - Matches transparent/decoration blocks (Torches, Flowers, Glass).
  • @container - Matches anything with an inventory (Chests, Barrels, Hoppers).
  • @gravity - Matches falling blocks (Sand, Gravel, Anvils).
  • @redstone - Matches signal sources (Levers, Buttons, Pressure Plates).
  • * - Wildcard (Matches everything).

Example Configuration

Here is a robust example for protecting Villages:

  1. Chests are completely protected (Anti-Theft).
  2. Torches & Sand can be placed temporarily (Scaffolding).
  3. Walls can be broken but will regenerate (Immersion).
  4. Everything else is standard protection.
{
  "$schema": ".../resources/assets/sgm.schema.json",
  "settings": {
    "tick_interval": 20,
    "respawn_time": 1200, 
    "decay_time": 600,
    "debug_mode": false
  },
  "zones": [
    {
      "name": "Village Protection",
      "type": "STRUCTURE",
      "priority": 10,
      "structure_whitelist": ["minecraft:.*village.*"],
      "rules": {
        "break": [
          {
            "targets": ["@container"], 
            "action": "DENY" 
          },
          {
            "targets": ["*"],
            "blacklist": ["minecraft:dirt"], 
            "action": "ALLOW_RESPAWN",
            "timer": 600
          }
        ],
        "place": [
          {
            "targets": ["@non_solid", "@gravity"],
            "action": "ALLOW_DECAY",
            "timer": 200
          },
          {
            "targets": ["*"],
            "action": "DENY"
          }
        ]
      }
    }
  ]
}

Commands

  • /sgm info - Displays the current Zone you are standing in and its priority.
  • /sgm memory - (Debug) Shows how many blocks are currently waiting to respawn or decay in the chunk.
  • /sgm reload - Reloads the configuration file instantly without restarting the server.
  • /sgm test <block_id> - Test if a block matches your current rules.

Installation

  1. Requirement: Minecraft Forge 1.20.1.
  2. Server-Side: Essential. The mod handles all logic, storage, and restoration on the server.
  3. Client-Side: Highly Recommended. While not strictly required to join, installing it on the client provides the visual "Unbreakable" effect and prevents client-side prediction glitches (ghost blocks).

Issues & Support

Found a bug or have a suggestion? Please report it on our GitHub Issues Page. Does a specific modded block not respawn correctly? Let us know!

Screenshots

Gallery

This project has no gallery images yet.

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

<1,000
Downloads
Last Updated
Created
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works