Page 6 of 14

Re: Death Stranding | Cheat Engine Table v1.0

Posted: Sat Jul 25, 2020 11:00 am
by TrikzMe
I don't recommand to do it but you can reverse the trainer to get the AOB used and take a deeper look at where and why it works.
I did it after a request just to see if there is anything suspicious and looks like it's clean.

Re: Death Stranding | Cheat Engine Table v1.0

Posted: Sat Jul 25, 2020 4:50 pm
by blazeddd
Master_Builder wrote:
Thu Jul 23, 2020 3:15 am
Changes in v2:
Renamed "No Locked Stamina Gain" to "No Fatigue".
Added "No Visible Damage on Backpack".
Added "Infinite Backpack Cover Durability".
viewtopic.php?p=144890#p144890
Thanks for these great updates man.

Had a quick question about the "No Visible Damage on Backpack" option - does this mean it's cosmetic only and we would still have to repair/replace when out of durability if we don't enable "Infinite Backpack Cover Durability"? (which is what I would prefer)

Follow up - could that be applied to vehicles? I hate looking at my degraded gold truck but using fearlessrevolution's 100% durability for truck won't fix the look and instead adds a layer of cheat that I don't want.. I just cosmetically want it to look new but still degrade.

Re: Death Stranding | Cheat Engine Table v1.0

Posted: Sat Jul 25, 2020 5:39 pm
by Master_Builder
blazeddd wrote:
Sat Jul 25, 2020 4:50 pm
Master_Builder wrote:
Thu Jul 23, 2020 3:15 am
Changes in v2:
Renamed "No Locked Stamina Gain" to "No Fatigue".
Added "No Visible Damage on Backpack".
Added "Infinite Backpack Cover Durability".
viewtopic.php?p=144890#p144890
Thanks for these great updates man.

Had a quick question about the "No Visible Damage on Backpack" option - does this mean it's cosmetic only and we would still have to repair/replace when out of durability if we don't enable "Infinite Backpack Cover Durability"? (which is what I would prefer)

Follow up - could that be applied to vehicles? I hate looking at my degraded gold truck but using fearlessrevolution's 100% durability for truck won't fix the look and instead adds a layer of cheat that I don't want.. I just cosmetically want it to look new but still degrade.
SunBeam's got something in the works for vehicles.

I tried to describe this for the backpack, but half of it is cosmetic only. The back panel, the attachments on it, the metal frame, etc, all have a durability, but are indestructible.
What happens is, it visibly shows damage over time, rusts, gets dirty, etc. Resting in a private room resets this to 100% durability completely restoring it's look. You can't directly repair it outside of that, and it can't be destroyed either. Purely cosmetic.
This is for the "No Visible Damage on Backpack" option.

For "Infinite Backpack Cover Durability", this applies ONLY to the optional cover you can add.
It's something you unlock later, and protects anything on your back (the stuff that pushes out vertically, not the stuff you lay horizontally on top of your back). It's a chiral golden thing with "timefall resistant" written on it and such.
If it runs out, you have to create ('attach') a new one as you would the other attachments, in a private room.
You can't even repair the thing either, you have to replace the damaged one with a new one, resting doesn't restore it at all.
This option keeps that cover at 100%.

Re: Death Stranding | Cheat Engine Table v1.0

Posted: Sat Jul 25, 2020 7:40 pm
by SunBeam
I've decided to momentarily ENJOY the game. I really like it. Talk to you once I finish it.

Re: Death Stranding | Cheat Engine Table v1.0

Posted: Sun Jul 26, 2020 7:26 am
by forkinator
Has anyone figured out how to make a "build anywhere" cheat? One where if there is a tiny pebble in the way, you will still be able to build there. :P

Re: Death Stranding | Cheat Engine Table v1.0

Posted: Sun Jul 26, 2020 9:52 am
by cykacyka
I'd suck the dick of anyone willing to make a free-camera table --- seeing as Otis_inf decided to go walled garden overkill on his work and every existing camera table he worked on

Re: Death Stranding | Cheat Engine Table v1.0

Posted: Sun Jul 26, 2020 9:33 pm
by SunBeam
Speaking of free cam, check this out :D

Image

+



BR,
Sun

Re: Death Stranding | Cheat Engine Table v1.0

Posted: Sun Jul 26, 2020 11:11 pm
by cykacyka
SunBeam wrote:
Sun Jul 26, 2020 9:33 pm
Speaking of free cam, check this out :D

Coordinates is fine and all but without any clue on where to start in going from zero knowledge on coding to making a free cam table is why I rely on people more knowledgeable than myself -- rip -- all to fuel a profitless hobby

Re: Death Stranding | Cheat Engine Table v1.0

Posted: Mon Jul 27, 2020 2:47 am
by teinousi
vosszaa wrote:
Wed Jul 22, 2020 9:22 pm
skip
I was has a question about when you make the first version until now the newest version , theres already have a bug , when u use the safe house , u cannot use the fabricate Equipment , all the materials to create is force to 0 , including the pirate room to , the pirate room has a item u only can create in there but the material has show has 0 ....

can u fixed that ?
Image
Image

please and thx

Re: Death Stranding | Cheat Engine Table v1.0

Posted: Mon Jul 27, 2020 6:00 am
by TrikzMe
teinousi wrote:
Mon Jul 27, 2020 2:47 am
please and thx...
Here is my version:

Code: Select all

[ENABLE]

aobscanmodule(materials,ds.exe,48 8B 44 1A 30) // should be unique
alloc(newmem,$1000,"ds.exe"+3070980)
label(code)
label(return)

newmem:
  mov [rdx+rbx+30],#9999
  jmp code
code:
  mov rax,[rdx+rbx+30]
  jmp return

materials:
  jmp newmem
return:
registersymbol(materials)

[DISABLE]

materials:
  db 48 8B 44 1A 30

unregistersymbol(materials)
dealloc(newmem)

Re: Death Stranding | Cheat Engine Table v1.0

Posted: Mon Jul 27, 2020 6:10 am
by teinousi
TrikzMe wrote:
Mon Jul 27, 2020 6:00 am
teinousi wrote:
Mon Jul 27, 2020 2:47 am
please and thx...
Here is my version:
Code

Code: Select all

[ENABLE]

aobscanmodule(materials,ds.exe,48 8B 44 1A 30) // should be unique
alloc(newmem,$1000,"ds.exe"+3070980)
label(code)
label(return)

newmem:
  mov [rdx+rbx+30],#9999
  jmp code
code:
  mov rax,[rdx+rbx+30]
  jmp return

materials:
  jmp newmem
return:
registersymbol(materials)

[DISABLE]

materials:
  db 48 8B 44 1A 30

unregistersymbol(materials)
dealloc(newmem)
Sorry how to use ?

Re: Death Stranding | Cheat Engine Table v1.0

Posted: Mon Jul 27, 2020 1:28 pm
by bloodaxis
teinousi wrote:
Mon Jul 27, 2020 6:10 am

Sorry how to use ?
Ctrl + alt + A and paste the code in there and file -> Assign to current cheat table.

Re: Death Stranding | Cheat Engine Table v1.0

Posted: Tue Jul 28, 2020 1:58 am
by NumberXer0
Has anyone had any luck messing around with the star ranking for each location or the stat star? It was able to be directly modified on PS4 through basic hex editing..but something like a multiplier would be nice instead, to cut down on the grind vs instant max.

Re: Death Stranding | Cheat Engine Table v1.0

Posted: Tue Jul 28, 2020 5:42 am
by teinousi
bloodaxis wrote:
Mon Jul 27, 2020 1:28 pm
teinousi wrote:
Mon Jul 27, 2020 6:10 am

Sorry how to use ?
Ctrl + alt + A and paste the code in there and file -> Assign to current cheat table.
Is cannot lick can it show up on right click menu : Materials error not all results found

Re: Death Stranding | Cheat Engine Table v1.0

Posted: Tue Jul 28, 2020 7:16 am
by TrikzMe
teinousi wrote:
Tue Jul 28, 2020 5:42 am
...Materials error not all results found...
Here is a proof: