Jump to content

Help applying potion effects to mobs


Dejo26

Recommended Posts

Hello everyone.

First of all I'm junior modder but I have some time programming on Java so everything is ok.

 

Now, here is my question.

How can I apply potion effects to entities(mobs and players)? I'm using 1.12.2

 

I made an enchantment for the sword, and I want to apply slowness to every entity I hit.

I tried a lot of things and I've researched a lot before come here so, here is my "subscribeEvent" method

 

 

@SubscribeEvent
	public static void enchantAttack(LivingAttackEvent event) {
		Object attacker = event.getSource().getTrueSource();		
		
		System.out.println("Hi0");
		if(attacker instanceof EntityLivingBase ) {
			System.out.println("Hi1");
			EntityLivingBase entityAttacker = (EntityLivingBase)attacker; 
			EntityAnimal picha = (EntityAnimal)attacker;
			
			int leve = EnchantmentHelper.getEnchantmentLevel(DAMAGE_HEAL, entityAttacker.getHeldItemMainhand());
			if(leve > 0) {
				System.out.println("hi2");
				
				
				picha.addPotionEffect(Potion.getPotionById(2), 100, 0);
				
			
				
				
			}
		}
		
	}

 

Thanks :c

 

 

 

 

 

 

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • updated a few mods and now my pack won't load https://paste.ee/p/0sUrp
    • I have installed Forge 1000 times and in different versions, but every time I enter a server or world, it loads the entire square and then it says ''Saving world''. After that, Minecraft closes and the launcher opens with a window displaying error code ''-1''. I don't even have any mods installed, it doesn't let me join any world or server. I contacted Minecraft support, and they told me to talk to you. I hope you can help me with this issue, I'm waiting for your response.
    • I'm trying to make a Event that is fired if a Player is swimming. Here is the Event Class: public class PlayerSwimEvent extends PlayerEvent { public PlayerSwimEvent(Player player) { super(player); } } Here is the Hooks (similar to ForgeHooks Class) that has Methods for the Events: public class EventHooks { public static void onPlayerSwim(Player player) { MinecraftForge.EVENT_BUS.post(new PlayerSwimEvent(player)); } } And here is the Mixin Class: @Mixin(value = Player.class) public class MixinPlayerSwimEvent { @Inject(method = "isSwimming", at = @At("HEAD")) public boolean isSwimming(CallbackInfoReturnable<Boolean> cir) { Player player = null; if (!player.getAbilities().flying && !player.isSpectator()) { EventHooks.onPlayerSwim(player); } return cir.getReturnValue(); } } My Issue is now that I don't get it to work because of the missing Parameter Player. Can someone help with this?
    • Official Website: https://informalhouse.com/r31p [Tap To Order Now] Perma Health Keto Gummies Canada if you're looking for a feature upgrade that will aid in your weight loss. It's among the most well-known weight loss supplements that are currently available, and many people have reported that it has assisted them in losing weight and maintaining their current physical appearance because it is believed to have a number of health benefits when taken over an extended period of time. Order Now:- https://groups.google.com/g/perma-health-keto-gummies-canada-quebec-try/c/4Um2uvnP-9g https://groups.google.com/g/active-keto-capsules-reviews-australia-public/c/kDDPgO8i8N4 https://gamma.app/public/Active-Keto-Capsules-Australia-weight-loss--l3anbew5k3vo5xl https://gamma.app/public/Perma-Health-Keto-Gummies-Canada-Quebec-Buy-5lhwh920bh1hzfd https://medium.com/@jon2023lee/perma-health-keto-gummies-canada-quebec-healthy-weight-loss-88a1bf673d72 https://medium.com/@jon2023lee/active-keto-capsules-australia-increased-energy-d80bc3aa5fc6 https://groups.google.com/g/chemistbuy--warehouse-keto-gummies-australia/c/L9ehZw7QxvA https://groups.google.com/g/mozilla.dev.platform/c/DUplSCW14Ds https://groups.google.com/g/mozilla.dev.platform/c/mxfTITHqHQU https://groups.google.com/g/active-keto-capsules-reviews-australia/c/xIM5sHObvSA https://www.facebook.com/ChemistWarehouseKetoGummiesAustraliasale https://www.facebook.com/ActiveketocapsulesreviewsAustralia https://gamma.app/public/Chemist-Warehouse-Keto-Gummies-Australia-Do-whatever-it-takes-not-5hixkohxcxt89to?mode=doc https://gamma.app/public/Active-keto-capsules-reviews-Australia-Crazy-Deals-Todays-best-of-iksqml7nl380vmp?mode=doc   
    • Check for CPU/GPU driver updates
  • Topics

×
×
  • Create New...

Important Information

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