Alt-F4 #46 – One Year And Counting

Alt-F4 #45 Thumbnail

Written by Conor_, pocarski, Therenas, edited by stringweasel, Nanogamer7, Firerazer

Oh man. It really has been a year since I started this project. Can’t quite believe it’s already been a year, while also not quite believing the project carried on for a whole year. In the beginning, it was just a silly idea that I wanted to try out and see where it would go, not really expecting it to become an actual project with dozens of people regularly contributing. It would have likely faded after a few weeks without tons of people stepping up and contributing. But (at least in this reality) it didn’t, which I’m very happy about and grateful for.

Conor_ will thank the core team below, but I want to say thanks to everyone that contributed to the project. You’ve all been such a joy to work with. Thanks to the people contributing articles for presenting your passion projects and being so receptive to feedback, without you guys there’d be no project at all. Thanks also to the translators for working tirelessly on the various translations so more people can enjoy the project, and for putting up with the occasionally chaotic release schedule. Finally, thanks to the techies (especially MagPie) for fulfilling our every request concerning the website.

Continue reading

Alt-F4 #44 – A New Perspective

Example of a rotated image, corners have missing pixels because it’s not a circle.

опубликовали  arrow in my gluteus maximus, stringweasel, Nanogamer7, Conor_, Therenas, Firerazer

You remember April Fool’s day this year? Was quite a while ago already, but if you visited the subreddit on that day, you probably saw arrow in my gluteus maximus’s mind-bending video. If not, this week’s issue #44 of Alt-F4 will catch you up and then go over how exactly this dark magic presentation was achieved!

A new perspective on “A new perspective on trains in Factorio” arrow in my gluteus maximus

Four months ago I released a video called: “A new perspective on trains in Factorio”. If you haven’t seen it yet, please watch it before reading the article, as it won’t make too much sense otherwise.

Some people have reportedly experienced headaches after viewing this video. You have been warned.

Those who downloaded the mod linked in the description know that this was an April Fool’s joke. For those who didn’t figure it out: I’m sorry. A few people have asked me for details on how I made this video, so I decided to write up a quick explanation. Don’t try this at home.

I’ve seen some people speculating that I somehow extracted 3D models from the game. That’s not needed, it’s a simple rotation of what’s already shown on screen. While the idea might be simple though, the execution is a bit more complicated. The first problem you come across is that screens aren’t circles. When rotating, parts of the image gets cut off, while other parts such as the GUI are missing.

Example of a rotated image, corners have missing pixels because it’s not a circle.

I ended up applying my usual solution to recording problems for Factorio: use screenshots instead. Ingame screenshots are not bound by the limitations of normal screen recording. Therefore to capture the video I simply capture a screenshot every tick over a larger area than is normally visible. That way, no part of the screen is ever cut off when rotated.

The next problem is that the UI also rotates, this is not something we want. Screenshots also come to the rescue here. The take_screenshot() command has an option called show_gui. The trick is to take two screenshots every tick, one with the UI visible and one without it. If we take only the parts that differ, then we end up with only the UI, which we can then superimpose over the screenshot without UI. At least that was the plan. Various video editing problems made this unviable. For example, my video editor did not support lossless formats (that I could find, I tried a bunch). Small differences in encoding thus end up in the UI.

However, I found out that in recent Factorio versions the UI is no longer fixed to your player’s position in screenshots. It is always visible no matter what part of the map you take a screenshot of. So I looked for a colour far away from other colours that occur in the game. I settled on pink. And I changed the image of some concrete to be pure pink and turned clouds off. I changed the location of my UI screenshot so only the pink concrete is visible. This way I can get the UI by using a sort of greenscreen, or rather a pinkscreen in this case.

Pinkscreened UI

There were a few small problems with that though. Turns out there are transparent parts in the UI, namely the details panel that shows up when you hover over things with your mouse. It looked purple now. I ended up manually cutting it out of the UI, and nobody seems to have noticed.

Next, I created a small mod that played a sound whenever I started recording screenshots, this way I could sync up the in-game sounds with the screenshots. Similarly to how movie studios use clappers. The mod also wrote out the value of game.players[1].vehicle.orientation into a text file. I used this to calculate how much rotation is needed but smoothed out using splines.

I feared that these steps would not have been enough to make it believable. Taking that many screenshots slows down the game enormously. I was worried that it would be obvious that the footage was sped up by looking at my motion in-game. So I looked for a way to make the recording go faster. After recording the screenshots I encoded them into an mp4 with FFmpeg, so why not cut out the middleman and try to hook up FFmpeg directly to Factorio. Both encoding pngs and writing them to disks are expensive operations. So if I could skip these steps it would go a lot faster.

Step one would be to extract the raw image data (not to be confused with the .raw format) directly from Factorio instead of encoding it in a png. I couldn’t find an easy way to do it, but turns out a .bmp is very close. It’s the image data backwards with a header slapped in front. So this should be way faster to encode than a png.

Next to get this into FFmpeg without saving to disk first. Turns out FFmpeg has built-in features for piping images, so a named pipe with a .bmp extension did the trick. (Example command: ffmpeg -f image2pipe -framerate 60 -i - -r 60 -c:v libx264 -vf format=yuv420p -crf 1 example.mp4 -y < pipe.bmp)

Don’t forget to keep the pipe open between screenshots with a sleep command: sleep 10000000 > pipe.bmp, kill the sleep command at the end to let FFmpeg finish the recording. I did a test run at a low fps and … that’s not right! What’s going on here?

The problem is that images are getting mixed. Factorio rendering is multithreaded. While one frame is still being written to the pipe, the next one might already start. Essentially mixing the pixels of both frames together. The fix is to force Factorio to wait until the previous frame is rendered before starting the next one. This can be done with by calling game.set_wait_for_screenshots_to_finish() every frame. This however slows down Factorio enough that we no longer can call it real-time. Although I still have some ideas to speed it up, at this point I spent way too much time on this project already and decided to go with the tried and true method of using replays.

Factorio has this wonderful feature where it doesn’t check if the code of the mods used during the recording and playback of a replay are the same. So I first recorded a replay normally at a normal speed. Then I edited one of my mods to take screenshots every tick. Then, when playing the replay, Factorio will start taking screenshots. That is assuming the changes you made to the mod don’t change the game state.

Sadly due to using replays, I had to cut a few scenes. I was going to show how weird it feels to build things from a rotated perspective, but it turns out Factorio doesn’t save your mouse position in the replay. So in the replay, the UI follows your mouse at the time of playback, not the position your mouse was in when you recorded it.

Comparison how building looks normally (left) or when viewing a replay (right)

All in all, this was a fun challenge and I enjoyed confusing the Factorio players.

Contributing

As always, we’re looking for people that want to contribute to Alt-F4, be it by submitting an article or by helping with translation. If you have something interesting in mind that you want to share with the community in a polished way, this is the place to do it. If you’re not too sure about it we’ll gladly help by discussing content ideas and structure questions. If that sounds like something that’s up your alley, join the Discord to get started!

Alt-F4 #42 – The Meaning of Automation 2021-07-16

Spaghetti in automation games.

Written by Nanogamer7, edited by stringweasel, Conor_, Therenas, Firerazer

In this week’s issue #42 of Alt-F4, after previously investigating the games that influenced Factorio, we’ll now be looking at how Factorio influenced the automation genre as a whole, if that’s even a thing. Maybe it isn’t. After 7.5 million years of contemplation, Nanogamer7 has an answer, and it might surprise you.

The Best of Its Genre – The Influence of a Game Nanogamer7

A few months ago (in issue #34) I tried to find the origins of Factorio, and with it the origins of the automation genre. But since the time Wube pioneered this genre in 2013, many games adapted and embraced its ideas, like Satisfactory and Dyson Sphere Program, but also games more focused on survival like Astroneer, later versions of Minecraft and more recent mods for it. In this article I want to explore what became of the automation genre, and how automation games are differentiated to survival games with some automation.

Part 1: The Big Three

Spaghetti in automation games.

When you ask someone to name some automation games other than Factorio, the most common response you’ll get are Satisfactory and Dyson Sphere Program. Together with Factorio, they are even regarded as the (un-)holy trinity of automation by some players. But what makes these games stand out from the rest (apart from their rating, the highest among all games on Steam with the “automation” tag)?

Screenshot of SteamDB showing Factorio 1st, DSP 2nd and Satisfactory 3rd
The top rated games on steamdb with the automation tag
  • All three games are set in an open world and you, the player, are an entity in it, building the factory. Neither of these are required for automation, as for example shapez.io perfectly works without a playable character, and there a plenty of games like Opus Magnum that are in a level-based puzzle environment.
  • Your progression is mainly through a skill/technology tree (be it a very shallow one in Satisfactory); Special technology to send through a space elevator in Satisfactory, research matrixes in DSP, and finally, the bottle-shaped science packs in Factorio. Most open world (survival) games feature some sort of skill tree, but acquiring new points rarely features a connection to the game world. The factories, however, have to be built primarily for the tech tree itself; you don’t have some requirements to limit your progress in the “story”, the requirements are directly tied to the progress towards the final goal.
  • And finally, all three games mainly challenge your knowledge and understanding of logistics. While the spaghetti of some bases might suggest otherwise, space isn’t actually an issue (or at least not a big one) due to the open world, but getting massive amounts of raw resources from a mining outpost back to your main base requires you to overcome obstacles like mechanics, throughput, and environment. And it can get even more challenging, for example moving production to said outpost to export the most dense/compact products (see Alt-F4 #7) uses complex ratios to get the most efficiency. This challenge might be a direct result of the open-world nature of these games, but especially long range trucks and trains provide a much needed “unknown” variable to the defined ratios (unknown as in not as obvious as items per second on belts), as well as a challenge, a bottle neck scaling inversely with production.

The different research trees, with DSP more similar to Factorio, and Satisfactory in its shallow tier system.

Apart from the similarities in gameplay, the three games also feature a remarkably similar scenario of the player being dropped on an empty planet; however this is probably of the most obvious narrative reasons for the player to start from scratch. This article won’t elaborate on the story behind the games, but rather focus on the gameplay itself.

These are some of the most important similarities between the three games. There are definitely more smaller ones, or in areas other than gameplay, but if you get to the core of it these three are what define the games, trains unfortunately not being one of them. But how do games not generally regarded as automation fall into this scheme?

Part 2: Automation in Other Games

Speaking of scenario, there is a forth game with this scenario, with a similar theme of multiple, small planets, with a great rating, with the “automation” tag on steam, and it is arguably even more popular than the other three games: ASTRONEER. Why didn’t I mention it before? It certainly has a similar scenario, you can automate large parts of your production, and so on.

Let’s get back to the previous article, what does automation even mean?

One could loosely define automation as “making stuff that makes stuff”

— Nano

Keep in mind this is only one possible definition of the genre, but it already runs into some problems. For example Nanocarbon Alloy, one of the most important Astroneer endgame materials, already fails to be automated at one of the most basic steps of getting all required resources together—which isn’t necessarily bad though, the game wasn’t developed as an automation game. The auto arm—and with it some other tools to automate—only got added in version 1.13, a full year after the original 1.0 release of the pure survival game.

Many (survival) games feature some sort of automation today: Minecraft’s hopper, added with version 1.5 in early 2013 is the first example of a simple machine to machine transfer I could find, and might have influenced Factorio’s inserter too, but ASTRONEER’s auto arm, the auto miner, the conveyors in TerraTech, the belts in some Overcooked levels are all reminiscent of similar Factorio mechanics, and all got released after Factorio first got popular. And then there are mods: Basically every tech Minecraft mod since 1.6.4 (although those might also be influenced by the earlier Minecraft mods) features automation.

Still, none of the games above have automation as the defining mechanic, it only gets complimented by it. You might spend way to long building complex machineries, intricate factories, and tightly packed rovers, but none of them progress your gameplay directly. You still need to explore, discover, fight, and decorate your way further towards your final goal. There can however be made an argument for SkyFactory, one of my favourite Minecraft mod packs, which circumvents the problem of exploration by having nothing to explore. It still allows you to incase your factory in nice blocks, decorate it with flowers, which is the other main goal of Minecraft, only coming as a secondary possibility in Factorio.

How do games not generally regarded as automation fall into the scheme from part one then? Logistics present themselves in the form of inventory management, and is a common part of survival games, as is the open world. And the skill tree, which the automation games make completely unfeasible to hand craft, is just supplemented by automation in the other games. This supplementation is the important part, adding automation as another mechanic among many has become popular with the popularity of automation games.

Part 3: Simulation, Idle, and Puzzle Games

Most games so far are in some way an open-world survival or sandbox game, however there is a subgenre of automation most of us have come on contact with and regularly play: Designing the assembly line itself. There are numerous automation puzzlers which exclusively focus on that part of automation. One example is Opus Magnum, as already mentioned, or factori, a game scoring one of the first places in the recent GMTK 2021 game jam. But fit the definition (“you make stuff that makes stuff”) chemicals in one, and letters in the other. Does Emergency Protocol (there area lot of puzzle games in game jams btw) fit the definition? You make a pattern that makes a path? In its core it sounds like automation—you tell a little robot what to do (program it), and it repeats your commands—but that also sounds similar to idle games—set something up, and it does a job for you while you are away.

Speaking of which, idle games aren’t really considered automation games, and neither are management games or simulation games, as I discussed in my last article. But then again, there is the meme of automating Factorio itself, which some players have successfully done. On a more serious note, some players really do play Factorio as a management game—city block blueprints often have every assembly line, every problem already solved, your job now is to balance the different resources and power, and manage the factory on the larger scale.

Conclusion

To summarise, automation still isn’t a type of game like “puzzler’, but it can definitely be the defining genre. However it is still possible to add automation to game, without having it at its core. That being said, my last article left automation a bit more open, and I hope a could give a more SATISFACTORY definition and conclusion this time by FACTORIOing in more recent games.

Contributing

As always, we’re looking for people that want to contribute to Alt-F4, be it by submitting an article or by helping with translation. If you have something interesting in mind that you want to share with the community in a polished way, this is the place to do it. If you’re not too sure about it we’ll gladly help by discussing content ideas and structure questions. If that sounds like something that’s up your alley, join the Discord to get started!

Alt-F4 #40 – Warp Speed for Charity

Franqly laying on rocks staring up into the sky.

опубликовали stringweasel, Nanogamer7, Conor_, Therenas, Firerazer

After a semi-intentional two-week mid-summer break, Alt-F4 makes its glorious return with issue #40. In it, fan-favorite and editor extraordinaire stringweasel does another one of his interviews that gets us some perspective on a Nauvis-related topic. A Nauvian Perspective, if you will. This time, he talked to Franqly who’ll be representing Factorio for the first time at the Summer Games Done Quick charity event. More info on that at the end!

The Nauvian Perspective: Franqly stringweasel

The fastest Factorio singleplayer speedrunner in the world – at time of writing – is a new-ish player called Franqly. He joined the Factorio speedrunner community very recently with his first entry on speedrun.com in October of last year. Today however, he is out-running legends like AntiElitz and Nefrums, and is the only player alive that has single-handedly finished Factorio in 90 minutes flat. In the time it takes you to watch the Bee Movie he can complete everything from crash landing on Nauvis to launching the rocket.

It’s no suprise then that Franqly was recently accepted to take part in the Summer Games Done Quick, or SGDQ for short, which is happening from the 4th to the 11th of July 2021. This event is an enormous yearly speedrunning marathon which showcases over 140 different runs. Various big names in the speedrunning community such as TheMexicanRunner and mitchflowerpower take part. And it’s for a great and noble cause too! The goal of this marathon to raise funds for Doctors Without Borders, being its largest fundraising event in the world! Being accepted into SGDQ is no small feat either – this year the event received almost 2000 submissions of which only about 150 were selected to take part. Talented Factorio players had submitted their runs in the past, hoping to join this prestigeous event, but were denied because Factorio was not “officially released” yet.

The base that Franqly launched a rocket from in under 90 minutes. A part of this base can also be seen in the unofficial Factorio Hall of Fame.

Speeding Through Factorio

Currently, Franqly is the king of the Any% speedrunning category. The rules for this category are simple: The run is completed by launching the rocket, all by yourself. You are free to change the map generator settings, including enabling Peaceful Mode and using a specific Map Seed. The importing of blueprints however is not allowed, but you may use blueprints created during the run. The rest is up to you.

Finishing Factorio in 90 minutes is no trivial task. There’s a reason the There is no Spoon achievement requires you to finish the game in under 8 hours! It’s also one of the few games that has no bugs that can be exploited during speedruns! Rather, the factory needs to be designed and built perfectly to research as fast as possible while still expanding production as fast as possible to then research even faster – all to launch the rocket in the shortest time. Runners will easily spend hundreds of hours designing and fine-tuning their factories to maintain this fine balance of research and expansion. Luckily the legendary runner Nefrums created a helpful beginner’s guide for the community on how to design such a base. Nefrums really plays a big role in the community and a few top speedrunners even use Nefrums’ personal base design for their own runs.

However, even if the factory design is perfect, it will take even more time to practice and perfect the actual building of the factory. There are many different approaches and strategies to speedrunning, and they all require runners to perfectly balance many different aspects of the game all while racing against the clock. One example is hand-crafting where some runners have pre-calculated lists with exact amounts of what they need to craft at specific times to always be ready for the next build. Some also need to be able to build the most of the factory from memory, sometimes having only pictures on hand as reference, all while already being under time pressure. And because a factory is such a complex mechanism, one wrong placement can easily cost you the world record.

Who is Franqly

Now, who is Franqly? The speedrunning scene was dominated for a long time by names like AntiElitz, Nefrums, and Phoenix27833 – only to name a few. However, Franqly soon came around, and through practice and dedication he became one of the best. I reached out to him to ask him a few questions about his time in Factorio and how he managed to reach the top so fast after previously only speedrunning The Legend of Zelda: Ocarina of Time a few times. He was very gracious and gave us a glimpse into his speedrunning career.

Is there someone specific that got you into Factorio, and how much time have you spent with the game?

No one specific. I can’t quite remember how I found it, but I probably saw someone playing on twitch. I thought it looked like s**t tbh, but was interested in the concept. Then a few months after, I saw it on steam. It looked much better with [version] 0.12, and decided to pick it up. I had about 1500 hours before starting to speedrun. [I am at] about 2200 [hours] now.

— Franqly

When did you start speedrunning, and is there someone who inspired you to start? Is there someone now that you see as a sort of mentor?

I started relatively recently, about August last year. I had contemplated it in the past, as I had watched Anti’s streams off and on for a while. Nefrums created an introduction to speedrunning guide, and that gave me the push to try it. I’d recommend that guide to anyone thinking about trying out factorio speedrunning. I would consider Nef the most mentor-like person in the community for me, but everyone in the Discord and on Twitch chat chimes in with advice and strategy ideas, and that helped me come up to speed very quickly.

— Franqly

Speedruns tend to look very similar between different players to the untrained eye. What sets your run apart from the others?

I think what sets me apart from anti, nef, and other talented runners and planners is having never designed a base myself, I’m not tied to any initial concept of what the run is suppose to be, what it specifically was designed for. Unfortunately, I don’t have the creative or intellectual ability to design a run like I can perform. But I can analyze well, and I can figure out micro optimizations, at least for my own play-style. I also practice all the details in short segments, in a very grindy fashion, and that let’s me have very consistent runs with little to no mistakes.

— Franqly

Do you think a large part of your success is that you practice more? Not so much optimizing the factory, but rather your play-style? As you said, but choosing optimal routes to run for example. Do you think you practice these techniques more than other top runners?

I can’t say for sure. I know I do all my practicing offstream, as I think most speedrunners do. If I had to guess, yes that would be the case. I’ve been in between work this last year and it gave me a lot of time. Now I’m at 56hr/week. Most others in the community have full time jobs.

— Franqly

What is the hardest part of speedrunning Factorio? How does this compare to speedrunning other games?

The hardest part is the part I avoid, the design of the build from beginning to end. I absolutely have stood on the shoulders of giants, in particular Nefrums for the current design we both run. I was pretty hesitant to approach speedrunning the game in this way, but I haven’t really received backlash from others in the community, and Nefrums has been completely on board and very helpful, and of course I didn’t want a one-way street, so I’ve tried contributing in ways that use my strengths. Compared to other games, what really stands Factorio apart is that every single action has a ripple effect to the rest of the run. It is basically impossible to launch the rocket under the same conditions as any other run. In level based games, generally each segment will play the same everytime. I can think of RPG speedruns being kind of on the level of early actions having effects throughout, but even then generally strategies are made to resync progress or adapt to a limited number of alternatives.

— Franqly

I see you also did Zelda Speedruns in the past. How do you compare Zelda speedrunning with Factorio speedrunning?

Completely different to Zelda! Pretty much on every level. I will say, I learned how to grind practice effectively, and that translated well. I was never all that good at Ocarina of Time, but I really enjoyed it all the same. I’ve dabbled in a few other games less seriously, including SM64, Super Metroid, SM Sunshine, Hollow Knight, and Celeste.

— Franqly

What is your favourite part about speedrunning? And the part you dislike the most?

My favorite part is the progression of skill, feelings of getting better at something. Speedrunning becomes very difficult to maintain motivation for after “hitting a wall” with improving your skills, and much less enjoyable. I’ve found taking regular 1-2 week breaks has been very beneficial to not reach a level of burnout, so it continues to be enjoyable longterm.

— Franqly

How often do you practice/plan for you runs? And how long did you do speedruns before you were competing with the top runners?

I pretty much live, eat, breathe, sleep with Factorio when I’ve learned a plan and practice it. I do segmented practice in 2-3 minute chunks, over and over, trying out different movement routes or building placement order until I arrive at something I’m comfortable with and can consistently do fast. While doing runs, I make mental note of segments that didn’t go well, and later grind those again. I began improving my times rapidly with this approach. With the right amount of free time, determination, familiarity with the game, and general gaming skill, I was able to achieve the world record in about 5-6 months.

— Franqly

Why did you decide to send a submission to SGDQ? And were you excited when you received the “letter” saying that you’re in?

I’ve been watching gdqs for years. I wasn’t really expecting to get in, so it was quite a surprise! I’m very happy to be able to showcase factorio to a larger audience. I just thought, what the hell, may as well apply.

— Franqly

Do you still play Factorio “normally”? And if you do, is it hard to “slow down” and play it in a more relaxed fashion?

Not recently, no. I tried Pyanodons suite a few months ago, got overwhelmed and shelved it. The base game is definitely “tainted” for me at this point, but I think that is true for most players that have 2k+ hours in the game. We can never get that first play-through experience again. I play other games to relax.

— Franqly

What other games do you enjoy playing? I saw you’re currently into Satisfactory?

Yeah, Dyson Sphere currently, and Satisfactory are both great and I highly recommend both for those that enjoy factorio. I have played a very wide range of genres in the past, too many to list. In recent years I’ve really narrowed my focus to strategy games. Eu4, Slay the Spire, SC2, and Dominion are also recent games I’ve played. They address different itches. I played copious amounts of WoW and later LoL. Too much time, lol.

— Franqly

How do you find the Factorio speedrunning community? It seems that AntiElitz and Nefrums have created a community with great sportmanship, where runners are competivive but still celebrates others achievements.

As I mentioned before, I had watched anti stream off and on for a fews years before joining. I think our community is great! Good mix of personality and backgrounds with a spirit of cooperation. It’s not overly competitive, but enough so it encourage growth. I’m not personally super entwined in goings on, but I do enjoy popping in for some discussion once in a while.

— Franqly

Do you like watching other streamers/lets-players? If so, who are you following most at the moment? How about anyone else participating in the SGDQ?

I used to watch on Twitch a lot more than I do now. When I do, I’ve been watching Arumba, Zoast, Cheese, and a few others. I’m most excited for Super Metroid at GDQ, oldie but a goodie.

— Franqly

Do you have any other hobbies/activities/profession that you like doing outside of the videogame world?

I enjoy spending time with my wife. We watch shows, go on local walks or drive out to scenic hiking spots. Nothing too crazy, my life is pretty chill atm. Looking forward to having kids, which we’re delaying until we have a house. Saving as much as we can. Housing market is ridiculous though.

— Franqly

 

 

Franqly laying on rocks staring up into the sky.
Franqly quite possibly pondering speedrunning techniques while on a hike with his wife.

 

The Event with a Good Cause

We are all very excited to see Franqly take part in this great event where he will be representing Factorio! He has worked very hard and spent countless hours achieving this amazing goal. Hopefully this will be the first inclusion of many of our favourite factory building game in mainstream events!

We ask you all join and support Franqly with us! He will be joined in his stream by AntiElitz and Thue, while XenoCyber will guide us through what Franqly is doing. His run is scheduled to happen on the GDQ Twitch Channel on Friday, 9 July, at 2:18 PM UTC time.

There will likely be people hanging out watching the run in our Alt-F4 Discord and the Factorio Discord. So dust off your Twitch emotes, warm up your witty remarks, and mute your zoom meetings. We’re going to watch Franqly show the world how Factorio is speedrun!

Contributing

As always, we’re looking for people that want to contribute to Alt-F4, be it by submitting an article or by helping with translation. If you have something interesting in mind that you want to share with the community in a polished way, this is the place to do it. If you’re not too sure about it we’ll gladly help by discussing content ideas and structure questions. If that sounds like something that’s up your alley, join the Discord to get started!