help with mod

Started by The_WereF0X on

Topic category: Help with Minecraft modding (Java Edition)

Joined Jan 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
help with mod

Im trying to make a mod inspired by Bliss SMP where there are gems that give you special powers. i had a few questions:

1. i wanted the fire gem to shoot a mega fireball that blew everything up and insta-killed players, but the “big fireball” option on mcreator literally blows up only 4 blocks of dirt and can’t kill a pig. how can i change the fireball values?

2. how do i import a structure? do i have to create a void only world in minecraft and build and then import  the .zip file into mcreator?

would be cool if someone answered :D

Joined Nov 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
1. What you probably want is…
Wed, 06/28/2023 - 17:47

1.

What you probably want is a Ranged item. Then add a trigger so that when the ranged item hits a block, it will Explode (block under World Management) with whatever explosion power you want.

By the way, for the explosion types: BREAK means break blocks and drop as items, DESTROY means break blocks and don't drop them as items, and NONE means just damage entities.

2.

To create a structure in Minecraft, you need to give yourself a Structure Block. You can do this with the command /give @s minecraft:structure_block. Then, build your structure up in the air somewhere and place your structure block near it. Adjust the position and size boxes inside the structure block until it includes the whole structure. Then name your structure and press "Save".

Now, go to the Minecraft world selection screen. Press your world and press "Edit". Press "Open World Folder" and go into the folder "generated". Keep going though folders until you see a file named like "whatever.nbt" where "whatever" is the same as what you named your structure. Move this file somewhere easily accessible.

In MCreator, under Resources > Structures, press "Import structrure(s)..." and select your file. Now, you can create a Structure mod element with all the settings for your structure that you want.

Joined Jan 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
thank you so much!
Thu, 06/29/2023 - 06:42

thank you so much!

Joined Jan 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
sillypantscoder how do i…
Sat, 07/08/2023 - 18:32

sillypantscoder how do i make an explosion at block under world management??