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 registered an entity, but when I summon my entity, Minecraft says: "Unable to summon entity"

My codes:

c/CRegistries.java:

package com.kg.kgforge.c;

import com.kg.kgforge.KGForge;
import net.minecraft.entity.EntityType;
import net.minecraftforge.registries.DeferredRegister;
import net.minecraftforge.registries.ForgeRegistries;

public class CRegistries {
    public static final DeferredRegister<EntityType<?>> ENTITIES = DeferredRegister.create(ForgeRegistries.ENTITIES, KGForge.MODID);
}

c/CEntities.java:

package com.kg.kgforge.c;

import com.kg.kgforge.entity.KagoEntity;
import net.minecraft.entity.EntityClassification;
import net.minecraft.entity.EntityType;

public class CEntities {
    public static final EntityType<KagoEntity> KAGO = EntityType.Builder.of(KagoEntity::new, EntityClassification.MONSTER).sized(0.6F, 1.95F).clientTrackingRange(8).build("kago");
}

entity/KagoEntity.java:

package com.kg.kgforge.entity;

import net.minecraft.entity.EntityType;
import net.minecraft.entity.monster.MonsterEntity;
import net.minecraft.world.World;

public class KagoEntity extends MonsterEntity {
    public KagoEntity(EntityType<? extends MonsterEntity> type, World world) {
        super(type, world);
    }
}

init/InitEntities.java:

package com.kg.kgforge.init;

import com.kg.kgforge.c.CEntities;
import com.kg.kgforge.c.CRegistries;

public class InitEntities {
    public static void initEntities() {
        CRegistries.ENTITIES.register("kago", () -> CEntities.KAGO);
        CRegistries.ENTITIES.register(Init.EVENT_BUS);
    }
}

Edited by ArianKG

  • ArianKG changed the title to How can I register an entity? [1.16.5]
  • Author

@diesieben07 What is the problem now?

package com.kg.kgforge.entity;

import net.minecraft.entity.EntityType;
import net.minecraft.entity.LivingEntity;
import net.minecraft.entity.ai.attributes.AttributeModifierMap;
import net.minecraft.entity.ai.attributes.Attributes;
import net.minecraft.entity.monster.MonsterEntity;
import net.minecraft.world.World;
import net.minecraftforge.event.entity.EntityAttributeCreationEvent;

import java.util.HashMap;
import java.util.Map;

public class KagoEntity extends MonsterEntity {
    public KagoEntity(EntityType<? extends KagoEntity> type, World world) {
        super(type, world);
        Map<EntityType<? extends LivingEntity>, AttributeModifierMap> map = new HashMap<>();
        map.put(type, createAttributes().build());
        new EntityAttributeCreationEvent(map);
        setHealth(getMaxHealth());
    }
    public static AttributeModifierMap.MutableAttribute createAttributes() {
        return MonsterEntity.createMonsterAttributes()
            .add(Attributes.MAX_HEALTH, 512.0D)
            .add(Attributes.MOVEMENT_SPEED, 1.0D)
            .add(Attributes.FOLLOW_RANGE, 128.0D);
    }
}

Edited by ArianKG

  • Author

@diesieben07 What is the problem now?

package com.kg.kgforge.c;

import com.kg.kgforge.entity.KagoEntity;
import net.minecraft.entity.EntityClassification;
import net.minecraft.entity.EntityType;
import net.minecraftforge.event.entity.EntityAttributeCreationEvent;

public class CEntities {
    public static final EntityType<KagoEntity> KAGO = EntityType.Builder.of(KagoEntity::new, EntityClassification.MONSTER).sized(0.6F, 1.95F).clientTrackingRange(8).build("kago");
    public static void registerAttributes(EntityAttributeCreationEvent event) {
        event.put(KAGO, KagoEntity.createAttributes().build());
    }
}

Edited by ArianKG

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.