Back to Mods
MPCombatLog

MPCombatLog

qolMinimalPulse

The perfect CombatLog plugin to stop players from quitting mid fight with seamless setup, and easy integration with other mods!

About MPCombatLog

MPCombatLog - Hytale Combat Logging Prevention Plugin

This mod ensures no player leaves during a fight, and if they do - they will be killed on disconnect.

Features

Automatic Combat Detection - Automatically detects when players take or deal damage

Configurable Combat Duration - Set how long players stay in combat

PvP/PvE Mode - Option to allow PvE combat logging

Command Block - Block selected commands like /tp in combat!

Combat Log Prevention - Kills players who disconnect while in combat

Combat Status Messages - Customizable messages for entering/exiting combat

Reload Command - Reload plugin from game! No need to restart the server

Color Tags Support - Use &0-9 and &a-f for colors in config!(Minecraft Style)

Developer API - Simple API for other plugins to check combat status

No CombatLog permission

If you do not want to get tagged in combat, use this permission combatlog.bypass

Configuration

Config is located at mods/MP_CombatLog/config.json:

{ "onlyPlayerDamageLog": true, , // Set to false to enable PvE combat logging "combatTime": 30, // Time in seconds that players stay in combat "showCombatTitle": true, // Set to false to disable combat title "blockCommandsInCombat": true, "blockedCommands": [ "home", "spawn", "tpa", "tp", "warp" ], "messages": { "prefix": "&l&7[&c&lCL&l&7] &7>> ", "combatEnter": "&cYou have entered combat! &7Do not log out!", "combatExit": "&aYou are no longer in combat.", "combatTimeRemaining": "&6Combat: &e%seconds%s &7remaining", "combatLogBroadcast": "&e%player% &cwas killed for combat logging!", "commandBlocked": "&cYou cannot use this command while in combat!", "commandReloadSuccess": "&aConfig reloaded successfully!", "commandReloadFailed": "&cFailed to reload config: %error%", "commandInfo": "&7Running &eMPCombatLog &7v%version%", "combatTitleMain": "&cIN COMBAT", "combatTitleSub": "&7%seconds%s remaining" } } Commands

Command Description Permission

/combatlog Show plugin info Everyone

/combatlog help Show available commands Everyone

/combatlog reload Reload configuration Ops only

Developer API

MPCombatLog provides a simple API for other plugins to check and manage combat status.

Adding as Dependency

Maven

Add MPCombatLog as a dependency in your pom.xml:

<dependency> <groupId>com.minimalpulse.combatlog</groupId> <artifactId>MPCombatLog</artifactId> <version>1.1.0</version> <scope>provided</scope> </dependency> Hytale Manifest

Add MPCombatLog as a dependency in your manifest.json:

{ "Dependencies": { "com.minimalpulse.combatlog": "*" } } Or as an optional dependency if you want your plugin to work without it:

{ "OptionalDependencies": { "com.minimalpulse.combatlog": "*" } } API Usage

All API methods are static and accessible via CombatLogAPI:

import com.minimalpulse.combatlog.api.CombatLogAPI;

// Check if the plugin is loaded if (CombatLogAPI.isAvailable()) { // Plugin is loaded and ready }

// Check if a player is in combat UUID playerUuid = player.getUuid(); if (CombatLogAPI.isInCombat(playerUuid)) { player.sendMessage(Message.raw("You can't do that while in combat!")); return; }

// Get remaining combat time in seconds int secondsLeft = CombatLogAPI.getRemainingCombatTime(playerUuid);

// Get the configured combat duration int combatDuration = CombatLogAPI.getCombatDuration();

// Manually put a player into combat CombatLogAPI.enterCombat(playerUuid, worldName);

// Manually remove a player from combat CombatLogAPI.exitCombat(playerUuid); API Methods

Method Description Returns

isAvailable() Check if MPCombatLog is loaded boolean

isInCombat(UUID) Check if player is in combat boolean

getRemainingCombatTime(UUID) Get seconds remaining in combat int

getCombatDuration() Get configured combat duration int

enterCombat(UUID, String) Put player in combat with world tracking void

exitCombat(UUID) Remove player from combat void

License

MIT License - Feel free to use in your own projects!

Author

MinimalPulse

Downloads
153
Created
Jan 16, 2026
Updated
Jan 18, 2026
Version
Early Access

Categories

Quality of LifeUtility

Download Mod

Download on CurseForge
Free download • 153 total downloads

Need a Server?

Run MPCombatLog on a dedicated Hytale server with easy mod management.

Get Hytale Hosting

Frequently Asked Questions

What is MPCombatLog?

The perfect CombatLog plugin to stop players from quitting mid fight with seamless setup, and easy integration with other mods!

How do I download MPCombatLog?

You can download MPCombatLog for free from CurseForge. Click the "Download on CurseForge" button on this page to go directly to the download page.

Who created MPCombatLog?

MPCombatLog was created by MinimalPulse. The mod has been downloaded 153 times.

Is MPCombatLog compatible with Hytale servers?

MPCombatLog is designed for Hytale and can be used on both single-player and multiplayer servers. Check the mod page on CurseForge for specific compatibility information.

How do I install MPCombatLog?

To install MPCombatLog: 1) Download the mod from CurseForge, 2) Place the file in your Hytale mods folder, 3) Restart the game. The mod should load automatically.