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

Ask about cheats/tables for single player games here
Post Reply
Kerus
Expert Cheater
Expert Cheater
Posts: 89
Joined: Tue Jan 29, 2019 1:28 pm
Reputation: 21

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

Post 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.

mitsu80
Expert Cheater
Expert Cheater
Posts: 78
Joined: Wed Jan 10, 2018 6:14 pm
Reputation: 6

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

Post by mitsu80 »

free card removal and upgrades would be much appreciated

Ubykh
Cheater
Cheater
Posts: 46
Joined: Fri Mar 03, 2017 8:42 am
Reputation: 1

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

Post by Ubykh »

Second that.
Anyform of GodMode too :)

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

User avatar
VampTY
Table Makers
Table Makers
Posts: 809
Joined: Tue Mar 05, 2019 10:52 am
Reputation: 1050

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

Post 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!

User avatar
cfemen
RCE Fanatics
RCE Fanatics
Posts: 874
Joined: Fri Feb 15, 2019 5:45 pm
Reputation: 1496

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

Post 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 ;)
Attachments
Dungeontop.CT
(100.62 KiB) Downloaded 169 times

Kerus
Expert Cheater
Expert Cheater
Posts: 89
Joined: Tue Jan 29, 2019 1:28 pm
Reputation: 21

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

Post 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.
Last edited by Kerus on Fri Jan 24, 2020 8:27 am, edited 1 time in total.

Kerus
Expert Cheater
Expert Cheater
Posts: 89
Joined: Tue Jan 29, 2019 1:28 pm
Reputation: 21

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

Post 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.

mitsu80
Expert Cheater
Expert Cheater
Posts: 78
Joined: Wed Jan 10, 2018 6:14 pm
Reputation: 6

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

Post by mitsu80 »

@Kerus 15 is the max level

Ubykh
Cheater
Cheater
Posts: 46
Joined: Fri Mar 03, 2017 8:42 am
Reputation: 1

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

Post 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)

User avatar
cfemen
RCE Fanatics
RCE Fanatics
Posts: 874
Joined: Fri Feb 15, 2019 5:45 pm
Reputation: 1496

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

Post 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 :)

C-silva
What is cheating?
What is cheating?
Posts: 1
Joined: Tue Jun 23, 2020 3:46 pm
Reputation: 0

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

Post by C-silva »

qual é essa versao o meu jogo é 1.29

Post Reply

Who is online

Users browsing this forum: Hecate59, UnKn0wnEd