hyper hardcore

hyper hardcore

Not enough ratings
Tips and Scripts for the "Who made that?" Achievement
By ZetDerp
In this guide I will advise you what preparation you should take and how to use scripts to help you when going for the "Who made that?" achievement.
   
Award
Favorite
Favorited
Unfavorite
For anyone who wants to help the game.
Sections + Links
In this guide I will talk about,
  • How to get Access to the Secret Option
  • Basic Things to Change
  • Tasks with AutoHotKey (Download)
  • Going AFK with AutoHotKey
  • Auto-Type Code with AutoHotKey

If you are only looking for scripts then start from "Tasks with AutoHotKey (Download)"

For all you Russians go to this guide, its all translated for you
https://steamhost.cn/steamcommunity_com/sharedfiles/filedetails/?id=2179863539
How to get Access to the Secret Option
Before you can even try to earn the achievement you need to earn this achievement first.

What does this code mean?




To get this achievement you need to have access to ??????????? and play it until you get the game over screen that has the message "Now Listen To The Radio". Wait for a couple of seconds and you will hear someone telling you a binary code. When converted the number should be
742634
When you have the number go to preferences and input the number. You will get the achievement plus the option.

Where is the option?
The answer is that the option is invisible. Just go to "Save Slot" and go down one. If done correctly you should be on the ??????????? option.

Basic Things to Change
Before doing anything related I highly recommend you to do whats listed here to reduce the chance of messing up, these include:
  • Turn off any updates that could close down hyper hardcore on your device
  • Go in offline mode on Steam
  • Turn off sleep mode on your device
  • DON'T DO THIS BY HAND (unless you want to experience true pain)

Now why,
  1. Turn Off Updates: This is a big one since I did mess up once because of this. Window Updates forced me to reset my pc which made hyper hardcore close down. To prevent this just go to Settings > Window Update settings > Advanced options > Pause updates and push it 35 days back just to be safe.

  2. Go in Offline Mode: Even if this isn't too important it's better safe than sorry. If you get disconected while online your friends list will appear on your screen telling you you're offline. This friends list will kick you out of the game but not close it. While this doesn't affect anything this can be a problem when running AutoHotKey tasks. To prevent this just go in offline mode so you can't be kicked out in the first place. I recommend this no matter how good your connection is.

  3. Turn Off Sleep Mode: When going for this achievement never have sleep mode on, it only causes problems. To turn off sleep mode go to Settings > System > Power and Sleep and from there disable it entirely.

  4. Don't Try this by Yourself: I tried this and wanted to die at about the 100 character (don't forget that there's 1024 total characters), it's stupidly long and boring, this is why I fully recommend using any type of script. In this guide i'll be using AutoHotKey but if you can't get any script to help you then don't even attempt this achievement.
Tasks with AutoHotKey (Download)
For the tasks you will need to download AutoHotKey [www.autohotkey.com]. I will help you make files with AutoHotKey and 2 essential scripts that you should run when going for this achievement.

How to Setup/Edit a Script
Setup

When you finish downloading AutoHotKey left-click on your desktop, go down to new and there should be "AutoHotKey Script". Name it whatever you want it to be.



Editing

When you have your file on your desktop you now want to left-click it. Click the 3rd option called "Edit Script". You can remove the text in the notepad or not, it doesn't affect the code.

Going AFK with AutoHotKey
One very important thing to be aware of is that the DVD screen will change the code, this means you can't leave your device AFK for about 30 minutes plus. While that's a problem since you can't take breaks when needed I have a code that will make sure it doesn't change to the DVD screen.

Copy and paste this code into the notepad and save it.

#Persistent
SetTimer, PressTheKey, 1000
Return

PressTheKey:
Send, {Left}
Return

Backspace::ExitApp



This code, when on, will click the left arrow every second. If you need to leave your device turn this code on and hover over the secret option, the inputs from the left clicks will not boot you to the DVD screen.



What can you Change

SetTimer, PressTheKey, (Insert number)
I suggest using 1000 but you can use any number. The number must be in milliseconds so 1 second will be 1000, 2 seconds will be 2000 and 10 seconds will be 10000. While you can lower it under a second I don't recommend this, a second is good enough.

Send, {Insert Word}
You can change this but really only use {Left} or {Right}.

(Insert Word)::ExitApp
By default this is linked to excape which is not good since pressing excape will also quit out of hyper hardcore. Use any key that you don't need for this, I used backspace and it worked fine.
Auto-Type Code with AutoHotKey
This next script will reduce the amount of hours you need to spend on this. It will enter all the known characters only so you will need to run this multiple times.

Copy and paste this into a new AutoHotKey Script and save it.

!Lbutton::
SetKeyDelay, 30
loop, 1
{
send (Insert Characters Here)
}
return

Backspace::ExitApp





When alt + left-click is pressed this will input all the characters in (Insert Characters Here) with a delay of 30 millseconds per click.



What can you Change

SetKeyDelay, (Insert Number)
This depends how good your device is, the better it is the smaller the number. For me I used 30 millseconds at the start, 25 millseconds when I got to the purple and 22 millseconds at the cyan.
Experiment with this yourself and find the best delay for you.

Send (Insert Characters Here)
While the rest of the changes are optional this one is mandatory. This is where you will input your code every now and again with {Left} and {Right}'s. If my first 5 characters were Left, Left, Right, Left, Right then the script would look like send {Left} {Left} {Right} {Left} {Right}. Over time you will add more characters so you don't need to input them yourself.

(Insert Word)::ExitApp
This is the same as the last script, just chose what key you are not using and put it where (Insert Word) is.

Near the end of the code (cyan) you should have a really long string of {Left} and {Right}'s. Don't rush inputting the {Left} and {Right}'s because one mistake can cause a lot of problems but don't take too long because you can't run AFK task when inputting new characters.

My script at the end:


Take note that sometimes this script will mess up inputting the characters. If it happens just let it finish and make sure you start at the start of green. It only happens at the very start of the green so any errors beyond that point is a incorrect {Left} or {Right}.
Key List
I assume some people might not know the names used for some keys since the script will only work if it knows the word. For example when binding the left arrow you only say Left and not Left Arrow. If you are ever stuck at finding a name for a key then check the Key List [www.autohotkey.com]. Just find the key you are looking for on the right and type the word on the left.
Conclusion
After reading this I hope you don't have a hellish time like me. If you run into any problems just tell me and i'll try to answer them. If you also see any incorrect info please inform me as soon as possible so I can change it. I will also continue to update this guide for as long as I can. Hate to say it but if you did find this helpful or not don't forget to rate this guide as this will show if i'm making good guides or not.
10 Comments
ZetDerp  [author] 25 Jul, 2020 @ 9:19am 
@De1RR you sure you listened to the radio completely, it should work if you have. Try failing the Hacking gamemode till you get the radio again then enter it.
ZetDerp  [author] 25 Jul, 2020 @ 9:05am 
@♛NℯℝØ♛ If you got the Hit the Corner achievement during the night then the script most likely stopped during the night, theres not really a fix to this since it should only stop if you use the Backspace::ExitApp or if you use task manager to end a task. If you ever try to do this in the future try giving yourself plenty of time, most people get this achievement done in about 4-6 hours.
de1rr 25 Jul, 2020 @ 7:51am 
I listen to this radio completely, after I go into the preferences, I enter it, but nothing happens ...
Nero 25 Jul, 2020 @ 6:36am 
I think it's because of "HIT THE CORNER !!!". I completed this achievement after this.
ZetDerp  [author] 25 Jul, 2020 @ 6:17am 
Mind telling me how this happened? (Was it from your computer turning off, did the script stop, did the game closed down)
Nero 25 Jul, 2020 @ 3:42am 
I lost an almost finished script while I was sleeping ... -10 hours of life :lunar2019crylaughingpig:
fib 23 May, 2020 @ 4:44pm 
Nice :steamhappy: I've added a link to your guide here .
Mercury 22 May, 2020 @ 8:17am 
Thanks for the guide, will hopefully make this monotonous task much less boring
ZetDerp  [author] 8 May, 2020 @ 12:27pm 
:)
wind 8 May, 2020 @ 2:17am 
:)