| View previous topic :: View next topic |
| Author |
Message |
skam8 Master Cheater
Reputation: 1
Joined: 03 Oct 2006 Posts: 291 Location: Teh epic land of Canada
|
Posted: Sun May 27, 2007 10:03 am Post subject: Is This Script Ok? |
|
|
Hi, im currently learning how to hack so iu decided to hack minesweeper only because its an easy game to hack
| Code: | alloc(newmem,2048)
label(returnhere)
label(originalcode)
label(exit)
0100346e:
jmp newmem
nop
returnhere:
newmem:
add [01005194]. 4
originalcode:
exit:
jmp returnhere
|
When you right click to add a flag it increase the value by for at the place of decreasing it by 1
Is this script ok??
Also, can someone tell me how to add a disable section that i can assign it to my cheat table!
THX!
_________________
|
|
| Back to top |
|
 |
-DEViL- Expert Cheater
Reputation: 3
Joined: 21 Apr 2007 Posts: 185
|
Posted: Sun May 27, 2007 12:09 pm Post subject: |
|
|
here is:
| 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)
0100346E:
jmp newmem
nop
returnhere:
newmem: //this is allocated memory, you have read,write,execute access
//place your code here
originalcode:
add [01005194],4
exit:
jmp returnhere
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
0100346e://=address
add [01005194],eax//=original code |
|
|
| Back to top |
|
 |
skam8 Master Cheater
Reputation: 1
Joined: 03 Oct 2006 Posts: 291 Location: Teh epic land of Canada
|
Posted: Sun May 27, 2007 2:05 pm Post subject: |
|
|
Thx!!! and now can anybody give me an idea of an easy game to hack plz??
GAME HACKED:
minesweeper
freecell
pinball
and all game that come wiht windows
_________________
|
|
| Back to top |
|
 |
|