Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


[HELP REQUEST] Creating a CT or trainer for Dungeon blitz

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Cheat Engine
View previous topic :: View next topic  
Author Message
naftiaziz
How do I cheat?
Reputation: 0

Joined: 23 Jun 2016
Posts: 3

PostPosted: Thu Jun 23, 2016 6:36 am    Post subject: [HELP REQUEST] Creating a CT or trainer for Dungeon blitz Reply with quote

I need some help to hack Dungeon blitz I want to give myself gold and mammoth idols , infinite energy or mana , level and god-mode. I already made it to hack many games single-player and online I hacked GTA 5 online but this game ! .. Crying or Very sad
If anyone know how to cheat in this game reply please .

Game: Dungeon blitz
Platform: PC
Thanks for advance .
Crying or Very sad
Back to top
View user's profile Send private message
zm0d
Master Cheater
Reputation: 7

Joined: 06 Nov 2013
Posts: 423

PostPosted: Thu Jun 23, 2016 8:00 am    Post subject: Reply with quote

Hey bud,

checked out the game. It use some clientside checks, if the health value is valid (stores a temp value and checks if the health value got manipulated... then yo uget disconnected from the game). I build you a code injection script (AOB method) that enables godmode for your character. Enjoy Smile (downlaod or copy&paste)

EDIT: Whooops... sorry fixed it. Little bug with the jump.
Edit2: Okay enemies have godmode, too. but you should able to fix that in the script. Check out data structure and add a compare statement.


Code:

{ Game   : FlashPlayerPlugin_22_0_0_192.exe
  Version:
  Date   : 2016-06-23
  Author : zm0d

  This script does blah blah blah
}

[ENABLE]

aobscan(INJECT,2B DF 89 5E 1C E9 4A) // should be unique
alloc(newmem,$1000)

label(code)
label(return)

newmem:

code:
  sub ebx,edi // original
  mov [esi+1C],ebx // original
  mov ebx,0 // set damage to 0
  push eax // save eax
  mov eax,[esi+2c] // get max health
  mov [esi+1c],eax // set current health to max health
  pop eax // restore eax
  jmp return

INJECT:
  jmp code
return:
registersymbol(INJECT)

[DISABLE]

INJECT:
  db 2B DF 89 5E 1C

unregistersymbol(INJECT)
dealloc(newmem)

{
// ORIGINAL CODE - INJECTION POINT: 206264B4

20626497: 89 BD 0C FE FF FF  -  mov [ebp-000001F4],edi
2062649D: 8B 43 04           -  mov eax,[ebx+04]
206264A0: 83 EC 04           -  sub esp,04
206264A3: 56                 -  push esi
206264A4: 6A 01              -  push 01
206264A6: 53                 -  push ebx
206264A7: FF D0              -  call eax
206264A9: 83 C4 10           -  add esp,10
206264AC: E9 CF FE FF FF     -  jmp 20626380
206264B1: 8B 5E 1C           -  mov ebx,[esi+1C]
// ---------- INJECTING HERE ----------
206264B4: 2B DF              -  sub ebx,edi
206264B6: 89 5E 1C           -  mov [esi+1C],ebx
// ---------- DONE INJECTING  ----------
206264B9: E9 4A FF FF FF     -  jmp 20626408
206264BE: 8D 49 64           -  lea ecx,[ecx+64]
206264C1: 8D 95 30 FE FF FF  -  lea edx,[ebp-000001D0]
206264C7: E8 14 0C CF EF     -  call NPSWF32_22_0_0_192.dll+7F70E0
206264CC: 8B 58 10           -  mov ebx,[eax+10]
206264CF: 85 DB              -  test ebx,ebx
206264D1: 0F 84 9F 40 00 00  -  je 2062A576
206264D7: 8B 4B 20           -  mov ecx,[ebx+20]
206264DA: 8B 9D 68 FE FF FF  -  mov ebx,[ebp-00000198]
206264E0: 85 C9              -  test ecx,ecx
}



godmode_dungeon-blitz.CEA
 Description:

Download
 Filename:  godmode_dungeon-blitz.CEA
 Filesize:  1.84 KB
 Downloaded:  539 Time(s)


godmode_dungeon-blitz.CEA
 Description:

Download
 Filename:  godmode_dungeon-blitz.CEA
 Filesize:  1.67 KB
 Downloaded:  381 Time(s)

Back to top
View user's profile Send private message
naftiaziz
How do I cheat?
Reputation: 0

Joined: 23 Jun 2016
Posts: 3

PostPosted: Fri Jun 24, 2016 3:28 am    Post subject: Reply with quote

zm0d wrote:
Hey bud,

checked out the game. It use some clientside checks, if the health value is valid (stores a temp value and checks if the health value got manipulated... then yo uget disconnected from the game). I build you a code injection script (AOB method) that enables godmode for your character. Enjoy Smile (downlaod or copy&paste)

EDIT: Whooops... sorry fixed it. Little bug with the jump.
Edit2: Okay enemies have godmode, too. but you should able to fix that in the script. Check out data structure and add a compare statement.


Code:

{ Game   : FlashPlayerPlugin_22_0_0_192.exe
  Version:
  Date   : 2016-06-23
  Author : zm0d

  This script does blah blah blah
}

[ENABLE]

aobscan(INJECT,2B DF 89 5E 1C E9 4A) // should be unique
alloc(newmem,$1000)

label(code)
label(return)

newmem:

code:
  sub ebx,edi // original
  mov [esi+1C],ebx // original
  mov ebx,0 // set damage to 0
  push eax // save eax
  mov eax,[esi+2c] // get max health
  mov [esi+1c],eax // set current health to max health
  pop eax // restore eax
  jmp return

INJECT:
  jmp code
return:
registersymbol(INJECT)

[DISABLE]

INJECT:
  db 2B DF 89 5E 1C

unregistersymbol(INJECT)
dealloc(newmem)

{
// ORIGINAL CODE - INJECTION POINT: 206264B4

20626497: 89 BD 0C FE FF FF  -  mov [ebp-000001F4],edi
2062649D: 8B 43 04           -  mov eax,[ebx+04]
206264A0: 83 EC 04           -  sub esp,04
206264A3: 56                 -  push esi
206264A4: 6A 01              -  push 01
206264A6: 53                 -  push ebx
206264A7: FF D0              -  call eax
206264A9: 83 C4 10           -  add esp,10
206264AC: E9 CF FE FF FF     -  jmp 20626380
206264B1: 8B 5E 1C           -  mov ebx,[esi+1C]
// ---------- INJECTING HERE ----------
206264B4: 2B DF              -  sub ebx,edi
206264B6: 89 5E 1C           -  mov [esi+1C],ebx
// ---------- DONE INJECTING  ----------
206264B9: E9 4A FF FF FF     -  jmp 20626408
206264BE: 8D 49 64           -  lea ecx,[ecx+64]
206264C1: 8D 95 30 FE FF FF  -  lea edx,[ebp-000001D0]
206264C7: E8 14 0C CF EF     -  call NPSWF32_22_0_0_192.dll+7F70E0
206264CC: 8B 58 10           -  mov ebx,[eax+10]
206264CF: 85 DB              -  test ebx,ebx
206264D1: 0F 84 9F 40 00 00  -  je 2062A576
206264D7: 8B 4B 20           -  mov ecx,[ebx+20]
206264DA: 8B 9D 68 FE FF FF  -  mov ebx,[ebp-00000198]
206264E0: 85 C9              -  test ecx,ecx
}



The game crash sometime but the cheat worked thanks zm0d you are the best Very Happy
Back to top
View user's profile Send private message
alexchairman
How do I cheat?
Reputation: 0

Joined: 24 Jun 2016
Posts: 1
Location: chennai

PostPosted: Fri Jun 24, 2016 11:20 pm    Post subject: please help to how to use cae file Reply with quote

Sir,

Please tell me how to use that cea file . step by step

i am new this forums

Thank's advance

Alexchairman
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> Cheat Engine All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites