"Snap" away 50% or 100% of mobs around the player in a 10 block radius?

Started by Mista Dev on

Topic category: Help with modding (Java Edition)

Last seen on 22:39, 24. May 2020
Joined Feb 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
"Snap" away 50% or 100% of mobs around the player in a 10 block radius?

Ok, so, i made an infinity gauntlet. My only problem?
I dont know how to snap/kill 50% or 100% of mobs around the player in a specific block radius.

If this requires coding, please move this to advanced modding. Thanks in advance.

Last seen on 22:39, 24. May 2020
Joined Feb 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Alright then. Until then, i…
Mon, 05/06/2019 - 23:53

Alright then. Until then, i'll just find other thing to make it more similar to the infinity gauntlet.

Last seen on 17:54, 3. Jun 2020
Joined Jan 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
There is a command. The…
Wed, 05/08/2019 - 22:39

There is a command. The command /kill could be used to wipe out 100% of entities around player. /kill @e[!type=player,r=10] for example would kill all entities within 10 blocks of the player. So basically, what the command does is kill all entities except players in a radius of 10 blocks. Make it execute at the player and you got yourself an infinity gauntlet.

Last seen on 09:43, 4. Jan 2022
Joined May 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Is there a way to disable…
Thu, 05/09/2019 - 15:30

Is there a way to disable this? So the execute command procedure block works without permissions, BUT only on client side because it would be a real problem in Servers

I don't think so as…
Thu, 05/09/2019 - 15:49

I don't think so as permission checking is on both sides and kinda hardcoded in Minecraft.