Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
- 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.
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}
}