Oct 7, 2022
209
385
Nice to know this game is still getting updated
Heres a powershell script i did a while ago

It modifies a string in the registry so you can run every version of heat without a modified .DLL. Uncracked in other words.
So run it once and you can play every version that comes out in the future without cracking
Right click->run with powershell
You probably need to add it into head of the topic)
 

Dansky32

Newbie
Feb 16, 2022
20
40
Nice to know this game is still getting updated
Heres a powershell script i did a while ago

It modifies a string in the registry so you can run every version of heat without a modified .DLL. Uncracked in other words.
So run it once and you can play every version that comes out in the future without cracking
Right click->run with powershell
Why do I have the feel that is going to give me a virus?
I'll just wait for a crack on the 0.4.8.0
 

nswip

Formerly 'NoCommentWhatsoever'
Oct 15, 2022
27
23
If anyone wants the mod tools here they are:
Mod tools pulled from version 0.4.6.2 for Unity 2021.
 

nswip

Formerly 'NoCommentWhatsoever'
Oct 15, 2022
27
23
can anyone tell me how to apply the mod to the game (and what does it do)?
If you are talking about the file that I've uploaded, then you CAN'T, it is a package for DEVELOPING mods.
If you are talking about some other mode, then you just put the file in "HeatVR\Mods".
 

starstory

New Member
Mar 28, 2022
5
3
Why do I have the feel that is going to give me a virus?
I'll just wait for a crack on the 0.4.8.0
so this is all the program does if you want to do it manually you can
Im gonna show what i did then.
I know its a little long, but you dont need to modify gameassebly with this method

EDIT: you no longer need to follow this. just download this script and it does everything
automatically
Right click>>Run with powershell

-
The game uses AES (encryption) to encrypt a date as a string using your Computer Unique ID. It then stores that
encrypted string in your registry.

-
First you need to find your UID (device unique ID) that the game assigns you.
Note: Its unique to every computer
Here's a Powershell script I made that easily finds that for you:

-
Run the powershell script by rightclicking-->Run With Powershell
A blue window will pop up and it will hopefully have a string in it.
-
Now Idk what your UID is since its unique to all computers, but
it has to have 32 characters for the AES key to work. mine had
40 so I deleted the 8 last characters.
Example: this has 40 characters. delete the last 8 characters (not the firsts):
a4bcf73dfb58438b954941399b2df3sa3etdsag2 <--UID
a4bcf73dfb58438b954941399b2df3sa <--"Secret Key"
-
Now go to this website:

Make sure you got the settings right:
-
AES Encryption:
Key size: 256 Bits
Cipher mode: ECB
Leave the initialization vector empty
And paste your 32 Character key in the
secret key Box.

And the text (or date) to be encrypted is "9999-01-01" Format has to be YYYY-MM-DD
The game checks for a date and if the date encrypted in your
registry is earlier than the build version it asks for Auth
So putting this date will make you able to play every version until year 9999 (should be enough lol)

Then press encrypt
View attachment 2080809
View attachment 2080827
So using the example key it gives us this:
sJUWWjilFUNpxci+aOxU8Q==

All you need to do now is place this in your registry, Easiest way is with a registry script.
Go here
Make sure you got the same settings.
ASCII Character encoding
Output delimiter "Comma"
Paste the string into the top box
Press the green Convert Button
View attachment 2080868
Paste the code bellow into an empty text document,

Code:
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\SOFTWARE\Heat\Heat]
"AuthToken_h1061026678"=hex:00
"HWID"=hex:(bytes goes here)
Then copy the bytes by pressing the yellow copy button on the ASCII to Hex site and put them in the
script.

View attachment 2080882

Save as a .reg file. then double click on it. its gonna give you a warning, click yes.

You are done. now try running an uncracked version and click the authentification button like usual and it should let
you in.
 
4.40 star(s) 27 Votes