Trainer Search

anjinggila

New Member
Joined
Oct 8, 2018
Messages
9
Reaction score
14
While waiting for trainer, you can use my cheat engine scripts:

Infinite consumables (unlimited healing, shards, resources, etc):

Code:
[ENABLE]

aobscanmodule(health,Darksiders3-Win64-Shipping.exe,89 50 2C C3 48 89 54 24 10) // should be unique
alloc(newmem,$1000,"Darksiders3-Win64-Shipping.exe"+39B1FC)

label(code)
label(return)

newmem:

code:
  mov [rax+2C],(int)1
  ret
  mov [rsp+10],rdx
  jmp return

health:
  jmp newmem
  nop
  nop
  nop
  nop
return:
registersymbol(health)

[DISABLE]

health:
  db 89 50 2C C3 48 89 54 24 10

unregistersymbol(health)
dealloc(newmem)


Infinite Souls (attribute points and shop everything):

Code:
[ENABLE]

aobscanmodule(Soul,Darksiders3-Win64-Shipping.exe,29 70 2C 33 F6) // should be unique
alloc(newmem,$1000,"Darksiders3-Win64-Shipping.exe"+397330)

label(code)
label(return)

newmem:

code:
  add [rax+2C],esi
  xor esi,esi
  jmp return

Soul:
  jmp newmem
return:
registersymbol(Soul)

[DISABLE]

Soul:
  db 29 70 2C 33 F6

unregistersymbol(Soul)
dealloc(newmem)
 
Last edited:

Goddess Raven

Member
Joined
Jun 26, 2017
Messages
23
Reaction score
10
lol good job on the script for Items, i did mine for Respite, and just healed whenever, never ran out, started my Topic over on ******** >;D

yep your table works Wonderfully! at least for Infinite items, everything's at 99 when used firs time.
 

Kraashing

New Member
Joined
Nov 30, 2014
Messages
5
Reaction score
0
While waiting for trainer, you can use my cheat engine scripts:

Infinite consumables (unlimited healing, buffs, havoc, etc):

Code:
[ENABLE]

aobscanmodule(health,Darksiders3-Win64-Shipping.exe,89 50 2C C3 48 89 54 24 10) // should be unique
alloc(newmem,$1000,"Darksiders3-Win64-Shipping.exe"+39B1FC)

label(code)
label(return)

newmem:

code:
  mov [rax+2C],(int)99
  ret
  mov [rsp+10],rdx
  jmp return

health:
  jmp newmem
  nop
  nop
  nop
  nop
return:
registersymbol(health)

[DISABLE]

health:
  db 89 50 2C C3 48 89 54 24 10

unregistersymbol(health)
dealloc(newmem)


Infinite Souls (attribute points and shop everything):

Code:
[ENABLE]

aobscanmodule(Soul,Darksiders3-Win64-Shipping.exe,29 70 2C 33 F6) // should be unique
alloc(newmem,$1000,"Darksiders3-Win64-Shipping.exe"+397330)

label(code)
label(return)

newmem:

code:
  add [rax+2C],esi
  xor esi,esi
  jmp return

Soul:
  jmp newmem
return:
registersymbol(Soul)

[DISABLE]

Soul:
  db 29 70 2C 33 F6

unregistersymbol(Soul)
dealloc(newmem)

The first script cause a crash after the fight against Wraith if you keep it activated

Edit : Crash when green souls update the trinket
 
Last edited:

anjinggila

New Member
Joined
Oct 8, 2018
Messages
9
Reaction score
14
The first script cause a crash after the fight against Wraith if you keep it activated

Edit : Crash when green souls update the trinket

Weird.. I dont get any crash here, try play the mission further before using the inf souls.
 
Top