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 found the mistake was checking for King instead of Queen because I had some other things with King so I need to have another event I suppose for two different entities

 

No event is triggered. Is something wrong with my code?( yes I check for King ...then Queen)

 

	@SubscribeEvent
public void onEntityTobieKingDeath(LivingDeathEvent event){
	if (!event.entityLiving.worldObj.isRemote ){
	if(!(event.entityLiving instanceof EntityTobieKing)){
		return;
	}
	if (event.entityLiving instanceof EntityTobieQueen){
		DamageSource source = event.source;
		EntityTobieQueen queen = (EntityTobieQueen) event.entityLiving;		
		if (source.getEntity() instanceof EntityPlayer) {
			EntityPlayer sourcePlayer = (EntityPlayer) source.getEntity();
			sourcePlayer.addStat(GlistreMod.mobKillAchievement_1, 1);	
			sourcePlayer.addChatMessage(
					new ChatComponentText(EnumChatFormatting.GOLD + "YOU KILLED THE EVIL TOBIE QUEEN ELIZABETH!!!!"));
			sourcePlayer.addPotionEffect(new PotionEffect(Potion.fireResistance.id, 2500, 0));
			sourcePlayer.addExperience(50000);}

 

 

Is it not triggering as in method is not even called? In that case - did you register event class?

 

Else (it is called, just doesn't do stuff) at what point it doesn't?

1.7.10 is no longer supported by forge, you are on your own.

  • Author

Is it not triggering as in method is not even called? In that case - did you register event class?

 

Else (it is called, just doesn't do stuff) at what point it doesn't?

 

Methinks registered okay ...I have this in init of my main class and the event seems to work when I tried other methods just not

with the method #addstat or #addPotionEffect  or #addChat

 

Seems like it's just not picking up the player who kills the mod

GlistreEventHandler handler = new GlistreEventHandler();
FMLCommonHandler.instance().bus().register(handler);
MinecraftForge.EVENT_BUS.register(handler);	

 

Your logic appears to be problematic:

if(!(event.entityLiving instanceof EntityTobieKing)){
return; // returning if entity is not an EntityTobieKING
}
if (event.entityLiving instanceof EntityTobieQueen){ // how will this ever be true???

Unless EntityTobieQueen extends EntityTobieKing, that second statement will never be true.

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.