How do i make vanilla mobs drop custom items.

Started by poguxd on

Topic category: Help with modding (Java Edition)

Last seen on 21:20, 18. Apr 2016
Joined Sep 2014
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
How do i make vanilla mobs drop custom items.

i am making a food mod but i don't know how to get pigs to drop bacon and ham. anyone know if you can do that in mcreator?

Last seen on 22:13, 3. Apr 2024
Joined Aug 2013
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
You can do it with event
Sat, 04/09/2016 - 23:32

You can do it with event handler. Put there "LivingDropsEvent" event , check for the mob (for example "EntityPig") and put here code for drop item. (for example "    event.entityLiving.dropItem(Items.bone, 4);")

Last seen on 21:20, 18. Apr 2016
Joined Sep 2014
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
thanks i try that
Sun, 04/10/2016 - 13:35

thanks i try that

Last seen on 21:20, 18. Apr 2016
Joined Sep 2014
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
RE:You can do it with event
Fri, 04/15/2016 - 20:51

@#1 hold on which event handler and where it is? still kinda new to this program

Last seen on 22:13, 3. Apr 2024
Joined Aug 2013
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
RE:RE:You can do it with event
Fri, 04/15/2016 - 22:23

@#1.1 Use (empty) GUI Overlay element.