lai32290 Newbie cheater
Reputation: 0
Joined: 12 Sep 2011 Posts: 10
|
Posted: Wed Aug 01, 2012 9:33 pm Post subject: How I can make script to game of facebook? |
|
|
Fist, i'm so sorry, my english is so bad, please, I'm sorry i you can't understand what idea I want express
This script is No cost of Plants vs Zombies, I make this with code injection.
| Code: | [ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048) //2kb should be enough
label(returnhere)
label(originalcode)
label(exit)
newmem: //this is allocated memory, you have read,write,execute access
//place your code here
originalcode:
nop
exit:
jmp returnhere
"PlantsVsZombies.exe"+1E6E0:
jmp newmem
nop
returnhere:
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
"PlantsVsZombies.exe"+1E6E0:
mov [edi+00005578],esi
//Alt: db 89 B7 78 55 00 00 |
But.... now I want make a script to a game of facebook, I can modify this value with CE and with script, but when I reflash the game page, address of date is modified...so my script stop work....
I think the problem is "process"... in my script of plants vs zombies, I see this code...."PlantsVsZombies.exe"+1E6E0:
In code of facebook game, is a address in this place...
So...how I can solve this problem?
|
|