Page 1 of 1

Atomic Heart - table v: 1.0 CT

Posted: Tue Feb 21, 2023 4:59 pm
by ModEngine
Atomic Heart Steam v1.0 Cheat Engine Table (CT)

Game Name: Atomic Heart
Game Vendor: Steam + Windows Store
Game Version: Full Release v1.0
Game Process: AtomicHeart-Win64-Shipping.exe



Features

Get Player
Unlimited Health
Unlimited Energy
Unlimited Stamina
No Ability Cooldown
No Reload
Unlimited Ammo
Unlimited Air
Unlimited Dodges
Unlimited Energy
Speed Modification




Note:


These cheats may or may not work for you. These were tested on Steam version but perhaps work for other version too.

A minimum of Cheat Engine 7.0 is required but it should work on any version regardless. I try to make my cheats compatible across variety of devices and versions.


UPDATES

Added more cheats
Updated table to work for both steam and windows store

Please give me +rep if you liked it. If you want to share, please link to this topic.

If you wish to encourage me, please use my app. Cheat engine is great and my app is completely optional. You can continue to enjoy the cheat engine offerings I have available here.

Re: Atomic Heart

Posted: Wed Feb 22, 2023 9:16 pm
by theosk
before anyone asks, doesn't works with windows store version.

Re: Atomic Heart

Posted: Wed Feb 22, 2023 9:55 pm
by LittleLight
theosk wrote:
Wed Feb 22, 2023 9:16 pm
before anyone asks, doesn't works with windows store version.
Just open the CT in Notepad and replace all Win64 text with WinGDK and it'll work on the Windows Store version.

Re: Atomic Heart

Posted: Thu Feb 23, 2023 1:02 am
by DanielF823
Works great with the Windows Store Version

Selected the game under Processes

In the game, if you buy and return the items/upgrades you can stack resources... Then disable the CE - Like just giving yourself a few hundred of everything 👍

Re: Atomic Heart

Posted: Thu Feb 23, 2023 1:51 am
by xXLashkeXx
LittleLight wrote:
Wed Feb 22, 2023 9:55 pm
Just open the CT in Notepad and replace all Win64 text with WinGDK and it'll work on the Windows Store version.
Or you change AtomicHeart-Win64-Shipping.exe and AtomicHeart-WinGDK-Shipping.exe to $process... then you can use it on both versions

Re: Atomic Heart

Posted: Thu Feb 23, 2023 3:50 am
by Darkensteele
appreciate the table.

Re: Atomic Heart

Posted: Thu Feb 23, 2023 7:59 am
by Renagede77
I can't find the actual value for Synthetic Material. I'm able to find a value, but it just seems to match whatever the actual value is without effecting it. I've tried searching for all the various type of values.
Maybe it's somehow hidden for some reason?

I've been able to find all of the other crafting materials so far though.

Re: Atomic Heart

Posted: Thu Feb 23, 2023 12:42 pm
by Zanzer
The inventory items are actually hidden from display in-game, but they still are treated as individual objects that you loot. Like other objects, such as ammo, they have a maximum stack size. This causes them to be stored in memory as multiple counts. So the total display you see in game is stored in a temporary memory location and is only for display purposes.

You could instead start your search off by looking for a number between 1 and the displayed amount. Then, after you spend some, re-scan for "number increased/decreased by X" instead of the exact value. That might help you find it manually.

Re: Atomic Heart

Posted: Sat Feb 25, 2023 7:17 pm
by ModEngine
theosk wrote:
Wed Feb 22, 2023 9:16 pm
before anyone asks, doesn't works with windows store version.
Should work for Windows Store now. Also added more options

Re: Atomic Heart

Posted: Sun Feb 26, 2023 12:43 am
by Stazz
Great table, can you add infinite jump?

Re: Atomic Heart

Posted: Sun Feb 26, 2023 7:16 am
by Wiszunio
Not working

Re: Atomic Heart

Posted: Sun Feb 26, 2023 3:57 pm
by RogueTech
Wiszunio wrote:
Sun Feb 26, 2023 7:16 am
Not working
"Not working", really? How does this help out the mod author?

Re: Atomic Heart

Posted: Sun Feb 26, 2023 4:15 pm
by SunBeam
RogueTech wrote:
Sun Feb 26, 2023 3:57 pm
Wiszunio wrote:
Sun Feb 26, 2023 7:16 am
Not working
"Not working", really? How does this help out the mod author?
He has 2 posts, both saying the same crap. He's obviously a hit'n'run kind of person, so it makes no sense to even engage.

Re: Atomic Heart

Posted: Sat Mar 04, 2023 5:04 am
by BitKit
cheat engine wrote:
Tue Feb 21, 2023 4:59 pm
Doubled amount incoming resources:

Code: Select all

[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
 
aobscanmodule(Resources,AtomicHeart-Win64-Shipping.exe,89 46 30 44 01 FF) // should be unique
alloc(newmem,$1000,Resources)

label(code)
label(return)

newmem:

code:
  push ecx
  mov ecx,[rsi+30]
  mov [rsi+30],eax
  sub eax,ecx
  add [esi+30],eax
  pop ecx
  add edi,r15d
  jmp return

Resources:
  jmp newmem
  nop
return:
registersymbol(Resources)

[DISABLE]
//code from here till the end of the code will be used to disable the cheat
Resources:
  db 89 46 30 44 01 FF

unregistersymbol(Resources)
dealloc(newmem)