ShredMe
Vehicles v1.0.0

ShredMe

by bmgjet · updated 1 hours ago · 0 downloads · ☆☆☆☆☆ no reviews

Expand what your Junkyard shredder can recycle.

# ShredMe

Expand what your Junkyard shredder can recycle.

ShredMe allows server owners to make almost any vehicle or entity compatible with the Junkyard Magnetic Crane and Large Shredder. Define exactly which entities can be picked up and shredded, then customize the resources they return.

Whether you want players to recycle minicopters, attack helicopters, submarines, custom vehicles, or your own plugin entities, ShredMe gives you complete control through an easy-to-edit configuration file.

---

Features

  • Make almost any entity magnetic crane compatible
  • Make custom entities shredder compatible
  • Fully configurable shred rewards
  • Supports multiple resource rewards per entity
  • Automatically discovers vanilla shredder entities
  • Optional unlimited magnetic crane fuel
  • Optional unlimited magnetic crane roaming distance
  • Lightweight coroutine loading for large servers
  • Automatically restores original settings when unloaded
  • Admin command to inspect shred information
---

Chat Command

| Command | Description |
|---------|-------------|
| /shredinfo | Admin-only command that displays the entity shortname, whether it is shredder compatible, and the resources it will produce. |

---

How It Works

When an entity listed in the configuration is picked up by the Junkyard Magnetic Crane, it becomes compatible with the Large Shredder.

Once shredded, the entity rewards players with the resources you've configured instead of the default loot.

Entities without native shredder support automatically gain the required functionality.

---

Configuration

Magnetic Crane Unlimited Roam Range

Allows the Junkyard Magnetic Crane to travel anywhere on the map instead of being restricted to the Junkyard.

true

---

Magnetic Crane Unlimited Fuel

Removes all fuel consumption from the Magnetic Crane.

When enabled, the plugin automatically manages the crane's fuel storage.

true

---

Entity To Make Magnet Liftable/Shredable

Define every entity you want to become shredder compatible along with its custom resource rewards.

Example:

{
  "EntityShortName": "minicopter.entity",
  "scrapReward": [
    {
      "ShortName": "scrap",
      "Amount": 150
    },
    {
      "ShortName": "metal.fragments",
      "Amount": 100
    },
    {
      "ShortName": "metalblade",
      "Amount": 4
    }
  ]
}

You can add as many entities and rewards as you like.

---

Configuration Template

[
  {
    "EntityShortName": "",
    "scrapReward": [
      {
        "ShortName": "",
        "Amount": 0
      }
    ]
  }
]

---

Default Supported Examples

The default configuration includes examples for:

  • Minicopter
  • Scrap Transport Helicopter
  • Patrol Helicopter
  • RHIB
  • Rowboat
  • Solo Submarine
  • Duo Submarine
These can be freely modified or expanded with additional entities.

---

Notes

  • Supports both vanilla and custom entities.
  • Rewards can contain any valid Rust item.
  • Multiple rewards can be configured for each entity.
  • Designed to work efficiently on servers with very large entity counts.
  • Original shredder behaviour is automatically restored when the plugin unloads.
---