Help with Explosion Procedure 1.8.3

Started by Rotmax on

Topic category: Help with modding (Java Edition)

Last seen on 09:51, 9. Feb 2024
Joined Nov 2015
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Help with Explosion Procedure 1.8.3

Hello!

In my new mod I added an Key Bind with an Procedure to make an explosion around the player. 

The problem is that after the explosion (ingame) the blocks get only invisible and you stuck (cant move). Also is it possible that the explosion makes damage?

 

Thank you!

I am citing myself from this…
Sun, 03/31/2019 - 14:51

I am citing myself from this topic: https://mcreator.net/forum/47508/need-help-pushable-block-system

KeyBindings are client-side only and can't control world data. The issue is the client to server communication. Key binding events happen on the client only. One would need to make a custom packet that sends data to the server about the keypress, but without permissions system, such packet could be exploited by users for server hacking, so right now we don't have any real solution for this.

As there is no client to server communication from client side mods so such procedures appear glitchy and sometimes don't work at all.

In MCreator 1.8.3, there is a computer icon next to the procedure triggers that are client side only.

Last seen on 09:51, 9. Feb 2024
Joined Nov 2015
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Thank you!
Sun, 03/31/2019 - 17:15

Thank you!