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

Hi all,

 

I've been trying to add a throwable item for a while now and I can't find any up to date resources on the topic.

I've got my item and its class all sorted, with a cooldown in place etc but I don't know how to actually create my entity. (I think that's how it's done?).

 

I need help on creating a class to initialise my entities (if it works similarly to items and blocks) and for the actual thrown entity, aswell as its collision etc.

Any help would be greatly appreciated, or a link to a helpful site you know of!

 

Thank you for your time.

  • Author

My issue now is this:

 

public class ModEntityType {

	public static final DeferredRegister<EntityType<?>> ENTITY_TYPES = new DeferredRegister<>(ForgeRegistries.ENTITIES,
			Combat.MODID);

	public static final RegistryObject<EntityType<ShurikenEntity>> SHURIKEN_ENTITY = ENTITY_TYPES
			.register("shuriken_entity",
					() -> EntityType.Builder.<ShurikenEntity>create(ShurikenEntity::new, EntityClassification.MISC)
							.size(0.25F, 0.25F)
							.build(new ResourceLocation(Combat.MODID, "shuriken_entity").toString()));


}

 

I need to make SHURIKEN_ENTITY extend ProjectileItemEntity, does anone know how I'd go about doing that?

4 hours ago, ultra_reemun said:

I need to make SHURIKEN_ENTITY extend ProjectileItemEntity, does anone know how I'd go about doing that?

public class MyEntity extends ProjectileItemEntity

Done.

4 hours ago, ultra_reemun said:

new ResourceLocation(Combat.MODID, "shuriken_entity").toString()

You should replace this with just the string literal, "MODID:shuriken_entity"

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

  • Author
6 hours ago, Animefan8888 said:

public class MyEntity extends ProjectileItemEntity

Done.

You should replace this with just the string literal, "MODID:shuriken_entity"

Thanks for your help.

 

My ShurikenEntity class already extends ProjectileItemEntity, however my issue lies with my constructor here:

public ShurikenEntity(World worldIn, LivingEntity throwerIn) {
		super(ModEntityType.SHURIKEN_ENTITY, throwerIn, worldIn);
	}

My IDE is returning the error:

The constructor ProjectileItemEntity(RegistryObject<EntityType<ShurikenEntity>>, LivingEntity, World) is undefined

And is suggesting the fix :

Change Type of 'SHURIKEN_ENTITY' to 'EntityType<? extends ProjectileItemEntity>'

Which is giving an error.

im working on a similar thing. if you do

super(ModEntityType.SHURIKEN_ENTITY.get(), throwerIn, worldIn);

instead of

super(ModEntityType.SHURIKEN_ENTITY, throwerIn, worldIn);

it should work

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.