This plugin makes animal hunting more rewarding by dropping realistic pelts when players harvest animal corpses. It includes 10 custom pelt drops for animals like bears, wolves, chickens, and more, each with its own name, skin, and drop chance.
Permissions
animalpelts.use
- Required to receive pelts when harvesting animal corpses. Without this permission, no pelts will drop for the player.
Commands
pelt.give <playerNameOrId|SteamID> <animalPrefabKeyword> [amount]
- Gives the specified player a pelt based on the given animal. The prefab keyword is matched against configured corpse paths.playerNameOrId
- The name or SteamID64 of the player who should receive the pelt.animalPrefabKeyword
- A keyword matched against the animal's corpse prefab (e.g., wolf, bear, crocodile).amount
- (Optional) Number of pelts to give. Defaults to 1 if not set.
Configuration
JSON:
{
"Version": "1.0.0",
"Pelt Drops": [
{
"Animal Corpse Prefab": "assets/rust.ai/agents/bear/bear.corpse.prefab",
"Item Short Name": "cloth",
"Skin Id": 3523938434,
"Display Name": "Bear Pelt",
"Amount": 1,
"Chance Percent": 100
},
{
"Animal Corpse Prefab": "assets/rust.ai/agents/bear/polarbear.corpse.prefab",
"Item Short Name": "cloth",
"Skin Id": 3523937115,
"Display Name": "Polar Bear Pelt",
"Amount": 1,
"Chance Percent": 100
},
{
"Animal Corpse Prefab": "assets/rust.ai/agents/boar/boar.corpse.prefab",
"Item Short Name": "cloth",
"Skin Id": 3523938844,
"Display Name": "Boar Pelt",
"Amount": 1,
"Chance Percent": 100
},
{
"Animal Corpse Prefab": "assets/rust.ai/agents/chicken/chicken.corpse.prefab",
"Item Short Name": "cloth",
"Skin Id": 3523939130,
"Display Name": "Chicken Pelt",
"Amount": 1,
"Chance Percent": 100
},
{
"Animal Corpse Prefab": "assets/rust.ai/crocodile/crocodile_corpse.prefab",
"Item Short Name": "cloth",
"Skin Id": 3523939441,
"Display Name": "Crocodile Pelt",
"Amount": 1,
"Chance Percent": 100
},
{
"Animal Corpse Prefab": "assets/rust.ai/agents/crocodile/panther.corpse.prefab",
"Item Short Name": "cloth",
"Skin Id": 3523939441,
"Display Name": "Panther Pelt",
"Amount": 1,
"Chance Percent": 100
},
{
"Animal Corpse Prefab": "assets/rust.ai/agents/snake/snake.corpse.prefab",
"Item Short Name": "cloth",
"Skin Id": 3523940085,
"Display Name": "Snake Pelt",
"Amount": 1,
"Chance Percent": 100
},
{
"Animal Corpse Prefab": "assets/rust.ai/agents/stag/stag.corpse.prefab",
"Item Short Name": "cloth",
"Skin Id": 3523940339,
"Display Name": "Stag Pelt",
"Amount": 1,
"Chance Percent": 100
},
{
"Animal Corpse Prefab": "assets/rust.ai/agents/tiger/tiger.corpse.prefab",
"Item Short Name": "cloth",
"Skin Id": 3523938058,
"Display Name": "Tiger Pelt",
"Amount": 1,
"Chance Percent": 100
},
{
"Animal Corpse Prefab": "assets/rust.ai/agents/wolf/wolf.corpse.prefab",
"Item Short Name": "cloth",
"Skin Id": 3523940658,
"Display Name": "Wolf Pelt",
"Amount": 1,
"Chance Percent": 100
}
]
}
Pelt Drops
- A list of animal-specific drop settings. Each entry defines how the pelt looks, how often it drops, and what item it gives.Animal Corpse Prefab
- The full prefab path of the animal corpse this pelt applies to.Item Short Name
- The internal item name to give as the pelt (e.g.,"cloth"
).Skin Id
- The Workshop skin ID applied to the item to give it a unique look.Display Name
- Custom display name that appears on the item (e.g.,"Bear Pelt"
).Amount
- Number of items to give if the drop succeeds.Chance Percent
- Drop chance from 0-100%. Controls the chance that the pelt will be awarded when harvesting the animal.