quick look
Pause/Settings Scripts -> if Pause Scripts is activ you can execute the follow child scripts:
-Instant Win Fight
-Revive (use in main menu after your hero died, game will revive him and you can choose continue)
-Instant Level Up +1
-Add Every Card To The Players Deck
-Reveal Full Map
-Add Treasure +1
-Unlock All Achievements
-Add Gold (For Menu/Create Hero) -
Note : gold display value will not be instantly updated!
if you have a child script activated -> go
ingame into the
Settings menu, then it will be executed!
after execution deactivate the child script!
and dont activate multiple pause scripts at once!
Free Hero/Cards +Ignore Achievements
You can buy Heros+Cards regardless of your gold (while new game menu )
it also bypasses the achievement lock
Note : game maybe crashes if you are starting a new game with a cheated card -> restart the game and the card will still be unlocked and it should now work without problems.
alternative you can use
Add Gold +
Unlock All Achievements to unlock all the things you want.
Free Shop
-as title says
100% Sneak Chance
-as title says
ok thats it, i didnt look for round values like turns or card health and so on
i was only interested in unlocking everything xD
like
VampTY already said -> everything is 4 byte
simple search for your mana/hero/card-health and you will find it

my table is only for the not so easy things
//
VampTY wrote: ↑Thu Jan 23, 2020 7:35 pm
Or do a cmp and you're good..if you'd make some script, is easy enough, since is mono!
yeah
Code: Select all
aobscanregion(aobWriteHP,Unit:SufferDamage,Unit:SufferDamage+300,41 89 85 AC 00 00 00) // should be unique
alloc(newmem2,$1000,aobWriteHP)
label(code2)
label(return2)
label(Warrior)
label(Mage)
newmem2:
code2:
sub rsp,30
push rcx
push rdx
push rax
mov rcx,r13
add rcx,18
mov rcx,[rcx]
add rcx,14
mov rdx,Warrior
call wcscmp
cmp eax,0
je IsPlayer
mov rcx,r13
add rcx,18
mov rcx,[rcx]
add rcx,14
mov rdx,Mage
call wcscmp
cmp eax,0
je IsPlayer
pop rax
pop rdx
pop rcx
add rsp,30
mov [r13+000000AC],eax
jmp return2
IsPlayer:
pop rax
pop rdx
pop rcx
add rsp,30
jmp return2
Warrior:
db 57 00 61 00 72 00 72 00 69 00 6F 00 72 00 30 00 31 00 00 00
Mage:
db 4D 00 61 00 67 00 65 00 30 00 31 00 00
aobWriteHP:
jmp newmem2
nop 2
return2:
registersymbol(aobWriteHP)
[DISABLE]
aobWriteHP:
db 41 89 85 AC 00 00 00
unregistersymbol(aobWriteHP)
dealloc(newmem2)
cmp to get god mode for the player hero

i guess for Beginners is the search for the 4 Byte value better xD
@everyone:
if you want to use this god script, copy n paste it to the table
