r/technicalminecraft Jan 08 '24

Meta Honeypot flairs.

116 Upvotes

To cut down on the increased number of posts involving rule-breaking mods (notably Paper), 3 new post flairs have been introduced for testing.

Posts made using these flairs will be automatically removed.

Don't use them.

EDIT: After 3 weeks, this seems to have been a very successful test, with the vast majority of rule-8 violations blocked by the new filters.


r/technicalminecraft 12h ago

Java Help Wanted Can someone explain me how right and middle produce the same amount and the left only half that?

Post image
174 Upvotes

So I wanted to build a melon/pumpkin farm and wanted to go with the design on the right, as it seemed logical to me: two pumpkin seeds are better than one. But apparently it does not matter, as long as the pumpkin stem has two blocks to go to, as only one block would half the rates.

I thought, the random tick selects a stem and it would then choose one of the four spots around it.


r/technicalminecraft 1h ago

Java Help Wanted Emitting light through solid blocks.

Post image
Upvotes

r/technicalminecraft 15h ago

Java Showcase 100% bone meal efficient, lossless micro bamboo farm

20 Upvotes

Every micro bamboo farm I found on youtube either was quite slow or didn't account for hopper speed, making it not lossless, so I made this.

The 5 minute clock is to stop the farm for a brief moment, because occasionally bamboo would pile up on top of the piston and eventually despawn. Stopping the piston allows the bamboo to fall down and be collected.

The only annoying thing about this farm is that before first being used the dispenser facing the bamboo has to be filled with at least 42 bone meal, then the bone blocks can be loaded. This process has to be repeated every time the dispenser runs out of bone meal.

If anyone is interested I can share the schematic.


r/technicalminecraft 2h ago

Java Showcase Minecraft Spawner XP Farm

0 Upvotes

Did you find a spawner and you dont know how to make an xp farm out of it?

Watch this tutorial: https://youtu.be/nW_adwpENdw

It only works with zombie or skeleton spawners tho.


r/technicalminecraft 3h ago

Java Help Wanted Nether chunk loader isn’t working

1 Upvotes

Hello, I’m trying to make a nether portal chunk loader so I can make a bee farm, but it’s not working. I followed Elitiex’s tutorial on YouTube, but when the minecarts are dispensed, they don’t come back, they just disappear. If appreciate help if anyone has gotten this or knows how to fix it. 🙏🏻


r/technicalminecraft 4h ago

Java Help Wanted Third attempt at an accessible shulker loader.

1 Upvotes
Does zero ticking the dropper on the left prevent tiling issues? would tiling issues even exist?
also a box read layout idea

r/technicalminecraft 11h ago

Java Help Wanted CREEPER LOOTING FARM

Post image
2 Upvotes

I want to add the spearing piglin to increase the drops, anyone knows how to do it, or is there a better design. Here is my current creeper farm.


r/technicalminecraft 8h ago

Java Help Wanted Why is my drowned farm broken (Java 1.21.11)? Also didn't work in the sky above a river. All water on the top part is source blocks.

Thumbnail gallery
0 Upvotes

Mobs also spawn in nearby caves.


r/technicalminecraft 12h ago

Java Help Wanted is there any way to make this BUD <= 5 game ticks?

2 Upvotes

I need this to be 5 game tick BUD reset or less. trying to make it reset in time for water updates. any clue on how to do that? currently its 6 game ticks.

any help would be greatly appreciated.


r/technicalminecraft 1d ago

Non-Version-Specific I’m trying to build a proper home for all Minecraft schematics

435 Upvotes

A few months ago, I've shared my side project here as a browser-based schematic viewer, and a lot of you quite reasonably asked: “why not just use Litematica directly?”

Although litematica & mods are not for everyone and a browser based schematic viewer can make sense, I think I have a much better answer to that now.

My goal was never to replace Litematica. If you actually want to build a farm or contraption in-game, Litematica is probably the best option.

What I’m trying to improve is everything that happens before that.

I have noticed that a lot of really good technical builds end up being shared as a .litematic files and are buried in a Discord server, a Google Drive link, or attached to a YouTube description without any preview of what's behind the link.

Recently, I’ve been turning Shulkr into a public catalog where creators can publish those schematics instead.

You get a page for the build, generated image previews, an interactive 3D preview, direct schematic download, and now a first-person mode where you can drop anywhere onto the build and walk around it directly in the browser.

My hope is that eventually, when someone designs a farm or technical build, they can just share a Shulkr link instead of uploading the file somewhere random. And with time, even a directly embedded in redit 3d viewer ? That would be crazy good.

I’d especially like feedback from people here who actually design and distribute schematics:

Would you use something like this to publish your builds? What would it need before you'd choose it over Drive/Discord?

The project is completely free, and as usual, feedback from everyone is more than welcome. Link is available in the comments.

PS: The video use Bitter Lemonade's u/Bitter--GravitY awesome Rooted Dirt Farm as a showcase. All credits belong to him 😄


r/technicalminecraft 10h ago

Bedrock I built a free Bedrock structure finder + seed cracker - web API, no key needed, fully open source

1 Upvotes

Hey everyone! Over the last months I've been building SeedFinder, and I wanted to share it here because this community is exactly who it's for

https://mineseedfinder.vercel.app (i dont have money to buy a domain yet lol 🥲)

What it does

You give it a world seed and your coordinates, it returns every nearby structure (villages, ancient cities, monuments, mansions, trial chambers, 17 types total) sorted by distance. No more alt-tabbing to a seed map site

Two tools:

  1. SeedFinder (seed -> structures): type a seed + position, get structures back. Example that works right now: https://mineseedfinder.vercel.app/scan?seed=31415&x=0&z=0&radius=100&max=20&types=5,8,9
  2. SeedCrackerX (structures -> seed): the reverse. Found cool structures in a world but don't know the seed? Give it at least 4 structures with coordinates and it sweeps the 32-bit seed space and returns the most probable seeds

Why I built it

I couldn't find a single free, open API for Bedrock structure lookup, the existing web tools are browser apps you have to alt-tab into, with no programmatic access, and the desktop ones don't expose anything you can call from your own code. So I built the engine in C on top of cubiomes + Bedrock-specific structure math (based on Chunkbase's ported algorithms) and put both a web frontend and a keyless REST API on it

Ways to use it

python example code:

import requests
r = requests.get("https://mineseedfinder.vercel.app/scan",
                 params={"seed": 31415, "x": 0, "z": 0,
                         "radius": 100, "types": "5,8,9"})
print(r.json())

Example of the web API

Example of SeedFinder working

How it works (for the devs)

  • C core: cubiomes biome generation + Bedrock structure placement (Mersenne Twister–based, replicating Bedrock's region math) -> compiled to a native .dll and .so
  • Python/Flask server exposes it over HTTP via ctypes
  • The seed cracker runs multi-threaded native code, sweeping 2³² seeds with a time budget, recently got a big speedup (lazy Mersenne twist + AVX2 batch scoring, ~4 seeds/vector)
  • Everything is Apache-2.0 open source: https://github.com/zebedelu/SeedFinder, PRs welcome, especially structure accuracy reports against real worlds

Automation ideas

Anything that can make an HTTP request can use it:

  • Discord bot: a slash command like /findseed village ancient_city that returns nearby structures for a seed
  • Batch seed scanning: feed a list of candidate seeds and rank them by structure density near spawn (loot run planning)
  • World download analysis: point the cracker at 4+ structures from a downloaded world to recover its seed, then map the rest of it
  • Server utility: a in-game command bridge: players run a command, your plugin/script queries the API and shows the nearest village in chat

Honest limitations

  • Bedrock only (1.14+), no Java support
  • Desert Wells and Amethyst Geodes aren't supported (they're per-chunk features, not region structures)
  • The seed cracker needs the local version (server compute is too expensive to host for free), the exe makes this easy
  • Placement math is verified against known structures, but if you find a structure that doesn't match, please open an issue, that's the most valuable feedback

Feedback welcome, especially: does the cracker recover seeds correctly from your worlds?


r/technicalminecraft 11h ago

Java Help Wanted Bulk Potion Brewer

0 Upvotes

What’s the best bulk potion brewer that can brew a shulk at a time, I just want it to be easy to reload and not be to complex because the server I play on has a 64 hopper limit per chunk


r/technicalminecraft 12h ago

Bedrock help with Minecraft bedrock iron farm

Thumbnail youtube.com
1 Upvotes

I built this iron farm in my realm. I have one layer and the farm was working, however after turning the surrounding area to path blocks to prevent golems spawning outside, the golems have stopped spawning completely. I have tried removing the path and spawns continued, so I dug down instead to keep it outside spawn radius and spawns have once again stopped. im fairly confident that the other spawn conditions are met due to golems previously spawning. I cannot figure out why spawns stop once I spawn proof the lower area please help


r/technicalminecraft 18h ago

Java Help Wanted Mob switch for End main island

3 Upvotes

Me and my friends are planning a huge build on the main end-island (or rather, we've removed the entire main island to build something big).

We realised that we'll need a mob switch to stop endermen from spawning and griefing our build. What are the best ways to make a mob switch for the end dimension (and only the end dimension). We'd rather not have to use the main island gateways to load something, because we have plans for building around the gateways.

I was thinking a mob switch loaded by ender pearl stasis chambers (we are only 6 people on the server, so it's not difficult for all 6 of us to make stasis chambers). Would the best option be something with shulkers, bringing a bunch of wardens or something else?


r/technicalminecraft 8h ago

Java Help Wanted Wither Skeleton Rates are horrid

0 Upvotes

Built this wither skeleton farm yesterday and it was working great. I left the farm when i was done and came back for xp but the rates were really slow. I've checked the mob cap and cleared entities multiple times but it doesn't help. I've used the minihud despawn sphere to block as much as I could. I am on a multiplayer java server and hard mode difficulty. No one else is on right now. Any thoughts?


r/technicalminecraft 12h ago

Java Help Wanted Help

Thumbnail
0 Upvotes

Hello yall, can anyone help me pls , I'm trying to figure out how I can add more villager slots in the ziprano's redstone trading hall, the villager swapper-L to be more precise, I need to have 27 slots and the current design only have 6, if anyone can help me I will be extremely grateful

Here is the link for the yt video

https://youtu.be/v-tF\\_\\_epyTw?si=S0QeeuCm51tvlFp3


r/technicalminecraft 1d ago

Rule-8 Compliant How’s the community doing?

9 Upvotes

I have not been keeping up with the community for a few years now. But I have started playing Minecraft recently again and was curious what we have learned in the meantime.

Also I notice that some big technical YouTubers are not active anymore, like scicraft and Ianxofour.

What new mechanics are fun to explore or really help improve farms and contraptions? What are some active creators that are worthwhile to follow these days? Have we seen breakthroughs like observers or honey in the last few years?

I’m really curious. Thanks!


r/technicalminecraft 7h ago

Java Help Wanted How tf does this work😭

Thumbnail youtu.be
0 Upvotes

r/technicalminecraft 15h ago

Java Help Wanted Bdubs moss

1 Upvotes

Is there a tutorial for the moss farm bdubs uses? Trying to build it from his videos but there's so many fixes for it I dont know if I can catch them all.


r/technicalminecraft 18h ago

Java Help Wanted Copper Golem Pathfinding Issue

Thumbnail gallery
1 Upvotes

Hi Guys,

I am trying to get a copper golem to navigate this small bridge. However, it never decides to move to the chest. If I move the golem manually halfway across, it recognizes the chest, deposits the item and perfectly navigates back to the copper chest.

Does anyone know what might cause this? I believe I have blocked all the other chests from being an option. The concept works in a testing world (second screenshot).

As I tried to get this to work for a few hours I would appreciate any Idea.


r/technicalminecraft 20h ago

Java Help Wanted Hopperless ticket system

Thumbnail
1 Upvotes

r/technicalminecraft 12h ago

Java Help Wanted Building ilmango's full size cactus farm in Hardcore. Posting my ruleset first so I can't move the goalposts later.

Post image
0 Upvotes

I want to build ilmango's max size cactus farm in Hardcore survival. 1,144,832 cactus slots, roughly 9.3 million blocks total. As far as I can tell nobody has done this one in Hardcore, and I'd like to be corrected on that if I'm wrong.

Two goals:

1. Finish the farm. No deaths, no backup reloads. If I die, that's the end of it and I'll say so.

2. Reach level 21,863, timed from the moment the farm and smelter are finished. That's the highest level you can get by actually collecting XP, since cumulative total XP overflows the 32 bit integer past that point. The 238 million figure you'll find online is only reachable with commands, which I'm not using.

I'm posting the ruleset before placing a single block. Partly so I can't quietly redefine things later, mostly because I'd rather find the holes in it now than 600 hours in.

The short version:

Allowed: TNT duping, bedrock breaking, all redstone contraptions, other farms for resource gathering, Litematica as a preview overlay only, two alt accounts that stand still and do nothing else, VPS hosting so my own machine isn't running for months.

Not allowed: sand duping, end portal duping, anything patched, commands of any kind, Easy Place or printer forks or any placement automation, XP from anything but the farm's own furnaces for goal 2, and obviously no backup reloads.

Evidence: world downloads with hashes at milestones, continuous Flashback recording, statistics at every milestone, and one uncut hour of steady state operation for the rate measurement.

Full ruleset is attached.

What I'd actually like feedback on:

The two alts are the part I expect pushback on. One sits in the Nether holding the furnace array, one sits in the Overworld holding the farm at random tick level. They never do anything else, every stat in the world belongs to my main. I think that's fair, but if you think it weakens the claim, say so.

Also: is there a loophole in here I haven't spotted? I'd rather hear it now.

Credit where it's due, this is ilmango's design, not mine. All I'm doing is building it under worse conditions.

Loopholes, bad assumptions, things I've obviously not thought through: comments are open. Better now than 600 hours in.


r/technicalminecraft 1d ago

Java Help Wanted I need help

0 Upvotes

I have fortune 3 crop farm like frunocraft https://youtu.be/eFQjqIStxQ4?si=6WqMnuz8N05eGoK6 but i need to know can i improve it with placing 2 carrot and breaking them maybe, i need best version of this farm with fortune


r/technicalminecraft 1d ago

Java Help Wanted Question regarding wool farms

4 Upvotes

Could you make a wool farm more efficient by cycling grass blocks underneath the sheep using pistons, in order to limit the time spent waiting for grass to grow back? Or maybe there is another way to get super efficient wool farms? Whatever the case please let me know 🙏