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 no idea if I'm doing this even near right but when I spawn a chicken next to a zombie I get this error "Can't find attribute minecraft:generic.attack_damage" error.

package me.prouddesk.proudmod.proudmod.common.events;

import me.prouddesk.proudmod.proudmod.ProudMod;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityType;
import net.minecraft.entity.ai.attributes.Attributes;
import net.minecraft.entity.ai.goal.*;
import net.minecraft.entity.monster.ZombieEntity;
import net.minecraft.entity.passive.ChickenEntity;
import net.minecraftforge.event.entity.EntityAttributeModificationEvent;
import net.minecraftforge.event.entity.EntityJoinWorldEvent;
import net.minecraftforge.eventbus.api.SubscribeEvent;
import net.minecraftforge.fml.common.Mod;


@Mod.EventBusSubscriber(modid = ProudMod.MODID)
public class PlayerEvents {

    @SubscribeEvent
    public static void onEntitySpawn(EntityJoinWorldEvent e)
    {
        Entity mob = e.getEntity();
        if(mob instanceof ChickenEntity) {
            ChickenEntity chick = (ChickenEntity) mob;

            chick.goalSelector.addGoal(2, new MeleeAttackGoal(chick, 1.0D, false));
            chick.targetSelector.addGoal(2, new NearestAttackableTargetGoal<>(chick, ZombieEntity.class, true));
        }
    }

    @SubscribeEvent
    public static void Attributes(EntityAttributeModificationEvent e) {
        e.add(EntityType.CHICKEN, Attributes.ATTACK_DAMAGE, 2.0D);
    }
}

Edited by ProudDesk

  • Author
6 hours ago, DietmarKracht said:

You need to register your Attributes void to the Mod Eventbus.

How would I do that?  I tried to register the whole class by doing 

MinecraftForge.EVENT_BUS.register(ChickenAttack.class);

But that doesn't work.

  • ProudDesk changed the title to Attributes Not Applying
  • Author
23 minutes ago, diesieben07 said:

You are registering to the forge event bus, the event fires on the mod event bus.

Ahh! Thank you, I fixed it.

  • ProudDesk changed the title to [SOLVED] Attributes Not Applying

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.