Jump to content

Ants1207

Members
  • Posts

    2
  • Joined

  • Last visited

Ants1207's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. Following my old post (which I fixed the problem lol) I am making a mod for devil fruits and basically how it is when you eat the fruit it makes it so that you can't swim in water (and you get a power which will be implemented later). Also you can't have eaten a devil fruit and eat another otherwise you will die. Anyway, I am implementing the part where you can't swim, and I keep running into this logical error, here is my code (without imports): @Mod.EventBusSubscriber(modid = DevilFruitMod.MOD_ID) public class PlayerEventHandler { @SubscribeEvent public static void onLivingUpdate(TickEvent.@NotNull PlayerTickEvent event) { Player player = event.player; if (player.getPersistentData().getBoolean("hasConsumedDevilFruit")) { DevilFruitMod.LOGGER.info(player.getName().getString() + " has consumed a Devil Fruit and is in water: " + player.isInWater()); if (player.isInWater()) { player.setDeltaMovement(0, player.getDeltaMovement().y - 0.1, 0); DevilFruitMod.LOGGER.info("Setting downward movement for " + player.getName().getString()); } } } } Basically what is happening is that if I re log back in after have eaten a devil fruit already, it does not set the players delta movement correctly in water (its supposed to make it so that they can barely move and will drown in deeper waters), however as a debugging method, every tick it DOES print out that they have eaten a devil fruit meaning that it runs through these if statements. If I give myself another devil fruit eat it, die, and eat another, then only it makes it so that I can't swim. Can someone help me out? I hope I explained this well lol.
  2. Hey all, I am very new to modding (started a week ago lol) and I have an ap computer science course level of java info. With some help of chatGPT and looking through forge api (trying to fix the things that arent in 1.21 since i can't find the api for that and I am using forge 1.21) I am trying to make a devil fruit mod. For all you non one piece fans, basically when you eat it it gives you a power (I will implement that later), It makes it so that you can't eat another without dying (Already implemented), and it makes it so that you can't swim. For now, I am trying to make the player really slowed down while going into the water. This is my code (except for my imported classes and package (YES I HAVE IMPORTED EVERYTHING )): @Mod.EventBusSubscriber(modid = DevilFruitMod.MOD_ID) public class PlayerEventHandler { @SubscribeEvent public static void onLivingUpdate(LivingEvent event) { if (event.getEntity() instanceof Player player) { if (player.isInWater()) { applySlownessEffect(player, 60, 2); } } } /* @SubscribeEvent public static void onLivingJump(LivingEvent.LivingJumpEvent event) { if (event.getEntity() instanceof Player player) { // Check if you want to prevent jumping under certain conditions if (player.isInWater()) { event.setCanceled(true); // Cancel the jump event } } }*/ public static void applySlownessEffect(Player player, int durationInTicks, int amplifier) { MobEffectInstance slownessEffect = new MobEffectInstance(MobEffects.MOVEMENT_SLOWDOWN, durationInTicks, amplifier); player.addEffect(slownessEffect); } } However, whenever I go into water (im testing it without the devil fruit part rn), the game crashes and I get this error in my run client: Caused by: java.lang.LinkageError: loader constraint violation: loader 'SECURE-BOOTSTRAP' @add0edd wants to load interface org.apache.logging.log4j.util.MessageSupplier. (org.apache.logging.log4j.util.MessageSupplier is in module org.apache.logging.log4j@2.22.1 of loader 'SECURE-BOOTSTRAP' @add0edd, parent loader 'app') I would also like to be able to make them unable to jump, or if someone had a suggestion to make them completely unable to swim instead of slow and jump please tell me. Or if there was a way I could make it so that right after they eat the fruit they cant swim for the rest of the game in my fdevilfruit class after they use the item. Sorry if it is hard to help me since I havent shown the rest of my classes. Can anyone please help, and aa good explantion would be nice since I am relatively new to modding but I love programming and want to understand what is happening. Thanks :)!
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.