Page 1 of 1

【Spellsword Cards: DungeonTop】Anyway to cheat on this game? Need help.

Posted: Wed Jan 22, 2020 3:40 am
by Kerus
Nice EA game.
Steam:
I can't find a way to search and lock the data, like health and money, etc.
Your help will be appreciated.

Re: 【Spellsword Cards: DungeonTop】Anyway to cheat on this game? Need help.

Posted: Thu Jan 23, 2020 5:14 pm
by mitsu80
free card removal and upgrades would be much appreciated

Re: 【Spellsword Cards: DungeonTop】Anyway to cheat on this game? Need help.

Posted: Thu Jan 23, 2020 6:48 pm
by Ubykh
Second that.
Anyform of GodMode too :)

Thanks in advance , if possible, and thanks anyhow if not :)

Re: 【Spellsword Cards: DungeonTop】Anyway to cheat on this game? Need help.

Posted: Thu Jan 23, 2020 7:35 pm
by VampTY
Use DNSPY..you can easily find values and modify as you heart desires, or use my favourite, GHIDRA...in any case the life is on 4 byte, for simple searches..i mean if you have 10, search for that on VEH Debugger on Hardware Breakpoints 4..and so on after you'll get hit, then freeze it! :P Or do a cmp and you're good..if you'd make some script, is easy enough, since is mono!

Re: 【Spellsword Cards: DungeonTop】Anyway to cheat on this game? Need help.

Posted: Thu Jan 23, 2020 10:05 pm
by cfemen
quick look :D

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 :ph34r:

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 :lol:

//
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 :D
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 ;)

Re: 【Spellsword Cards: DungeonTop】Anyway to cheat on this game? Need help.

Posted: Fri Jan 24, 2020 8:21 am
by Kerus
VampTY wrote:
Thu Jan 23, 2020 7:35 pm
Use DNSPY..you can easily find values and modify as you heart desires, or use my favourite, GHIDRA...in any case the life is on 4 byte, for simple searches..i mean if you have 10, search for that on VEH Debugger on Hardware Breakpoints 4..and so on after you'll get hit, then freeze it! :P Or do a cmp and you're good..if you'd make some script, is easy enough, since is mono!
Thanks for reply. I tried before, but I didn't figure out how to find the exact name and location inside the dll file. I only used DNSPY to edit OXYGEN NOT INCLUDED's dll file before.

Re: 【Spellsword Cards: DungeonTop】Anyway to cheat on this game? Need help.

Posted: Fri Jan 24, 2020 8:25 am
by Kerus
cfemen wrote:
Thu Jan 23, 2020 10:05 pm
quick look :D

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 :ph34r:

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 :lol:

//
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 :D
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 ;)
Thanks, I only used the ALL CARDS function and some cards are OP, easily played throught the whole 3 levels, very funny game.
Level upgrade function seemed bugged, leveled up to 15 and got stuck when getting to next level, I didn't try again, maybe it's just a problem of the game itself.

Re: 【Spellsword Cards: DungeonTop】Anyway to cheat on this game? Need help.

Posted: Fri Jan 24, 2020 2:24 pm
by mitsu80
@Kerus 15 is the max level

Re: 【Spellsword Cards: DungeonTop】Anyway to cheat on this game? Need help.

Posted: Fri Jan 24, 2020 6:05 pm
by Ubykh
Hmmm, maybe I'm doing something wrong, but nothing seems to be working anymore ? (there was a quick game update yesterday evening so that might explain)

Re: 【Spellsword Cards: DungeonTop】Anyway to cheat on this game? Need help.

Posted: Fri Jan 24, 2020 9:02 pm
by cfemen
Ubykh wrote:
Fri Jan 24, 2020 6:05 pm
Hmmm, maybe I'm doing something wrong, but nothing seems to be working anymore ? (there was a quick game update yesterday evening so that might explain)
mhh unfortunately i dont have it on steam...
so it did work until yesterday evening?
or you never used my table before?
can you be more specific about "nothing seems to be working"?

can you activate the scripts?
if no -> right click(after you try to activate) on the script, there is an error code, show me that error :)

【Spellsword Cards: DungeonTop】Anyway to cheat on this game? Need help.

Posted: Fri Jun 26, 2020 4:34 am
by C-silva
qual é essa versao o meu jogo é 1.29