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 need that when you hit entity it will spawn particles near it, but spawnParticles in hitEntity event isnt working because need World. Please help.

  • Author

Entity has a field called

worldObj

...

 

public boolean hitEntity(ItemStack par1ItemStack, EntityLivingBase par2EntityLivingBase, EntityLivingBase par3EntityLivingBase) {
	par2EntityLivingBase.worldObj.spawnParticle("lava", par2EntityLivingBase.posX, par2EntityLivingBase.posY + 0.5f, par2EntityLivingBase.posZ, 0f, 0f, 0f);
	par1ItemStack.damageItem(1, par2EntityLivingBase);
	return true;
}	

 

Isn't work :(

And someone know block destroy particle name? For example, redstone block?

And someone know block destroy particle name? For example, redstone block?

 

Block break particles aren't called in the same way as other particles.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

  • Author

Can't understand why it is not working... HitEntity working fine, i also tryed to use spawnParticles in onItemRightClick, it's work, but when hit entity it isn't working!

public boolean hitEntity(ItemStack par1ItemStack, EntityLivingBase par2EntityLivingBase, EntityLivingBase par3EntityLivingBase) {
	par2EntityLivingBase.addPotionEffect(new PotionEffect(Potion.poison.id, 60, 2));
	par2EntityLivingBase.worldObj.spawnParticle("lava", par2EntityLivingBase.posX, par2EntityLivingBase.posY, par2EntityLivingBase.posZ, 1.0D, 1.0D, 1.0D);
	par1ItemStack.damageItem(1, par2EntityLivingBase);
	return true;
}

 

Mob became poisoned, but particles arent working.

 

Here all fine:

public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer)
{
        par3EntityPlayer.worldObj.spawnParticle("lava", par3EntityPlayer.posX, par3EntityPlayer.posY, par3EntityPlayer.posZ, 1.0D, 1.0D, 1.0D);	
	par3EntityPlayer.setItemInUse(par1ItemStack, this.getMaxItemUseDuration(par1ItemStack));
	return par1ItemStack;
}

  • 6 years later...
Quote

Particles can be spawned from either level instance. However, each side has a specific way to spawn a particle. If on the ClientLevel, #addParticle can be called to spawn a particle or #addAlwaysVisibleParticle can be called to spawn a particle that is visible from any distance. If on the ServerLevel, #sendParticles can be called to send a packet to the client to spawn the particle. Calling the two ClientLevel methods on the server will result in nothing.

Above quote comes from ForgeDocs for 1.18x, the target entity in the hurtEnemy function is in the server side so codes posted above could not work, use the target entity to get ServerLevel is ok in my case.

 

Old post though, "For someone who might want to find posts about this topic like me" :)

Edited by Qyama

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.