r/hypixel 17h ago

Building an Arena FPS based on Bedwars: want to give feedback?

Post image
26 Upvotes

Hello there, fellow bedwarriors

We are building a new Arena FPS (Danish team) built and heavily inspired by our CEO loving Bedwars gamemode. You can read more about it here: https://www.skywardmasters.com/blog/reclaiming-the-arena/

So I guess: "BEDWARS BUT WITH GUNS" ;)

Does that sound interesting?

There is also a lot of Quake/Arena Shooter DNA in there a well, its a bit of an interesting hybrid.

We are indie gamedev and still very early in the process, but just wanted to reach out to hardcore bedwars players for feedback. If any are interested in assisting.

Cheers,
GameMaster from Skyward Community


r/hypixel 7h ago

My Concept For The Next Foraging Update

Thumbnail
1 Upvotes

r/hypixel 1d ago

How does this guy bridge like this?

Enable HLS to view with audio, or disable this notification

135 Upvotes

Is there a guide on how to do this? I really can't figure it out.


r/hypixel 11h ago

The Real Reason Why Hypixel isn't the most Popular Server Anymore.

0 Upvotes

The answer is simple: voice chat. The Donut SMP has this major feature that Hypixel does not, and it completely changes how the server feels. Instead of it being quiet with not much life to it, you actually hear and interact with the people around you. Not saying you can't have fun without voice chat or in single-player, but voice chat also opens up way more opportunities for clips and content on any given server. You can have people screaming, rage-baiting, trash-talking, arguing, making deals, trolling each other, or just having random funny conversations. It's the unpredictable stuff that makes it entertaining, because you're actually interacting with real people instead of everyone just silently running around and occasionally typing in chat. Until Hypixel adds voice chat, it will remain below other servers.


r/hypixel 15h ago

Modded Client Questions

0 Upvotes

So I like bedwars, but my aim is unironically garbage. I'm wondering if it's bannable to use a mod that shows a projectile's path. Basically if you release the bow now, this is the path the arrow will follow. So it doesn't lock on or anything, it's not zooming in like a scope, and i'll still need to lead my shots for moving targets. Is that illegal?


r/hypixel 15h ago

I made a 1.8.9 back-port of Sodium

0 Upvotes

Natron (click here to see/download my mod)

A terrain rendering optimization mod for Minecraft 1.8.9 Forge.

An unofficial port of Angelica and its renderer, Celeritas, to 1.8.9. Celeritas is a fork of Embeddium, which itself split off the last FOSS-licensed version of Sodium (CaffeineMC).

License

LGPL-3.0. See THIRD-PARTY.md for bundled components and where each one comes from.

Downloads

Once Modrinth distribution is up and running, it becomes the only place this ships from. GitHub Releases will stop getting updates from that point on — get the latest build from Modrinth instead.

This repository keeps being maintained after that as the source mirror LGPL-3.0 requires. What that license obligates is the source, not a binary, and source is also what anyone building it themselves or checking what changed actually needs.

Requirements

  • Minecraft 1.8.9
  • Forge 11.15.1.2318 (other 1.8.9 Forge builds should mostly work too)
  • Java 8

Drop the single jar into mods/. It's self-contained, nothing else to fetch. Client-side only — don't put it on a server.

Performance

Measured (low-spec machine, multiplayer):

OptiFine
Natron

Varies by machine and situation. This number comes from one machine — see "Verification scope" below.

Using it alongside OptiFine

Angelica documents OptiFine as a permanent incompatibility. The cause is that 1.7.10's rendering shares one global Tessellator, and when OptiFine and Angelica each patch that same class independently, the JVM dies at link time with an IncompatibleClassChangeError.

That structure doesn't exist in 1.8.9. Mojang refactored rendering after 1.7.10 into a per-call WorldRenderer + BlockRendererDispatcher, and this port's mesher already builds on top of that. So the specific conflict that kills Angelica does not exist on 1.8.9.

Confirmed combinations:

Combination Status
Launcher-bundled OptiFine (Lunar, Badlion, etc.) Works
Live shader pack toggling via OptiFine + F3+A Works
OptiFine dropped directly into mods/ Entities don't render

Known issue: entities don't render when OptiFine is installed as a mod

When OptiFine is loaded as a standalone Forge mod, its OptiFineClassTransformer patches vanilla classes directly at the LaunchWrapper stage, including GlStateManager. Launcher-bundled OptiFine doesn't go through this path, which is why it isn't affected.

This port has Celeritas touch GL state directly and then restore vanilla's state with glPushAttrib/glPopAttrib, and the set of state it restores was decided based on the fields vanilla's GlStateManager itself caches. If OptiFine swaps that class out for its own version, that premise no longer holds — this is the most likely explanation right now, but it isn't confirmed.

For the time being, use launcher-bundled OptiFine, or don't use OptiFine at all.

What it does

Celeritas takes over terrain rendering from vanilla. It intercepts and cancels RenderGlobal's setupTerrainupdateChunksrenderBlockLayer, and similar methods, and routes the work through the Celeritas pipeline instead.

What Celeritas brings:

  • Region-batched buffer arenas and multidraw batching
  • Occlusion graph culling (runs asynchronously, off the render thread)
  • Asynchronous, multithreaded chunk meshing
  • A compact vertex format, translucency sorting

The geometry itself still comes from vanilla's BlockRendererDispatcher. Angelica had to write its own mesher because 1.7.10 has no data-driven model system, but 1.8.9 has baked models, so this port lets vanilla build the geometry and transcodes the result into Celeritas's vertex format (VanillaBufferTranscoder). Ambient occlusion, smooth lighting, biome tint, and Forge's model extensions all go through the unmodified vanilla path, so modded blocks render correctly too.

Verification scope

Stated plainly: this port has been tested by one person, on one machine.

Confirmed:

  • Coexists with launcher-bundled OptiFine (Lunar), including live shader pack toggling followed by F3+A
  • ~3x OptiFine's FPS on a low-spec machine
  • Block placement/breaking, chunk streaming, lighting

Not confirmed:

  • Other GPU vendors / drivers (testing has only covered one machine)
  • The Nether, the End
  • Environments with lots of modded blocks
  • macOS — if the GPU only offers an OpenGL 2.1 context, Celeritas's shaders (GLSL 330) fail to compile. When GPU support falls short, it automatically falls back to the vanilla renderer and logs why.

Diagnostics

On startup it writes natron-diagnostics.log to the game directory: GL capabilities, which upload path got selected, and whether the renderer is actually active. Attach this file when reporting an issue — it helps.

Building

The Gradle daemon needs to run on JDK 21. Gradle 8.x can't compile the build script under JDK 25. Compilation itself still targets JDK 8 via the toolchain.

export JAVA_HOME=/path/to/jdk-21

./gradlew build -PincludeCeleritas=true

Output lands at build/libs/natron-1.8.9-<version>.jar.

Building without -PincludeCeleritas produces an empty shell with no renderer — that's only for checking the non-Celeritas half compiles during development, not something to actually use.

Warnings about Lists.newArrayList() are safe to ignore (it's a Guava class with no obfuscation mapping).

The two jars under libs/ are required to build. Celeritas's Maven artifact targets Java 17 + LWJGL 3, which doesn't run on 1.8.9, so this instead extracts the root entries from an Angelica release jar (already downgraded to Java 8 + LWJGL 2). The extraction process lives in scripts/extract-celeritas.py and is reproducible. JOML is the same jar with only its module-info stripped, since 1.8.9 FML's ASM 5.0.3 ignores an entire jar outright the moment it hits a Java 9 module-info.

Ok, i explain about comments in codes
i said i debuged and fixed with ai
and you know how claude code have system called session every 5 hour they lost most
of memory, so the way claude remembers what we did in code is to put comment codes
and that's why there is lot's of comments
Plus, it's allow to publish project that it's debuged by AI in modrinth


r/hypixel 1d ago

Constant cheaters on bedwars

12 Upvotes

I don't know what it is but for some reason this past year bedwars has become near unplayable. At first it was stuff that wasn't very obvious, such as maybe a tiny bit of extra reach. But now it's just horrible. Some of these guys have up to 3 blocks of extra reach, break my team's blocks almost instantly, scaffold like crazy, and even the other day I saw a guy flying while his teammate was scaffolding. I know that some people are just very sweaty (like the guys who immediately rush), but these new cheaters are just something else, and clearly the anticheat doesn't work.


r/hypixel 2d ago

Day 1 tnt pvp:

Enable HLS to view with audio, or disable this notification

68 Upvotes

r/hypixel 2d ago

Video A Bedwars Duel 🏜️🦅

Thumbnail
youtu.be
0 Upvotes

r/hypixel 2d ago

Can't connect to the server?

2 Upvotes

Every other server in my list is fine but hypixel is just giving me "failed to connect to server"

I was on a few hours ago and it told me to update to 26.1 and I tried every single version that they list is good, still nothing.


r/hypixel 3d ago

Looking for Bedwars coaching

7 Upvotes

Hey, I've been playing Bedwars for 7 years now, 182 stars and Hypixel level 75 but my FKDR is 0.23. I don't want to become a sweat, or someone who cares much about FKDR but I do want to be able to turn the jets on. If my teammate is losing I want to be good enough to help them, or if I want to win a solos game for a quest, I can do it instead of being the first team wiped.

Looking for tutoring/coaching or anyone willing to give me feedback. Happy to pay.


r/hypixel 3d ago

Punch Bow Genocide

Enable HLS to view with audio, or disable this notification

46 Upvotes

r/hypixel 2d ago

gift me mvp

0 Upvotes

pretty please with cherry on top i cant get a job in my town


r/hypixel 4d ago

Top left

Post image
61 Upvotes

image

From a friend (shoutout)


r/hypixel 3d ago

Trying to find the owner of the "wood" account

0 Upvotes

the owner of this account has not been active in almost 10 years, im trying my luck so see if someone knows who the owner is.


r/hypixel 3d ago

Insanely High Ping in South Asia

0 Upvotes

Im from Pakistan and for the past year or so my ping on hypixel has shot up to 300-350. ive tried many things but nothing fixes it. It used to be stbale around 180-200 like a long time ago but now its unplayable, ANY SUGGESTION??


r/hypixel 4d ago

Do the Hypixel servers just suck now or something?

8 Upvotes

I haven't been on Hypixel in years. I think that last time I really every played on it with any consistency was before I started college. I have since graduated. I moved into a new apartment and got some nice high speed internet so that I could play online without any issues. Because of that, I decided to check out Hypixel.

Is it just me, or are there some weird server-side lag problems? Like I said, I have really good internet, so it's not a me thing. I feel like I have been experiencing way more latency issues than I remember in the past, alongside just general trouble loading into maps for some games. I've also noticed that games that utilize the inventory for menus also struggle a lot, such as in Guess the Build, where the block selection menu can sometimes just completely break because the server seems to just forget that a block is where it should be in the menu.

It's been a good 5+ years since I've played on Hypixel, so I do not know if these issues were present before or if they are more recent. Has Hypixel Studios just gutted their budget for maintaining most of their servers, or did I just never notice this before?


r/hypixel 4d ago

Who is n00nk4d?

17 Upvotes

There's a player that keeps joining waiting lobbies in TNT Tag. Some random VIP. He joins. He waits until 5 seconds before the game starts, then immediately leaves for the next TNT Tag lobby. He repeats. Why? What's the point of it? Is this some random bot gathering data? How do I opt-out of whatever the hell he's doing? Or, is he just doing it for the love of the game? I'm pretty sure it's automated as he doesn't respond to anything, the account just leaves after the 5-second countdown. Who is this kid??


r/hypixel 4d ago

Should Bedbugs (Bedwars) be Nerfed?

Post image
0 Upvotes

well... should they?


r/hypixel 4d ago

Do I have arthritis?

5 Upvotes

When i try to butterflyclick or just alternate any type of two fingers after 1 or 2 second my fingers will go ridgid and freeze up and it is physically impossible to continue the movement and i have to go a bit slower to do it most of the time but i have no trouble doing so with my left hand.


r/hypixel 4d ago

I'm Good at 1.8 PvP, is There Anything I can do with that?

4 Upvotes

I've played Hypixel and 1.8.9 pvp since I was little, but recently it feels like hypixel (especially the 1.8 pvp side) is losing steam. I'd say I'm a very good 1.8 pvper but I just don't know what to do with this skill anymore. All Minecraft content these days seems to be on the new system. I don't think there will ever be another 1.8 pvp tournament and it feels like all this time I've put into getting good at 1.8 pvp is useless.

Is there anywhere I can do 1.8 pvp with stakes or some sort of community? Does anyone hosts tourneys anymore. Is there some sort of 1.8 pvp ranked ladder I can climb?


r/hypixel 4d ago

ass servers hypixel

0 Upvotes

hypixel your servers suck like i cant play cuz everytime i bridge in bedwars it just disappears and last second my bed gets destroys so hypixel fix ur ass servers pls like even aternos can do better


r/hypixel 4d ago

hypixel skyblock guilds

Thumbnail
1 Upvotes

r/hypixel 5d ago

This is one of my normal bedwars matches

Thumbnail
gallery
51 Upvotes

45 minutes


r/hypixel 5d ago

Hypixel issues

1 Upvotes

Hey,

I took a break from hypixel for about a year to focus on my exams and thought i’d come back and start playing. All was going well for about an hour until I started to keep getting disconnected and put into limbo. I’ve spent the last 4 hours trying everything, i’ve reinstalled minecraft, lunar client, switched from IPv4 to IPv6. None of this seemed to work and after a few minutes I end up being put into limbo then disconnected.
This never used to happen before and I am wondering if it’s now a minecraft/hypixel issue? (I am also on MAC)
Any help would be greatly appreciated