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.

Leaderboard

Popular Content

Showing content with the highest reputation on 10/25/17 in all areas

  1. If you understand Java, then I shouldn't have needed to post this.
  2. Nobody cares what is considered a cheat. Why exactly are you looking for ways to check mobs in your area on the client side? If you want to get a list of mobs in the player's area one way I can think of off the top of my head is to make a tickhandler that gets entities from the world using something like this: List players = world.getEntitiesWithinAABB(EntityPlayer.class, //or use EntityMob since you're looking for mobs. new AxisAlignedBB( playerCoord.x - area, playerCoord.y - area, playerCoord.z - area, playerCoord.x + area, playerCoord.y + area, playerCoord.z + area)); //formatted so it's not a huge string of text. for(int i = 0; i < players.size(); i++){ do stuff } which gets you a list of all players around the player. I'm fairly sure that method should work just fine on the client. (Though I might be mistaken.) (Edit: I just tested it out, it works pretty fine!) If you want to keep using that event you could alternatively try sending a packet to the client. But if you're making a radar of sorts there's not really any reason to bother the client with it. Unless you really want to. If you're doing anything to these other entities, however. You probably do want to make a packet and execute your code Server side.
  3. minecraft just updated again forge now works yay!

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.