need sum help plz

Started by azerwite on

Topic category: Feature requests and ideas for MCreator

Last seen on 22:07, 30. Oct 2023
Joined Oct 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
need sum help plz

ok so im tring to make a kind of visible fire slash attack for bladded weaponthat work with particles and do zone damage ,  if somebody could help me that will be cool thanx :)

Last seen on 14:24, 2. May 2024
Joined May 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Particles are sort of up to…
Fri, 10/13/2023 - 15:39

Particles are sort of up to you, you could mess around spawning individual particles at the correct positions and timings to make a specific attack pattern... but it might be more effort than it's worth. 

As for zone damage, you can just use an entity iterator bracket to target all entities within a desired radius. (Instead of dealing damage to a single entity, damage the entity iterator instead- anything inside the bracket is run for all entities in the desired radius.) You'll also want to make sure the entity iterator doesn't equal the event/target entity. (Otherwise it'll also target the player.)

Last seen on 22:07, 30. Oct 2023
Joined Oct 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
yeah but the thing is that…
Sat, 10/14/2023 - 12:59

yeah but the thing is that it need to only hurt monster entities (cuz its for a kind of guard mob and i don't want it to attack his friends)

Last seen on 14:24, 2. May 2024
Joined May 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
With the entity iteratir you…
Sat, 10/14/2023 - 13:19

With the entity iteratir you can also include an ‘if’ bracket that checks if the entity iterator, (the thing currently being targeted), is a subtype of ‘monster entity.’ (Check the bottom of the logic tab.) you could also create a custom entity tag that includes everything you want to be targeted, then just check if the entity iterator has that tag.

Last seen on 22:07, 30. Oct 2023
Joined Oct 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
it works ! thanks a lot :)
Sat, 10/14/2023 - 13:38

it works ! thanks a lot :)