Jump to content

ItsPayne

Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by ItsPayne

  1. Hey guys! I'm a newbie in Minecraft modding, so I'm trying to make a simple mod that can "change" existing mobs to a random one through the event class: package com.itspayne.randommob.events; import com.itspayne.randommob.RandomMob; import net.minecraft.world.entity.Entity; import net.minecraft.world.entity.LivingEntity; import net.minecraft.world.entity.player.Player; import net.minecraft.world.level.Level; import net.minecraftforge.event.TickEvent.Phase; import net.minecraftforge.event.TickEvent.PlayerTickEvent; import net.minecraftforge.eventbus.api.SubscribeEvent; import net.minecraftforge.fml.common.Mod.EventBusSubscriber; import net.minecraftforge.fml.common.Mod.EventBusSubscriber.Bus; import java.util.List; @EventBusSubscriber(modid = RandomMob.MOD_ID, bus = Bus.FORGE) public class ModEvents { @SubscribeEvent public static void onPlayerInteract(PlayerTickEvent e) { Player p = e.player; Level world = e.player.level; List<LivingEntity> entities = world.getEntitiesOfClass(LivingEntity.class, p.getBoundingBox().expandTowards(200, 200, 200)); if (e.phase == Phase.END) { if (p.tickCount % 20 == 0 && e.side.isClient()) { for (LivingEntity livingEntity : entities){ if (!(livingEntity instanceof Player)){ double eX = livingEntity.getX(); double eY = livingEntity.getY(); double eZ = livingEntity.getZ(); livingEntity.remove(Entity.RemovalReason.KILLED); /* spawn new mobs instead of existed here */ } } } } } } It should happen every minute, but for a debug proccess I changed a value to a second. Everything's almost done, but I just can't understand how to get list of entity types and spawn a mob with a type of random types' list element correctly. Can someone help me?
  2. Just downloaded MDK for 1.17.1, set up my project in IntelliJ IDEA Community 2021.1.3, but there's an error "Exception in thread "main" java.lang.module.ResolutionException: Module jline.terminal reads more than one module named cpw.mods.securejarhandler". Java version is 16.0.2. If I'll try to change it, there'll be new module instead of "jline.terminal". Here's the full log: Exception in thread "main" java.lang.module.ResolutionException: Module jline.terminal reads more than one module named cpw.mods.securejarhandler at java.base/java.lang.module.Resolver.resolveFail(Resolver.java:908) at java.base/java.lang.module.Resolver.checkExportSuppliers(Resolver.java:729) at java.base/java.lang.module.Resolver.finish(Resolver.java:379) at java.base/java.lang.module.Configuration.<init>(Configuration.java:140) at java.base/java.lang.module.Configuration.resolveAndBind(Configuration.java:494) at java.base/java.lang.module.Configuration.resolveAndBind(Configuration.java:298) at cpw.mods.bootstraplauncher@0.1.15/cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:77) Process finished with exit code 1 Any ideas to fix it?
×
×
  • Create New...

Important Information

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