To The Core

To The Core

Not enough ratings
How to AFK your 10M block achievement while you sleep
By Durin Torde
This guide will give you an explanation of how to set up the script easily so you can afk get the 10m block achievement
   
Award
Favorite
Favorited
Unfavorite
Introduction
You're here so you can get the 10M block achievement, and maybe get the 500 cores on the way.

You want to set up the AFK and then go away for an hour or go to sleep and have it done by the time you are back
Requirements
The faster you want the achievement the more drones you want.

Faster PC means you can reset the map earlier than what i did.

You will need to install autohotkey

You will need to be able to destroy LETUM prestige 1 without issues.

I will also provide a way to set it up so you can AFK prestige a planet like HOME or HOMES MOON.

Make sure shiny block spawn is turned off.

Make sure you have the infinity box set with max level for best results

Make sure you run the script as administrator,

Change the reset level from r to F3 in game
Setup
After installing the autohotkey we can begin.

start with creating a hoteyscript by right clicking the folder/desktop->new->autohotkeyscript

right click on the created file and press edit with your preferred file editor (mine is notepad++)

now we are going to set up 2 scripts, one for starting the script, one for stopping it.

In the edit we want to add the following code:

F1:: loop{ send {f3 down} sleep 6000 send {f3 up} } F2:: reload

now for an explanation:

F1::
It sets up the button to press to activate this script - in this case the F1 button.

loop{}
it sets up an infinitely repeating loop

send {r down}
it presses the r button

sleep 6000
it waits 6 seconds, for different second amount, just multiply that number by 1000

reload
it stops all scripts running

send {space down}
this is the replacement of the r down for core farming.
Running the script
Now we are at the final section, how to run it.

1) after saving the script, we need to double click it, and now we will see the H icon in the icons at the corner of your screen(where you see your connection, sounds etc).
2) open the desired level
3.a) for block farming, just go to letum prestige 1, move your mouse to one side of the screen for rotation and activate your script (F1)
3.b) for core farming, go to home/home moon on the highest prestige, have the fuel challenge to increase your dmg, destroy the core, press prestige + restart, then activate the script with space instead of r so it will automatically farm you cores as well.

now all you have to do is wait for it to be done. good luck
Contributers
Since i can only add friends as contributers, i will add them here manually:
ElementalElite - for helping fix the script and the requirements, as it only worked locally for me, and not for everyone
14 Comments
drac Jul 1 @ 4:57pm 
Error: Hotkey or hotstring is missing its opening brace.
l006727 Jan 16 @ 2:42pm 
i use OP auto clicker 3.0 i just set the target to the prestige and restart
Fukurou Nov 28, 2024 @ 1:09pm 
AHK is probably my favorite program at this point lmao
Daggath Jan 6, 2024 @ 11:16am 
All I did is set it to the 7 seconds death challenge on endura, and a low prestige # and have an autoclicker click on the respawn button. At this point I already have beaten the game, all equipment and upgrades are up and running. (PC , windows ) On a low prestige it decimates all blocks in the 7second window. just in time to reset.
Davebobman Sep 3, 2023 @ 5:48pm 
I have a Razer mouse and set up a macro using Razer Synapse (v2.21) to automatically activate "Prestige and reset" and use the grenades.
- Create a macro that has "Space Down/Press" and "Space Up/Release" with no delays, effectively pressing the space bar as quickly as possible.
- Assign the macro with the playback option "Toggle continuous playback on/off using the assigned key".

The first core break triggers the "Prestige Planet" popup and you need to manually click it. Subsequent core breaks automatically activate "Prestige and reset" without a popup.

Some additional notes:
- Space is the default key for these actions on the PC version but you may need to change this for your setup. I haven't tested if keys other than Space will also skip the "Prestige Planet" popup so you may need to remap your keys.
- You need to be on the highest unlocked Prestige level for this to work properly. If you aren't, then the game will stay on the current level after the core break.
Fox Sep 2, 2023 @ 11:54am 
You can change all buttons here with whatever buttons you want just make sure if it's the space key or f3 you have to change in in game as well
Alternatively if you want to just turn it on and off with the same button you can use this

toggle = 0

F1::
Toggle := !Toggle
While Toggle{
Send {f3 down}
Sleep 6000
Send {f3 up}
}

And if you want to be able to close it while using other scripts add this

B:: Exitapp

For core farming it'll be a bit different (You can remove the space up/down bit, I just have it in mine to spam grenades) alternatively you could use an autoclicker to click the left mouse button if you prefer

toggle = 0

F1::
Toggle := !Toggle
While Toggle{
SendInput {Space down}{LButton down}{S down}
Sleep 6000
SendInput {Space up}{LButton up}
}
Durin Torde  [author] Sep 1, 2023 @ 2:51am 
shiny block gives you more resources from breaking one, however they are much harder to break. the developer already mentioned here that they will also be counted as more blocks per break - im guessing it will be with the same amount as how much you get from them, or how hard they are to break.
Macaroni and cheese Aug 27, 2023 @ 5:21pm 
what does shiney blocks even do? and somethingextra you shoud get a wiki for to the core going for community to help make.
Durin Torde  [author] Aug 22, 2023 @ 10:24am 
somethingextra, happy to hear it will be easier with the bonus of shiny blocks count towards the blocks broken, its a welcome addition
Durin Torde  [author] Aug 22, 2023 @ 10:23am 
elementalelite, tnx for the explanation, for me it worked without running as admin, and with standard setup. at least the block breaking farm. ill update it and mention your help