Page 2 of 5

Re: z Atomic Heart

Posted: Tue Feb 21, 2023 12:19 am
by vortex23
zolambarkudak wrote:
Tue Feb 21, 2023 12:09 am
vortex23 wrote:
Mon Feb 20, 2023 9:50 pm
Thanks!, but something must be bugged. I didn't activate craft for free or craft without materials and I had materials for crafting a weapon, I used the materials but I didn't receive the weapon. Weird.

Infinite ammo, dash, energy work.

Anyway god-mode it´s needed or infinite health, as bosses are fucking insane :lol:
I don't know if it's the same with M$ store but you can edit this file and give yourself 10000 health.

...\Atomic Heart\AtomicHeart\Content\GameTune\CharactersAttributes.json
Ok thx I'll try it.

Anyway now crafting weapons it looks like it´s bugged. I have resources, craft it losing the resources, game says weapon goes to inventory and there´s no weapon and crafting menu still shows that I can craft that weapon... weird.

I edited that file and changed "health": 10000

but it doesn't work.

Or maybe it´s "maxHealth": 250 value, I will test later.

Re: z Atomic Heart

Posted: Tue Feb 21, 2023 12:30 am
by vortex23
Ok I'm stupid. Weapons were in STORAGE, not inventory, LOL, my bad. It´s working dude xDDD

Editing the .json it´s not working though.

What exactly do I need to change?. I have it like this:

{
"dataAssets": [
{
"path": "/Game/Core/Data/Attributes/DA_DefaultVovAttributes.DA_DefaultVovAttributes",
"data": {
"maxHealth": 10000,
"maxHealthMultiplier": {
"difficultyToFloatMap": {
"(TagName=\"Difficulty.Fight.Easy\")": 0.45,
"(TagName=\"Difficulty.Fight.Normal\")": 0.7,
"(TagName=\"Difficulty.Fight.Hard\")": 0.9
}
},
"health": 10000,

EDIT: But when I try to move the crafted weapon from storage to inventory... game freezes and then crashes... why??

Re: z Atomic Heart

Posted: Tue Feb 21, 2023 12:59 am
by Spiran
If you use the leaked build just press backspace can give yourself weapon/upgrades etc

Re: z Atomic Heart

Posted: Tue Feb 21, 2023 1:03 am
by jonaaa
Spiran wrote:
Tue Feb 21, 2023 12:59 am
If you use the leaked build just press backspace can give yourself weapon/upgrades etc
Yes but it's the leaked one, a lot of bugs are present there.

Re: z Atomic Heart

Posted: Tue Feb 21, 2023 1:16 am
by Anunja
Zanzer wrote:
Mon Feb 20, 2023 6:43 pm
Be warned. Not sure if it was something else I did or if Craft Without Materials has now bugged me and I'm unable to pickup those resources which I didn't have before.

Guess I'll eventually see if there's some long term impact with that.
Did you find out where the bugs came from or is crafting without materials working without isses now? I'm using the Steam version btw.

Re: z Atomic Heart

Posted: Tue Feb 21, 2023 2:07 am
by Zanzer
Anunja wrote:
Tue Feb 21, 2023 1:16 am
Did you find out where the bugs came from or is crafting without materials working without isses now? I'm using the Steam version btw.
I wasn't planning on starting over to see.
Doesn't seem to take too long to get that one extra material that's needed for some upgrades.
Just wait until you have it.

Re: z Atomic Heart

Posted: Tue Feb 21, 2023 3:24 am
by sicwan
just a heads up, craft for free does not seem to be working on the GamePass version BTW, unless I'm doing something wrong.

Re: z Atomic Heart

Posted: Tue Feb 21, 2023 3:49 am
by Anunja
sicwan wrote:
Tue Feb 21, 2023 3:24 am
just a heads up, craft for free does not seem to be working on the GamePass version BTW, unless I'm doing something wrong.
For me it worked on Steam for things where I have the blueprints. It doesn't work for Neuropolymer stuff...only gun upgrades.

Re: z Atomic Heart

Posted: Tue Feb 21, 2023 4:15 am
by sicwan
Anunja wrote:
Tue Feb 21, 2023 3:49 am
sicwan wrote:
Tue Feb 21, 2023 3:24 am
just a heads up, craft for free does not seem to be working on the GamePass version BTW, unless I'm doing something wrong.
For me it worked on Steam for things where I have the blueprints. It doesn't work for Neuropolymer stuff...only gun upgrades.
When I try and start it in the crafting menu, it has an error
<<Error while scanning for AOB's : craft
Error: Not all results found>>

Re: z Atomic Heart

Posted: Tue Feb 21, 2023 8:00 am
by EphenSteve
Heres an infinite health for testing. Idk if there is any scripted events where you need to die but so far after many restarts and testing many things it doesnt the compare i used seems pretty stable and doesnt ever share anything with it so it should work. health will move down a tiny bit but if you die i might have to work on it a little be more.

EDIT: Tested on GamePass version, no idea if it works for others as I don't own them. So if it doesnt work ;)
EDIT 2: Finding a more stable compare. It finally stopped working and started working for everyone. gimme a bit.

Re: z Atomic Heart

Posted: Tue Feb 21, 2023 8:22 am
by vortex23
EphenSteve wrote:
Tue Feb 21, 2023 8:00 am
Heres an infinite health for testing. Idk if there is any scripted events where you need to die but so far after many restarts and testing many things it doesnt the compare i used seems pretty stable and doesnt ever share anything with it so it should work. health will move down a tiny bit but if you die i might have to work on it a little be more.

EDIT: Tested on GamePass version, no idea if it works for others as I don't own them. So if it doesnt work ;)

Code: Select all

[ENABLE]

aobscanmodule(infhealth1,AtomicHeart-WinGDK-Shipping.exe,CC F3 0F 11 49 08 C3) // should be unique
alloc(newmem,$1000,infhealth1)

label(code)
label(return)

newmem:
cmp [rcx+1E4],1
jne code
mov [rcx+08],(float)100
jmp return

code:
  movss [rcx+08],xmm1
  jmp return

infhealth1+01:
  jmp newmem
return:
registersymbol(infhealth1)

[DISABLE]

infhealth1+01:
  db F3 0F 11 49 08

unregistersymbol(infhealth1)
dealloc(newmem)
Thanks. Where do we need to add that code?.
EDIT: But when I try to move the crafted weapon from storage to inventory... game freezes and then crashes... why??
I was finally able to move from storage to the inventory a 3 weapon slot. It looks like game was crashing when I tried to move it to 2 slots.

Re: z Atomic Heart

Posted: Tue Feb 21, 2023 9:10 am
by DarkFearless
vortex23 wrote:
Tue Feb 21, 2023 12:30 am
Seems like these are attributes for enemies in the game and not the controlled character.

So if you put 10K -- that enemy will have 10K HP.

Re: z Atomic Heart

Posted: Tue Feb 21, 2023 9:17 am
by EphenSteve
DarkFearless wrote:
Tue Feb 21, 2023 9:10 am
vortex23 wrote:
Tue Feb 21, 2023 12:30 am
Seems like these are attributes for enemies in the game and not the controlled character.

So if you put 10K -- that enemy will have 10K HP.
no its because the game uses shared op codes, which means variables are passed through the same function so if you make an edit to the function anything else that used that function also gets changed by it. I just didn't spend enough time finding the right compare yet. after I do it shouldn't work for enemies as well.

Re: z Atomic Heart

Posted: Tue Feb 21, 2023 9:35 am
by DarkFearless
EphenSteve wrote:
Tue Feb 21, 2023 9:17 am
I see; just note at one point the same bots become invincible in some areas.

Re: z Atomic Heart

Posted: Tue Feb 21, 2023 11:09 am
by vortex23
DarkFearless wrote:
Tue Feb 21, 2023 9:10 am
vortex23 wrote:
Tue Feb 21, 2023 12:30 am
Seems like these are attributes for enemies in the game and not the controlled character.

So if you put 10K -- that enemy will have 10K HP.
lol ok.

I will wait then for the cheat table to be updated with maybe Infinite Health