Ender chest reloaders

  Рет қаралды 6,466

Xcom6000

Xcom6000

5 жыл бұрын

Found a nasty reload mechanic around ender chests.
World download:
www.dropbox.com/s/93xy7o3mcrw...
Ender chest reloading discovery by Earthcomputer:
/ @earthcomputer
Auto-save detector by EDDxample:
• Absolute Autosave Dete...

Пікірлер: 42
@Xcom6000
@Xcom6000 5 жыл бұрын
There is a 3rd way to unload the ender chest chunks. Just make sure to stop the entity's in the dimension from ticking. This can be done by having all players in the dimension that the ender chests are in to stop entity ticking. This happens when no items are sent through the portal to or from the same dimension within 300 gameticks and there are no players in it. This is a convenient way to make the ender chests into a switch.
@alecacco
@alecacco 5 жыл бұрын
And that's why you don't drink and use % in your code kids.
@quaternaryyy
@quaternaryyy 5 жыл бұрын
I gues the reason for periodic scheduling could be to close the chest after a short duration if it ever gets stuck open. Why does it even multiply by 4 though. Lmao
@Earthcomputer
@Earthcomputer 5 жыл бұрын
Mojang probably intended that the sender chest should schedule a block event every 4 seconds. They probably used a constant in the code called TPS and miswrote the expression in the same way that we misread it
@LogicalGeekBoy
@LogicalGeekBoy 5 жыл бұрын
Really interesting, thanks for sharing!
@sanyeki238
@sanyeki238 5 жыл бұрын
Its funny because now I remember you saying that rock may add a chunk loadder xD but i didn't know it was already on the game
@tritti96
@tritti96 5 жыл бұрын
Interesting, but dangerous at the same time
@Maxgamer-fd7hv
@Maxgamer-fd7hv 5 жыл бұрын
this channel is soooo underrated
@myreneario7216
@myreneario7216 5 жыл бұрын
As a related fun fact, if you use ghost blocks to disguise an enderchest as a piston (so that the block is a piston clientside, and an enderchest serverside) then the piston will fire clientside every second.
@Xcom6000
@Xcom6000 5 жыл бұрын
Is there a contraption that can create it?
@myreneario7216
@myreneario7216 5 жыл бұрын
@@Xcom6000 Sure. imgur.com/a/Bt5xR3o In this picture the contraption on the right is the standard ghost block generator for 1.9-1.12. Flick the lever on the golden block 3 times. Then flick the lever on the diamond block.
@Xcom6000
@Xcom6000 5 жыл бұрын
@@myreneario7216 Its a bit unclear what piston is what type. Any clarification? The image is a bit unclear sadly. Can't replicate ghost blocks form the ghost block gen.
@pookiebearrust
@pookiebearrust Жыл бұрын
SUPER HELPFUL THANK YOU !
@feschber
@feschber 5 жыл бұрын
About the first thing we learned at University is order of operators (I’m studying Informatik in Germany)
@user-yb5cn3np5q
@user-yb5cn3np5q 5 жыл бұрын
Which is quite weird, because priorities differ language to language, especially in cases like this, when neither option makes any sense. It would be better if a % b * c was invalid syntax.
@feschber
@feschber 5 жыл бұрын
We were learning java - they also stressed that you should always put everything in braces and yeah I totally agree this would just make a lot of bugs impossible
@keris3920
@keris3920 5 жыл бұрын
Order of operations can get you into a lot of trouble if you think in those terms. It's usually better to think about operator scope. In that sense, it doesn't really matter what order the operations are performed in, so long as they're mathematically equivalent. This is also language agnostic, and intuitively easier to grasp.
@smugless191
@smugless191 5 жыл бұрын
If it was a block other than ender chests it would be nice.
@DarckNeosfull
@DarckNeosfull 5 жыл бұрын
How did you manage to look the code of the game, modify and compile? Always I see a tutorial usually it show different tools or they already have the code de-compiled and when I tried with some tools I obtain a code that can't compile because syntax problems because deobfuscation I think. Also, I surprised because I believe I watch NetBeans in your video. I guess the global tool is MCP but I'm not sure because I watch weird combinations with Eclipse and other editors/IDEs
@Xcom6000
@Xcom6000 5 жыл бұрын
There are many videos out there that shows how to setup MCP. I use intellij with some of the forge gradle tools earth sorted for both 12 and 13. But there is an official MCP website where 1.12.0 can be downloaded and even updated to 1.12.2 with ease. For 1.13.1 earths forge gradlew tool can be found on the Eigen discord and 1.12.0 as well.
@DarckNeosfull
@DarckNeosfull 5 жыл бұрын
Ohhh, thanks so much
@objectiveauto9326
@objectiveauto9326 4 жыл бұрын
my question: is this intentional or it can be called a "glitch" (since is Minecraft
@biblebot3947
@biblebot3947 4 жыл бұрын
I would say that it isn’t intentional but also isn’t a glitch It does what is was meant to do, but had an unintended side effect
@objectiveauto9326
@objectiveauto9326 4 жыл бұрын
@@biblebot3947 logics making sense
@Ender_alloy
@Ender_alloy Жыл бұрын
Does this work in version 1.19?
@semlindhout1658
@semlindhout1658 5 жыл бұрын
would this work in 1.13?
@Xcom6000
@Xcom6000 5 жыл бұрын
Never tested but should work.
@Lemson
@Lemson 5 жыл бұрын
@@Xcom6000 I'm trying to use it as a mob switch, in 1.13, and once new autosave comes along mobs start spawning again. So either I'm dumb, or this doesn't work in 1.13.
@Xcom6000
@Xcom6000 5 жыл бұрын
@@Lemson It depends on how you set the thing up. If your spawning mobs then the activation of the device should be with proper render distance from the machine at minimum render 12.
@Lemson
@Lemson 5 жыл бұрын
@@Xcom6000 Not sure I understand what you mean, what I'm doing is putting 100 mobs in the chunk the enderchest is in, then setting my render distance to 4, like the sign says, and then flick the lever and wait until machine detects the auto save. When autosavve gets detected I kill myself to see if it's working over at spawn. There it works until I pause the game or wait for the auto save. What am I supposed to do differently?
@Xcom6000
@Xcom6000 5 жыл бұрын
@@Lemson When mob spawning is active the game will load chunks up to 10 chunks out weather you set your render distance to 4 or 10. Extend the line to 12 chunks. Set your render distance to 12 and try again.
@bengineer8
@bengineer8 5 жыл бұрын
where is a bug report so i can upvote it?
@bengineer8
@bengineer8 5 жыл бұрын
when you say "never unload", does that mean i can use this to keep any chunk in the end entity processing for all ticks, as long as i keep the dimension active?
@Xcom6000
@Xcom6000 5 жыл бұрын
@@bengineer8 Should work. As long as items go through end portal every
@bengineer8
@bengineer8 5 жыл бұрын
@@Xcom6000 TY. Ok, that means i can finally make my 3d printer not require a second player, I just need to redesign it a little!! A problem I was having is that some chunks on a diagonal were among the chunks i needed to stay loaded, making a perma loader not work well enough
@tteslov
@tteslov 5 жыл бұрын
EARLY SQUAD
@user-yb5cn3np5q
@user-yb5cn3np5q 5 жыл бұрын
No, you didn't. No.
@NessieStudio
@NessieStudio 5 жыл бұрын
What?
@underslash898
@underslash898 5 жыл бұрын
@@NessieStudio Yes.
AI Learns to Play Tag (deep reinforcement learning)
10:29
AI Warehouse
Рет қаралды 42 М.
Long history of TNT compression
44:42
Xcom6000
Рет қаралды 18 М.
1❤️
00:20
すしらーめん《りく》
Рет қаралды 33 МЛН
ПООСТЕРЕГИСЬ🙊🙊🙊
00:39
Chapitosiki
Рет қаралды 20 МЛН
How many pencils can hold me up?
00:40
A4
Рет қаралды 19 МЛН
Piston Bolt Building Helper
11:26
ilmango
Рет қаралды 84 М.
Minecraft: Silent, Lag-effective Multi-Item Sorting System
15:42
End of Farms
7:10
Xcom6000
Рет қаралды 177 М.
Bulk Storage System With Shulker Box Display
9:05
ilmango
Рет қаралды 106 М.
Wireless redstone again for 13+
7:37
Xcom6000
Рет қаралды 8 М.
The 1.21 update panorama screen is missing a block...
3:51
Phoenix SC
Рет қаралды 163 М.
Can You Beat Terraria Underwater?
16:28
Styllus
Рет қаралды 2,3 М.
360 FTL
5:33
Xcom6000
Рет қаралды 26 М.
Improved Shulker Box Crafting System
3:27
pallapalla
Рет қаралды 9 М.
Как он смог забить гол
0:59
Garga
Рет қаралды 1,9 МЛН
Hide and Seek [SFM] #shorts
0:16
Kostamoinen
Рет қаралды 19 МЛН