Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

I have made an item that adds a sphere of particles  around a player, but my IDE gives an error at the addParticle. Does someone know what the problem is? This is the code btw.

package com.kuikenpower.falidsmp.init.item;

import com.kuikenpower.falidsmp.particle.ModParticles;

import net.minecraft.client.particle.Particle;
import net.minecraft.core.Position;
import net.minecraft.core.particles.ParticleOptions;
import net.minecraft.core.particles.ParticleTypes;
import net.minecraft.world.InteractionHand;
import net.minecraft.world.InteractionResultHolder;
import net.minecraft.world.effect.MobEffectInstance;
import net.minecraft.world.effect.MobEffects;
import net.minecraft.world.entity.Entity;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.item.AxeItem;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.item.Tier;
import net.minecraft.world.level.Level;
import net.minecraft.world.phys.Vec3;

public class jungleDagger extends AxeItem{

	public jungleDagger(Tier p_40521_, float p_40522_, float p_40523_, Properties p_40524_) {
		super(p_40521_, p_40522_, p_40523_, p_40524_);
		// TODO Auto-generated constructor stub
	}

	@Override
    public void inventoryTick(ItemStack p_41404_, Level p_41405_, Entity entity, int p_41407_, boolean p_41408_) {
        Player player = (Player)entity;
        if(player.getMainHandItem().getItem() instanceof SandSword) {
        	player.addEffect(new MobEffectInstance(MobEffects.MOVEMENT_SPEED, 20));
        }
	}
	
	@Override
	public InteractionResultHolder<ItemStack> use(Level world, Player p_41433_, InteractionHand p_41434_) {
		Position location = p_41433_.getPosition(1);
		for (double i = 0; i <= Math.PI; i += Math.PI / 10) {
			   double radius = Math.sin(i);
			   double y = Math.cos(i);
			   for (double a = 0; a < Math.PI * 2; a+= Math.PI / 10) {
			      double x = Math.cos(a) * radius;
			      double z = Math.sin(a) * radius;
			      ((Vec3) location).add(x, y, z);
			      world.addParticle(ParticleTypes.LARGE_SMOKE, location);
			      ((Vec3) location).subtract(x, y, z);
			      
			   }
			}
		return super.use(world, p_41433_, p_41434_);
	}
	
}

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.