Headsteal 图标

Minecraft 服务端插件

Headsteal

Headsteal PvP with a twist. Steal a player's head to banish them from the server.

版本范围
1.16–26.2
下载量
2.3 万

插件介绍


Important Stuff for Server Owners

Default Recipie (can be changed): headsteal.png


##      ##  ##########    ######    ########      ########  ##########  ##########    ######    ##
##      ##  ##########    ######    ########      ########  ##########  ##########    ######    ##
##      ##  ##          ##      ##  ##      ##  ##              ##      ##          ##      ##  ##
##      ##  ##          ##      ##  ##      ##  ##              ##      ##          ##      ##  ##
##########  ########    ##########  ##      ##    ######        ##      ########    ##########  ##
##########  ########    ##########  ##      ##    ######        ##      ########    ##########  ##
##      ##  ##          ##      ##  ##      ##          ##      ##      ##          ##      ##  ##
##      ##  ##          ##      ##  ##      ##          ##      ##      ##          ##      ##  ##
##      ##  ##########  ##      ##  ########    ########        ##      ##########  ##      ##  ##########
##      ##  ##########  ##      ##  ########    ########        ##      ##########  ##      ##  ##########


# ========================================================================================================
# What do {PLAYER_DEAD}, {PLAYER_KILLER} etc. mean?
# These are placeholders — the plugin automatically replaces them
# with real player names when the message is sent. You don't need
# to change them, just keep them in the message wherever you want
# that name to appear.
#
# {PLAYER_DEAD}    -> the player who died
# {PLAYER_KILLER}  -> the player who got the kill
# {PLAYER_REVIVER} -> the player who revived someone
# {PLAYER}         -> a player's name (used in error messages)
#
# Note: {PLAYER_KILLER} and {PLAYER_REVIVER} only work when a real
# player did the action. If it happened through a console/command,
# those placeholders won't have anyone to fill in — that's why
# there are separate "by-command" messages below for those cases.
#
# You can color messages using & Bukkit color codes (&a = green, &c = red, etc.)
# To turn off a message completely, set it to: ""
# ========================================================================================================


# ============================================================
# Main Settings
# ============================================================

# What happens to a player when they get eliminated?
# true  = they get banned from the server
# false = they get put into Spectator mode (can still watch, can't play)
useBan: false

# How often does dying actually count as an "elimination" (head drops + player is out)?
# This is a percentage from 0 to 100.
#   0   = never happens
#   100 = happens every single time someone dies
#   50   = happens about 50 out of every 100 deaths (good for hardcore servers)
head-drop-percentage: 100


# ============================================================
# Revival Item — How Players Get Brought Back
# ============================================================

# This is the crafting recipe players need to make the item that revives someone.
# Think of it like a 3x3 crafting table grid, numbered like this:
#   1 2 3
#   4 5 6
#   7 8 9
# Put the name of the Minecraft item you want in each slot.
# Use the real Minecraft item name (e.g. DIAMOND_BLOCK, NETHERITE_INGOT) —
# if you misspell it, the recipe won't work.
HeadRecipe:
  1: "DIAMOND_BLOCK"
  2: "NETHERITE_INGOT"
  3: "DIAMOND_BLOCK"
  4: "NETHERITE_INGOT"
  5: "TOTEM_OF_UNDYING"
  6: "NETHERITE_INGOT"
  7: "DIAMOND_BLOCK"
  8: "NETHERITE_INGOT"
  9: "DIAMOND_BLOCK"


# ============================================================
# Visual Effects
# ============================================================

# Show the golden Totem of Undying sparkle effect on the player being brought back to life.
show-totem: true
# Show the same sparkle effect on the player who is doing the reviving.
show-totem-reviver: true


# ============================================================
# Commands That Run When a Player Dies
# ============================================================

# Turn on/off running extra server commands automatically when a player dies.
# Note: this only works if a player killed them — not if they died from /kill or other commands.
enable-actions-on-death: true
# The list of commands to run when someone dies (only if enable-actions-on-death is true above).
# These run as if typed by console/server, so make sure they're valid commands for your server.
actions-on-death:
  - "eco give {PLAYER_KILLER} 100"
  - "eco take {PLAYER_DEAD} 100"


# ============================================================
# Messages — When Someone Is Eliminated
# ============================================================

# Message shown to everyone when one player kills another.
kill-message: "&c[HeadSteal]: {PLAYER_DEAD} is killed by {PLAYER_KILLER} !!"
# Message shown when a player is eliminated by a command instead of another player.
# {PLAYER_KILLER} is NOT available here — there's no player to credit.
kill-by-command-message: "&c[HeadSteal]: {PLAYER_DEAD} is killed"


# ============================================================
# Messages — When Someone Is Revived
# ============================================================

# Message shown to everyone when one player revives another.
revive-message: "&a[HeadSteal]: {PLAYER_DEAD} is revived by {PLAYER_REVIVER} !!"
# Message shown when a player is revived by a command instead of another player.
# {PLAYER_REVIVER} is NOT available here — there's no player to credit.
revive-by-command-message: "&a[HeadSteal]: {PLAYER_DEAD} is revived"


# ============================================================
# Messages — Ban/Kick Screen (only matters if useBan is true above)
# ============================================================

# Message a player sees on their kick screen when they get banned.
kick-message: "&c[HeadSteal]: {PLAYER_KILLER} killed you !!"
# Same message, but used when used command instead of another player.
# {PLAYER_KILLER} is NOT available here — there's no player to credit.
kick-by-command-message: "&c[HeadSteal]: You are killed !!"


# ============================================================
# Messages — When a Player Gets Lucky (the elimination chance didn't trigger)
# ============================================================

# Message sent to the player who died but got lucky and wasn't actually eliminated.
killed-player-escaped-percentage: "&a[HeadSteal]: You got lucky and escaped death !!"
# Message sent to the killer, letting them know their kill didn't trigger an elimination this time.
killer-failed-percentage: "&c[HeadSteal]: {PLAYER_DEAD} escaped death !!"
# Message shown to the whole server when someone gets lucky and avoids elimination.
escape-broadcast-percentage: "&6[HeadSteal]: {PLAYER_DEAD} got lucky and escaped {PLAYER_KILLER}'s killing attempt !!"


# ============================================================
# Messages — Errors / Things That Went Wrong
# ============================================================

# Shown when someone tries eliminate/revive a player who has never joined this server.
player-never-played: "&c[HeadSteal]: {PLAYER} Has Never Played on this server !!"
# Shown when someone tries to "revive" a player who isn't actually eliminated.
player-not-eliminated: "&c[HeadSteal]: {PLAYER} is not dead yet !!"
# Shown when someone tries to eliminate a player who is already eliminated.
player-already-eliminated: "&c[HeadSteal]: {PLAYER} already eliminated !!"
# Shown to an eliminated player if they try to rejoin the server (only matters if useBan is true).
player-still-eliminated: "&c[HeadSteal]: You are still eliminated !"


# ============================================================
# Messages — Other
# ============================================================

# Shown when a player tries to place a head that doesn't have a valid player name attached to it.
name-on-head-notvalid: "&c[HeadSteal]: Name on Head Not Valid !!"
# Shown when a head item is broken/corrupted and can't be used anymore.
head-broken-cant-be-fixed: "&c[HeadSteal]: This head is broken and cant be fixed !!"
# Shown to staff/admins who are allowed to bypass elimination and join even while eliminated.
admin-join-override: "&a[HeadSteal]: You are still eliminated but joined with admin override"
# Shown when an eliminated player tries to teleport (since they shouldn't be able to move around).
not-allowed-to-tp-after-death: "&c[HeadSteal]: Not allowed to Teleport after Death"
# Shown when a player tries to use a command they don't have permission for.
no-permission: "&c[HeadSteal]: You don't have permission !!"


Try out my other plugin: NightVisionPlusPlus - The most customizible/brandable nightvision plugin


Headsteal

A thrilling addition to your Minecraft anarchy server

What is Headsteal?

Headsteal is a new game mechanic for Minecraft anarchy servers that adds an extra layer of challenge and excitement to PvP encounters. When a player is killed, their head drops as loot, and if the head is picked up by another player, the killed player is banned from the server until their head is placed back down.

Why you'll love Headsteal:

  • PvP with an extra challenge: Players have to be careful not to lose their heads !
  • Team up to save your friends: Work together to bring back your banned buddies.
  • Keeps things interesting: You never know when someone might get banned !

Commands:

  • /hrevive
  • /heliminate
  • /hreload

Features

  • Can use Spectator instead of Banning
  • customizable messages

Get Headsteal today and make your anarchy server the best !

版本与下载

推荐下载

HeadSteal-3.2.1.jar版本 3.2.1 · 2 MBSHA-1 8382717d43bceff781ff5a576502a9c72e8be856下载 HeadSteal-3.2.1.jar

3.2.1

正式版
加载器
paper · purpur · spigot
MC 版本
1.16 · 1.16.1 · 1.16.2 · 1.16.3 · 1.16.4 · 1.16.5 · 1.17 · 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2 · 26.2
HeadSteal-3.2.1.jar2 MBSHA-1 8382717d43bceff781ff5a576502a9c72e8be856获取文件 HeadSteal-3.2.1.jar
展开更新日志

HeadSteal 3.2.1 — Changelog

NOTE: Config updated get the latest one from here!

New

  • Adjustable elimination odds — set head-drop-percentage in config to control how often death actually counts as an elimination (100 = always, lower = more lenient/forgiving)
  • New customizable messages when a player gets lucky and escapes elimination, for the victim, the killer, and a server-wide announcement

Fixed

  • Fixed an issue where placing unrelated heads would still get blocked/error

Improved

  • Config file rewritten with clearer comments and explanations to make setup easier

3.1.1

正式版
加载器
paper · purpur · spigot
MC 版本
1.16 · 1.16.1 · 1.16.2 · 1.16.3 · 1.16.4 · 1.16.5 · 1.17 · 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1
HeadSteal-3.1.1.jar2 MBSHA-1 69e52156b5a15d7aee12e2df69922870cc7ebcd3获取文件 HeadSteal-3.1.1.jar
展开更新日志

Hotfix

  • Added toggle for actions on death

3.1.0

正式版
加载器
paper · purpur · spigot
MC 版本
1.16 · 1.16.1 · 1.16.2 · 1.16.3 · 1.16.4 · 1.16.5 · 1.17 · 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1
HeadSteal-3.1.0.jar2 MBSHA-1 6b5d9610505114280fcf23c898e40b79489c6e3f获取文件 HeadSteal-3.1.0.jar
展开更新日志

Features & Improvements

  • New: Actions on Death — Set up custom commands to run automatically when a player is killed. For example, you can broadcast a message, run rewards, or trigger other server events. Use {PLAYER_DEAD} and {PLAYER_KILLER} in your commands to reference the player names.

  • Better Update Alerts — Server admins will now get notified when they join if a new version of the plugin is available. The notifications are prettier and include a clickable link to help you update faster.

  • Faster & Lighter Plugin — The plugin is now more optimized and takes up less space. Removed unnecessary debug information that was included before, so it loads faster on your server.

3.0.1

正式版
加载器
paper · purpur · spigot
MC 版本
1.16 · 1.16.1 · 1.16.2 · 1.16.3 · 1.16.4 · 1.16.5 · 1.17 · 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
Headsteal-3.0.1.jar3.3 MBSHA-1 8471fff92c264ed382b458be6738aee81fdbab0d获取文件 Headsteal-3.0.1.jar
展开更新日志

2.5.0

正式版
加载器
paper · purpur · spigot
MC 版本
1.16 · 1.16.1 · 1.16.2 · 1.16.3 · 1.16.4 · 1.16.5 · 1.17 · 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
Headsteal-2.5.0.jar3.3 MBSHA-1 32989e295a27b710032d52c12b4311bd70436a6c获取文件 Headsteal-2.5.0.jar
展开更新日志

2.4.1-SNAPSHOT

正式版
加载器
paper · spigot
MC 版本
1.16 · 1.16.1 · 1.16.2 · 1.16.3 · 1.16.4 · 1.16.5 · 1.17 · 1.17.1 · 1.18 · 1.18.1 · 1.18.2 · 1.19 · 1.19.1 · 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
HeadSteal-2.4.1.jar3.3 MBSHA-1 125b2d1aecd77ccb6c7559573b3af587fefb553a获取文件 HeadSteal-2.4.1.jar
展开更新日志
  • slight performance improvement
  • fixed update checking