This section deep-dives into the plugin's core gameplay communication layer. By utilizing these event dispatchers, you can interface your custom game logic (such as attributes, status systems, and resource spend) directly with the combat framework.
Below is the breakdown of the 3 primary event dispatchers emitted by the component. Use this table as a reference to hook into your custom gameplay events.

| Event Name | Trigger Condition | Practical Use Cases & Business Logic |
|---|---|---|
ED_OnAttackStart |
Fires the exact frame a player or monster initiates any combat action (when the attack montage starts playing). | Hook your existing attribute systems here to deduct character Stamina or MP based on the incoming Skill_ID. |
ED_OnTakeHit |
Fires the exact frame an attack trace registers a hit and the collision volume overlaps/sweeps an enemy. | This is the core entry point for your damage system! Connect your project's custom damage, defense, and health reduction logic right behind this event. |
ED_OnDeath |
Fires when a character's health drops to zero, or when the execution of their death montage finishes. | Ideal for triggering kill reward calculations, giving EXP/Gold drops, updating quest progress, or clearing AI threat tables. |
To establish a proper combat loop, follow these blueprint integration steps inside your Character Blueprint:
Event BeginPlay node.BPC_HandyCombatSystem component into the Event Graph.Bind Event to ED_OnTakeHit node. Connect the execution line from BeginPlay to this Bind node.Event pin (the matching delegate circle input) on the Bind node, drag it to an empty space, and select Create Matching Event.
The editor will automatically generate a custom event node containing all underlying combat struct inputs.
When a weapon registers an overlap and the red event node fires, execute this closed-loop logic sequence:
HitSendData struct from the event node, extract the numerical damage values, and subtract them from your character's current health/HP.Less Than or Equal (<= 0.0) check to evaluate if the character's HP has hit zero.BPC_HandyCombatSystem component and call the Play Hit Reaction Montage function.