Mineuniverse
Log in Register
Plugins

ForceRespawn

ForceRespawn
by _ForgeUser6888729
Download Claim this project
5,411 downloads
0 likes
Updated Jun 30, 2026
0 hypes
Developer Tools

ForceRespawn

ForceRespawn is an API meant to be implemented by minigame plugins. When used, it will force the player to respawn at their next death, bypassing the death screen. This is ideally used in place of the normal method of using the EntityDamageEvent and cancelling the event if the player's health minus the damage is less than zero, because that method does not take armor into account.

Are you a server owner?

If you were directed here because a plugin requires this as a dependency, just use the download button on the right and put the plugin in your plugins folder. If a version is not yet available for your Minecraft version, you can check for one at the provided Jenkins server below (these are not guaranteed to be stable).

Are you a developer?

Great! Here's some example usage of our API:

// The ForceRespawnEvent is called 1 tick after PlayerDeathEvent.
// Calling event.setForcedRespawn(true) will force a respawn.
@EventHandler
public void onForceRespawn(ForceRespawnEvent event) {
  if (event.getPlayer().getName().equals("Notch")) {
    event.setForcedRespawn(true);
  }
}

// Sends the packet to force-respawn a player.
ForceRespawn.sendRespawnPacket(Player);

You can add this as a maven dependency by using the following repository and dependency snippets:

<repository>
    <id>chaseoes</id>
    <url>http://repo.chaseoes.com/content/groups/public</url>
</repository>

<dependency>
    <groupId>com.chaseoes</groupId>
    <artifactId>ForceRespawn-Plugin</artifactId>
    <version>1.2.1</version>
</dependency>

Also make sure that ForceRespawn is added in the depend or softdepend in your plugin.yml. If you require additional help in implementing this, please join the #tf2plugin channel on irc.esper.net and someone will help you out!

Development Builds

Development builds of this project can be acquired at the provided continuous integration server. These builds have not been approved by the BukkitDev staff. Use them at your own risk.

ForceRespawn v1.2.1
MC CB 1.7.2-R0.2, CB 1.7.2-R0.1
Release 2014-01-16 Get
ForceRespawn v1.2
MC CB 1.6.2-R1.0
Release 2013-09-21 Get
ForceRespawn v1.0
MC 1.6.2
Release 2013-07-10 Get
ForceRespawn v1.1
MC 1.6.2
Release 2013-07-10 Get

More from _ForgeUser6888729

CustomMessages
22,940

You Might Also Like

WorldGuard Custom Flags
WorldGuard Custom Flags
97,851
HoloAPI
Advanced and powerful holographic displays
93,959
Minequery
Minequery
91,099
SQLibrary
SQLibrary aims to streamline driver wrappers in Java for every database engine
85,675
WolfyUtilities
Utils and APIs: Config, Language and Inventory API, Protection Utils: WorldGuard, LWC, PlotSquared
84,728
DisguiseTester
Experiment with disguises!
9,677