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

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?

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.