Jump to content

notsekahs

Members
  • Posts

    2
  • Joined

  • Last visited

notsekahs's Achievements

Tree Puncher

Tree Puncher (2/8)

1

Reputation

  1. Yeah I just learned forge coding yesterday so I didn't really know about the mode stuff haha, but thanks alot I put that and it worked, love u ❤️
  2. The whole night I've been trying to make exploding arrows/mobs with createExplosion, here's the code for reference: @SubscribeEvent public static void onEntityPunch(AttackEntityEvent event){ if (event.getEntityLiving().getHeldItemMainhand().getItem() == Items.TNT){ if (event.getTarget().isAlive()){ LivingEntity target = (LivingEntity) event.getTarget(); World world = event.getEntityLiving().world; world.createExplosion(target, target.getPosX(), target.getPosY(), target.getPosZ(), 2, ) the function asks for the expressions (entity, xIn, yIn, zIn, explosionradius and mode), the problem is I don't know what to put as mode, it isn't required in any of the online codes that I've read, can someone help please?
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.