Jump to content

[1.7.10] Spawn Particles


TLHPoE

Recommended Posts

What I'm trying to achieve is the "reddust" particle being spawned 4 times each time a living entity is hurt. For some reason, nothing happens.

 

package terrarium.handler.event;

import net.minecraft.entity.EntityLivingBase;
import net.minecraftforge.event.entity.living.LivingHurtEvent;
import terrarium.util.LogUtil;
import cpw.mods.fml.common.eventhandler.SubscribeEvent;

public class ForgeClientEventHandler {
@SubscribeEvent
public void entityHurt(LivingHurtEvent event) {
	EntityLivingBase entity = event.entityLiving;

	LogUtil.info("HI");

	for(int i = 0; i < 4; i++) {
		entity.worldObj.spawnParticle("reddust", entity.posX, entity.posY, entity.posZ, 0, 0, 0);
	}
}
}

 

The class is registered on the client side in MinecraftForge.EVENT_BUS, and it's printing "HI" in the console whenever I hit an entity.

 

Am I missing something obvious?

Kain

Link to comment
Share on other sites

Well, the print is firing.

 

I've also tried registering it on the server side and checking if the world is remote, but the world is never remote. Nothing more.

 

 

Ok, after some debugging I've discovered some things.

 

1. The world on both sides aren't remote

2. The server side event is only called from the server (I was expecting it to call on the client and server thread)

Kain

Link to comment
Share on other sites

Well, the print is firing.

 

I've also tried registering it on the server side and checking if the world is remote, but the world is never remote. Nothing more.

 

 

Ok, after some debugging I've discovered some things.

 

1. The world on both sides aren't remote

2. The server side event is only called from the server (I was expecting it to call on the client and server thread)

 

LivingHurtEvent is only fired server-sided (since it gets fired from within attackEntityFrom(...), which is only fired server-side), so isRemote is always false, even if you register it only on the "client-side"

The only thing you can do is sending a packet when the event fires, wich spawns the particles on the client.

 

You can't register an event handler on the client side.

You can actually register something on the client-side (see TextureStitchEvent, it's client-side only), but it's either "client-side" like for the client and the integrated server, or "server-side" only for the dedicated server, or both

Don't ask for support per PM! They'll get ignored! | If a post helped you, click the "Thank You" button at the top right corner of said post! |

mah twitter

This thread makes me sad because people just post copy-paste-ready code when it's obvious that the OP has little to no programming experience. This is not how learning works.

Link to comment
Share on other sites

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...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

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