View previous topic :: View next topic |
Author |
Message |
Mikakos How do I cheat?
Reputation: 0
Joined: 26 Jun 2014 Posts: 3
|
Posted: Thu Jun 26, 2014 7:00 am Post subject: Trainer for fb games |
|
|
Hello, i was wondering if there is a tutorial on how to make trainers for facebook games such as Candy Crush, Pepper Panic etc. I know how to change values etc. but i cant make a trainer to work. I used pointers and everything but the adress keep changing everytime i refresh the game.Tnks
|
|
Back to top |
|
 |
Rissorr Master Cheater
Reputation: 3
Joined: 17 Sep 2013 Posts: 273 Location: Israel!
|
|
Back to top |
|
 |
daspamer Grandmaster Cheater Supreme
Reputation: 54
Joined: 13 Sep 2011 Posts: 1588
|
Posted: Thu Jun 26, 2014 4:10 pm Post subject: |
|
|
You're wrong here.
We do not support multiplayer games hacking.
Candy Crush is not exactly a multiplayer game.
Also you can use trainer (I have plenty of them) for online game (Non multiplayer).
Pointer won't work, but aobscan will.
_________________
I'm rusty and getting older, help me re-learn lua. |
|
Back to top |
|
 |
Mikakos How do I cheat?
Reputation: 0
Joined: 26 Jun 2014 Posts: 3
|
Posted: Fri Jun 27, 2014 6:23 am Post subject: |
|
|
Tnks DaSpammer but i couldnt make it to work, thats why i would like a tutorial especially for facebook games, cause at offline games its easy to be made.I have trainer from flashhacking so i know it can exist trainer for fb games. Tnx
|
|
Back to top |
|
 |
daspamer Grandmaster Cheater Supreme
Reputation: 54
Joined: 13 Sep 2011 Posts: 1588
|
|
Back to top |
|
 |
Rissorr Master Cheater
Reputation: 3
Joined: 17 Sep 2013 Posts: 273 Location: Israel!
|
Posted: Fri Jun 27, 2014 11:08 am Post subject: |
|
|
DaSpamer wrote: |
You're wrong here.
We do not support multiplayer games hacking.
Candy Crush is not exactly a multiplayer game.
Also you can use trainer (I have plenty of them) for online game (Non multiplayer).
Pointer won't work, but aobscan will. |
OOPS Im sorry XD
and also how DaSpammer said:
DaSpammer wrote: | Do code injections (Aob scan, instead of static address..). |
I agree, you cant use in this situation pointer/static address (thats the same), you should use AA and AoB good luck!
|
|
Back to top |
|
 |
Mikakos How do I cheat?
Reputation: 0
Joined: 26 Jun 2014 Posts: 3
|
Posted: Fri Jun 27, 2014 1:03 pm Post subject: |
|
|
So i made this but it doesnt work, what is wrong?
Code: | [ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048)
label(returnhere)
label(originalcode)
label(exit)
aobscan(AddressAob,89 73 20 8B 73 08)
label(Address)
registersymbol(Address)
newmem: //this is allocated memory, you have read,write,execute access
//
originalcode:
mov [ebx+20],esi
mov esi,[ebx+08]
exit:
jmp returnhere
AddressAob:
Address: //16227DAC:
jmp newmem
nop
returnhere:
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
Address: //16227DAC:
mov [ebx+20],esi
mov esi,[ebx+08]
//Alt: db 89 73 20 8B 73 08 |
|
|
Back to top |
|
 |
NanoByte Expert Cheater
Reputation: 1
Joined: 13 Sep 2013 Posts: 222
|
Posted: Fri Jun 27, 2014 1:27 pm Post subject: |
|
|
your scripts is running the original code. so game works perfectly
if you are trying to nope the code then remove this line
AddressAob:
Address: //16227DAC:
jmp newmem // This <-----
nop
returnhere:
|
|
Back to top |
|
 |
|