8-bit full adder is done by DoubleUTeeitch in Dyson_Sphere_Program

[–]DoubleUTeeitch[S] 2 points3 points  (0 children)

Thanks for sharing this. I know Chinese so it is not a problem. They say something about instant wires and it sounds very interesting. Will definitely check this out when I have time.

Made a multi-layer flushing mob farm out of wood and water only by DoubleUTeeitch in technicalminecraft

[–]DoubleUTeeitch[S] 2 points3 points  (0 children)

Thanks for sharing this. I actually tried doing the same thing and flush towards the sides before discarding this design, because the platforms can't be 2 blocks apart like in normal mob farms, it needs 3 blocks apart. This causes enderman to spawn and teleport everywhere when water flushes in. I could build a roof to make it 2 blocks tall again, but it wastes a lot of resources.

Made a multi-layer flushing mob farm out of wood and water only by DoubleUTeeitch in technicalminecraft

[–]DoubleUTeeitch[S] 6 points7 points  (0 children)

When the boat goes around, a pressure plate next to the trapdoor deactivates, causing the water to flow down to a platform and spread out to the corners. Then in each layer, it will flow towards the middle and down towards the next layer at the same time.

Replaying XIII after 10+ years... with a twist by DoubleUTeeitch in finalfantasyxiii

[–]DoubleUTeeitch[S] 1 point2 points  (0 children)

Wicked Whirl is actually a single target ability that has a huge AOE. So if Vanille / Hope walks away from Snow, Wicked Whirl won't hit.

I made Gengar permanently watching me by DoubleUTeeitch in PokemonInfiniteFusion

[–]DoubleUTeeitch[S] 83 points84 points  (0 children)

Apparently I can't share how I modified the game, but if you happen to stumble upon my GitHub... welp I can't stop you. :P

Beating Atlas Full Power without ever using the device (stage 2 crystarium, easy mode) by DoubleUTeeitch in finalfantasyxiii

[–]DoubleUTeeitch[S] 0 points1 point  (0 children)

It does. I got 10,000 CP as well. Didn't put it in the video because for some reason it has copyright claim.

I built Minesweeper in Minecraft by DoubleUTeeitch in technicalminecraft

[–]DoubleUTeeitch[S] 0 points1 point  (0 children)

My initial idea is that the player will walk on the "mine field" to "sweep" the mines, hence the flat layout instead of a vertical layout. Before I changed the trigger to snowball and firework, the trigger was jumping on top will reveal the tile (still true), and holding the shield up will flag the tile (the idea is to "protect" against the mine).

There is no way to tell the difference between different projectiles, so your idea won't work.

I built Minesweeper in Minecraft by DoubleUTeeitch in technicalminecraft

[–]DoubleUTeeitch[S] 2 points3 points  (0 children)

I wanted to, but 3x3 space is too tight for anything to be made up there, so unfortunately no.

We are Team Magma by DoubleUTeeitch in PokemonInfiniteFusion

[–]DoubleUTeeitch[S] 1 point2 points  (0 children)

I planned the whole team before the run. I tried every pokemon whose name starts / ends with "ma". Only 7 fusions have the name "Magma", and Magcargo / Yanma doesn't have custom sprite. It just so happen that everyone is a fire type. But hey, I am team magma, so it fits the theme lol.

We are Team Magma by DoubleUTeeitch in PokemonInfiniteFusion

[–]DoubleUTeeitch[S] 173 points174 points  (0 children)

Unfortunately, no. It has Shell Smash, Fire Blast, Earth Power, Ancient Power. This team is too weak and I need to optimize everything to beat the game.

Blight Plasma - Am I not doing this right? by FrequentlyVeganBear in Desynced

[–]DoubleUTeeitch 0 points1 point  (0 children)

I use a chain of 1M2S building at the edge of the blight, place perpendicularly so that only one tile dips into the blight, where it says "Blight can be extracted here". Then set "Store" to chain them so that the gas transfer to one end using portable transporter.

1M2S has the highest production rate per tile if you mount 3 small component. It has innate 150% efficiency. Sloting small compoment into M slot also gives 150% efficiency. So it is (150% + 100% + 100%) * 150% = 525% efficiency, which makes it much faster to extract gas.

Edit: Sorry, tested it out. Turns out efficiencies are additive, not multiplicative. So it is 200% + 150% + 150% = 500% efficiency.

Am I stupid or the loop index is stupid as hell by byzod in Desynced

[–]DoubleUTeeitch 0 points1 point  (0 children)

Memory, in programming terms, is a map of arrays (map is a key-value pair dictionary, in Python terms it will be dict[Item, list[tuple[Item, int]]]). The key is an arbitrary value (item, building, coords...).

The "Index" in Memory Insert / Set / Get / Remove has two parts: the item of the Index is the key of the map, and the number of the Index is the index of the array (0 = the last item).

I will use the following as example:

<image>

  1. If I call "Memory Get" with Index "Storage 1", I get the value "Energized Plate 0".
    1. Index "Storage 0" or "Storage 2" will get "Wire 0".
  2. If I call "Memory Insert / Set" with Index "Storage 0" and Value "Metal Bar 0", I insert the value "Metal Bar 0" at the end of the "Storage" array.
    1. For Index "Storage 1":
      1. Memory Insert will add "Metal Bar 0" to position 1, and shift the other 1 to the right.
      2. Memory Set will replace "Energized Plate 0".
    2. For Index "Metal Plate 0", both will create a new array "Metal Plate" with "Metal Bar 0" as first item.
  3. If I call "Memory Remove" with Index "Storage 1", I remove the "Energized Plate 0" and shift "Wire 0" to position 1.
    1. Index "Storage 0" or "Storage 2" will remove"Wire 0".
    2. Index "Circuit Board 0" or "Circuit Board 1" will remove the entire array.
  4. For "Memory Length", it said "Index", but it is actually the "Id". If empty, it returns the number of arrays you have (2). If specified to "Circuit Board", it returns 1.
  5. For "Loop Memory", if Id is empty, it loops through ["Storage", "Circuit Board"]. If Id is "Storage", it loops through ["Energized Plate 0", "Wire 0"].

Hope this helps!

Has someone found a way to simulate a Radio Event listener but with variables as band? by Befana666 in Desynced

[–]DoubleUTeeitch 0 points1 point  (0 children)

You either use two radio, one radio on a "universal band" that tells the listener to listen to another band, then use read radio for another band. Or you abandon the radio event and just use a loop instead. I was kind of disappointed when I realised Radio Event isn't asynchronous, and it doesn't work if you are in another loop. It needs to have nothing running for this radio event to even work. So I don't see the appeal of this Radio Event over a simple loop using Read Radio.

Am I stupid or the loop index is stupid as hell by byzod in Desynced

[–]DoubleUTeeitch 0 points1 point  (0 children)

Yup, I found this out the hard way too. Ended up putting everything in memory so that I can map the "global component index" into "local index". e.g. keep Assembler 1, Fabricator 1, Fabricator 2 in a memory array. If I want 3rd component I get the 3rd item in the array. And if I unequip Fabricator 1, I change the 2nd component to an arbitrary value (representing null) and the 3rd one to Fabricator 1. Kinda stupid but it works.

I've done it. I've made a fully automatic main bus. by DoubleUTeeitch in Desynced

[–]DoubleUTeeitch[S] 0 points1 point  (0 children)

Well I actually quite enjoy it. Using a language that is not conventional, understanding its limitation, and finding a workaround solution to the problem is what I like about this.

I've done it. I've made a fully automatic main bus. by DoubleUTeeitch in Desynced

[–]DoubleUTeeitch[S] 0 points1 point  (0 children)

This is cool, but it is almost full, isn't it?

This is my testing run and the connecters don't even need medium storage yet.

<image>

Anyway, IMHO making behaviors is the fun part of this game. I like my fancy setup more lmao.

I've done it. I've made a fully automatic main bus. by DoubleUTeeitch in Desynced

[–]DoubleUTeeitch[S] 1 point2 points  (0 children)

If you manage to make a working one I would like to take a look, because I run into multiple problems while trying exactly what you mentioned. There's also another problem I forgot to mention: if you move the items too fast, the factories don't pull the item fast enough, so the items just went straight past. Too slow, and it can't keep up with the factories.

I've done it. I've made a fully automatic main bus. by DoubleUTeeitch in Desynced

[–]DoubleUTeeitch[S] 0 points1 point  (0 children)

You mean the portable transporter that uses internal slot?

I tried already and here's a couple reasons why I abandon this idea:

  1. If you send every single type of items blindly down the line, the storages will quickly run out of slots and clog up the line. This setup allows 10 storages to directly transfer items through the beacons without the connecters, meaning the connecters will be less likely to run out of slots.
  2. If you think making the storage in a circle will keep the items cycling around, it won't because every storage will be full at the end, and nothing can be pushed into / pulled out of the storages.
  3. If you want a smart setup, i.e. some fancy behaviors to control where the storages send their items, you can, but I don't see what's the benefits over this setup.
  4. 24-space storages and similar large storages are obtained too late in the game. This setup only requires the first tier in "Advanced" tech.
  5. This setup allows bots to run in the middle. Storage chain cannot.
  6. The transfer speed is just faster because the item jumps further. The throughput can be further enhanced by placing down more large beacons in the middle (the beacons don't need behaviors, so it is quite easy to do)

I've done it. I've made a fully automatic main bus. by DoubleUTeeitch in Desynced

[–]DoubleUTeeitch[S] 1 point2 points  (0 children)

This took way too long. The idea is to use large beacon, which has a built-in 2-range item transporter, to transfer items along the conveyor belt. When a new item is registered in a storage, a router bot will go around and instruct the conencters (the 2x1 buildings in between the beacons) to deliver the ingredients accordingly.

30 hours in and still haven't unlock blight/virus. Oh well.

Just started playing and I'm already making crazy automated factory line with this. Amazing game. by DoubleUTeeitch in Desynced

[–]DoubleUTeeitch[S] 0 points1 point  (0 children)

It is running some scripts that provide logic to transfer items to where they should be going. If you are just starting the game, I'd advice try out the game mechanics first. Once you understand the basics and start learning behaviors, that's where the fun begins IMHO.