'set health' kills doesn't drop items, how can i fix this?

Started by goldencreeper on

Topic category: Help with Minecraft modding (Java Edition)

Joined Apr 2025
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
'set health' kills doesn't drop items, how can i fix this?

i was trying to make a weapon that increases in attack damage, i initially used 'Deal # damage to 'event/target entity' from source #' but because it was during the I-frames of the attack i decided to look for another method.
that's how i came to the conclusion of using 'set health' to deal said extra damage, and while that has worked, when it's not killed by the weapon's base damage it doesn't drop any loot.
does anyone know a possible alternative, or how to fix the dropping issue?

Joined Dec 2014
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Try using (…
Thu, 04/03/2025 - 12:09

Try using ((LivingIncomingDamageEvent)event).setAmount((float)damage); in a custom code snippet.

Make a local variable called damage of the type number to change it.

Joined Dec 2014
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Assuming you're using the…
Thu, 04/03/2025 - 12:10

Assuming you're using the Entity is attacked trigger

Joined Apr 2025
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
friyes, could you explain…
Fri, 04/04/2025 - 03:07

friyes, could you explain?
also, i was using 'when living entity is hit with tool'