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.

ItsPayne

Members
  • 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 [email protected]/cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:77) Process finished with exit code 1 Any ideas to fix it?

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.