Started by
Diggon
on
Topic category: Help with Minecraft modding (Java Edition)
I'm new to modding and I don't know the limitations of this program. Are users able to edit vanilla behaviors?
More specifically, I'd like to make a mod that removes firework rocket boosting and temporarily disables elytra when shot. Would something like this be possible with mcreator, or should I look elsewhere?
You could try making a procedure that uses the global trigger "When player right clicks with item" then have a check for item in armor slot ID: 2 (Helm:3 , Chest:2, Legs:1, Boots:0) then another check for "Item in main/off hand" and if its elytra / firework then under advanced there is a block called "Cancel event that triggered global trigger" which would cancel the right click event. As far as stopping elytra flying, there aren't any cancelable triggers, there is a block called "Make entity fly" which might work, you would have to test it. If that doesn't work then the only thing I could think of is using custom code element.