Home›Java›Mods›Custom Player Drops | Death Inventory Cleaner | Player's head drop |and MORE [1.8 - 1.17]
ModsJava
Custom Player Drops | Death Inventory Cleaner | Player's head drop |and MORE [1.8 - 1.17]
![[IMG]](http://proxy.spigotmc.org/a36d626a1897b1bf015e9c954a7b9ab408d0dd05?url=https%3A%2F%2Fi.ibb.co%2F7JfTxPB%2Fasd-2.png)
Create custom player drops with any items
Make Players drop their heads
Execute Commands, Drop XP and Give Money as kill reward
Spoiler: Player's Head Drop
Code (Text):
#true = Players drop their heads
#false = Players don't drop their heads
DropPlayerHead: true
HeadName: '&e{player}''s head'
HeadLore:
- ''
- '&b&lCustom Player Drop'
- ''
- '&fYou can drop enemie''s heads'
- '&fby killing them.'
- ''
- '&cKilled by &4&l{killer}'
#Chances to drop a player's head (in %)
HeadDropRate: 100
#false = Players don't drop their heads
DropPlayerHead: true
HeadName: '&e{player}''s head'
HeadLore:
- ''
- '&b&lCustom Player Drop'
- ''
- '&fYou can drop enemie''s heads'
- '&fby killing them.'
- ''
- '&cKilled by &4&l{killer}'
#Chances to drop a player's head (in %)
HeadDropRate: 100
Spoiler: Earn Xp From Kill
Code (Text):
#true = drop a specific ammount of xp to killer
#false = drop player's xp (vanilla be like)
XpOnKill: false
#XP to give (not levels) - set to 0 no xp drop
XpGiveCount: 100
#false = drop player's xp (vanilla be like)
XpOnKill: false
#XP to give (not levels) - set to 0 no xp drop
XpGiveCount: 100
Spoiler: Earn Money From Kill
Spoiler: Setup Specific World
Code (Text):
#true = plugin works only in a specific world
#false = plugin works everywhere
SpecificWorldOnly: false
Worlds:
- world
- world_nether
#false = plugin works everywhere
SpecificWorldOnly: false
Worlds:
- world
- world_nether
Spoiler: Custom Drop with Custom Name, Lore and more
Code (Text):
#true = drop extra items on player's death
#false = don't
EnableExtraDrop: true
# 100 is used as name of the item and determines chance of drop (follow the same itemstack as example)
ExtraDrop:
'100':
==: org.bukkit.inventory.ItemStack
type: GHAST_TEAR
meta:
==: ItemMeta
meta-type: UNSPECIFIC
display-name: '&5&lSoul §dfragment'
lore:
- ''
- '&b§lCustom Player Drop'
- ''
- '§fA piece of a §dplayer''s soul'
- '§c§nbe careful! §fit may break.'
- ''
enchants:
KNOCKBACK: 1
Unbreakable: true
#false = don't
EnableExtraDrop: true
# 100 is used as name of the item and determines chance of drop (follow the same itemstack as example)
ExtraDrop:
'100':
==: org.bukkit.inventory.ItemStack
type: GHAST_TEAR
meta:
==: ItemMeta
meta-type: UNSPECIFIC
display-name: '&5&lSoul §dfragment'
lore:
- ''
- '&b§lCustom Player Drop'
- ''
- '§fA piece of a §dplayer''s soul'
- '§c§nbe careful! §fit may break.'
- ''
enchants:
KNOCKBACK: 1
Unbreakable: true
Spoiler: InventoryDropClear
Code (Text):
#true = Players drop their inventories
#false = Players don't drop their inventories
DropPlayerInventory: true
#false = Players don't drop their inventories
DropPlayerInventory: true
Spoiler: Custom Extra Commands To Execute
Code (Text):
#true = to execute extra commands on player death
#false = don't
EnableExtraCommands: false
ExtraCommands:
- effect give {killer} jump_boost 10 5
- tell {killer} &a&lYou have been rewarded with &b&nJump Boost V
#false = don't
EnableExtraCommands: false
ExtraCommands:
- effect give {killer} jump_boost 10 5
- tell {killer} &a&lYou have been rewarded with &b&nJump Boost V
Spoiler: View Complete Config
#THIS IS AN EXAMPLE CONFIG IS USED TO REMEMBER COMMENTS
#AND OTHER EXAMPLES THIS FILE IS UNUSED FROM PLUGIN
#IF YOU REMOVE IT, IT RECREATES AUTOMATICALLY
#Creator: Sandrix33
#Permission:
#User: "CustomPlayerDrop.enabled"
#Admin: "CustomPlayerDrop.admin"
#DO NOT CHANGE very important!
Version: 1.5
#true = plugin enabled
#false = plugin disabled
CustomPlayerDrop: true
permissionMessage: '&cYou are not allowed'
#true = Plugin works at player kills
#false = Plugin works at any kills
PlayerKillonly: false
#{killer} placeholder for non-player kills
NonPlayerKiller: 'Something'
#true = Players drop their inventories
#false = Players don't drop their inventories
DropPlayerInventory: true
#true = Players drop their heads
#false = Players don't drop their heads
DropPlayerHead: true
HeadName: '&e{player}''s head'
HeadLore:
- ''
- '&b&lCustom Player Drop'
- ''
- '&fYou can drop enemie''s heads'
- '&fby killing them.'
- ''
- '&cKilled by &4&l{killer}'
#Chances to drop a player's head (in %)
HeadDropRate: 100
#true = plugin works only in a specific world
#false = plugin works everywhere
SpecificWorldOnly: false
Worlds:
- world
- world_nether
#true = drop a specific ammount of xp to killer
#false = drop player's xp (vanilla be like)
XpOnKill: false
#XP to give (not levels) - set to 0 no xp drop
XpGiveCount: 100
#true = give a specific ammount of money to killer (Essentials is needed)
#false = don't
MoneyOnKill: false
MoneyGiveCount: 100
#true = drop extra items on player's death
#false = don't
EnableExtraDrop: true
# 100 is used as name of the item and determines chance of drop (follow the same itemstack as example)
ExtraDrop:
'100':
==: org.bukkit.inventory.ItemStack
type: GHAST_TEAR
meta:
==: ItemMeta
meta-type: UNSPECIFIC
display-name: '&5&lSoul §dfragment'
lore:
- ''
- '&b§lCustom Player Drop'
- ''
- '§fA piece of a §dplayer''s soul'
- '§c§nbe careful! §fit may break.'
- ''
enchants:
KNOCKBACK: 1
Unbreakable: true
#true = to execute extra commands on player death
#false = don't
EnableExtraCommands: false
ExtraCommands:
- effect give {killer} jump_boost 10 5
- tell {killer} &a&lYou have been rewarded with &b&nJump Boost V
Code (Text):
#THIS IS AN EXAMPLE CONFIG IS USED TO REMEMBER COMMENTS
#AND OTHER EXAMPLES THIS FILE IS UNUSED FROM PLUGIN
#IF YOU REMOVE IT, IT RECREATES AUTOMATICALLY
#Creator: Sandrix33
#Permission:
#User: "CustomPlayerDrop.enabled"
#Admin: "CustomPlayerDrop.admin"
#DO NOT CHANGE very important!
Version: 1.5
#true = plugin enabled
#false = plugin disabled
CustomPlayerDrop: true
permissionMessage: '&cYou are not allowed'
#true = Plugin works at player kills
#false = Plugin works at any kills
PlayerKillonly: false
#{killer} placeholder for non-player kills
NonPlayerKiller: 'Something'
#true = Players drop their inventories
#false = Players don't drop their inventories
DropPlayerInventory: true
#true = Players drop their heads
#false = Players don't drop their heads
DropPlayerHead: true
HeadName: '&e{player}''s head'
HeadLore:
- ''
- '&b&lCustom Player Drop'
- ''
- '&fYou can drop enemie''s heads'
- '&fby killing them.'
- ''
- '&cKilled by &4&l{killer}'
#Chances to drop a player's head (in %)
HeadDropRate: 100
#true = plugin works only in a specific world
#false = plugin works everywhere
SpecificWorldOnly: false
Worlds:
- world
- world_nether
#true = drop a specific ammount of xp to killer
#false = drop player's xp (vanilla be like)
XpOnKill: false
#XP to give (not levels) - set to 0 no xp drop
XpGiveCount: 100
#true = give a specific ammount of money to killer (Essentials is needed)
#false = don't
MoneyOnKill: false
MoneyGiveCount: 100
#true = drop extra items on player's death
#false = don't
EnableExtraDrop: true
# 100 is used as name of the item and determines chance of drop (follow the same itemstack as example)
ExtraDrop:
'100':
==: org.bukkit.inventory.ItemStack
type: GHAST_TEAR
meta:
==: ItemMeta
meta-type: UNSPECIFIC
display-name: '&5&lSoul §dfragment'
lore:
- ''
- '&b§lCustom Player Drop'
- ''
- '§fA piece of a §dplayer''s soul'
- '§c§nbe careful! §fit may break.'
- ''
enchants:
KNOCKBACK: 1
Unbreakable: true
#true = to execute extra commands on player death
#false = don't
EnableExtraCommands: false
ExtraCommands:
- effect give {killer} jump_boost 10 5
- tell {killer} &a&lYou have been rewarded with &b&nJump Boost V
Spoiler: View Link
Pls support me with donation
Spoiler: Donation Link
Special thanks to Spazzolino for redesign help
SUPPORTERS:
-
Quick facts
- Edition: Minecraft Java
- File type: .jar
- Minecraft versions listed: 1.8, 1.9, 1.10
- How to install: Install the matching mod loader (Forge, Fabric or NeoForge) for your Minecraft version. → Download the .jar. → Put it in the .minecraft/mods folder and launch that loader profile.
- Where to get it: Opens on Spigot — not every file is mirrored on our own servers.
Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.
Custom Player Drops | Death Inventory Cleaner | Player's head drop |and MORE [1.8 - 1.17] is a free Minecraft Java mod. Compatible with Minecraft 1.8, 1.9, 1.10, 1.11 and newer. Downloaded 6,616 times (via Spigot). Download it and open it directly in the game.
![[IMG]](http://proxy.spigotmc.org/4be6415f0e1224d76a93cc45f086410e1c49d886?url=https%3A%2F%2Fi.ibb.co%2FbX4r6bk%2Fezgif-com-gif-maker.gif)