View previous topic :: View next topic |
Author |
Message |
Hooreeeyyy Cheater
Reputation: 0
Joined: 05 Dec 2012 Posts: 43
|
Posted: Fri Jun 07, 2013 1:01 pm Post subject: Magnifier on windows 7 |
|
|
Hello, I just want to be able to uncheck all 3 options with the magnifier of windows 7 (you can open it with windows + "+") like on windows xp (on windows 7 you get an error message when unchecking the last one) so when the magnifier magnify where I want it stay there whatever I do.
Easily found the address for this but when I reopen it it's not the same address anymore, from what I understood I have to use a pointer for this but, it seems that I'm not doing it the right way. In the end I just want to make a trainer with just 1 hotkey (unless I can do this just by double-clicking on the trainer) that uncheck the "follow mouse" option, can you explain me the process to do this please ? Thanks. |
|
Back to top |
|
 |
Gniarf Grandmaster Cheater Supreme
Reputation: 43
Joined: 12 Mar 2012 Posts: 1285
|
Posted: Sat Jun 08, 2013 12:10 am Post subject: |
|
|
1-Find a variable that causes the magnifier to follow your cursor when it is =1 and stops tracking when =0.
2-Right click on it->"find out what accesses..."
3-A new window will pop up with an increasing number and a line like "FFE44F2D - 83 7B 08 00 - cmp dword ptr [rbx+08],00".
4-Click stop.
5-Click "show disassembler"
6-Select the next line that starts with a "j" below the highlighted "cmp dword ptr [***],00". On my version of windows it was "Magnify.exe+14F31 - 74 0C - je Magnify.exe+14F3F"
7-Click tools->auto assemble then paste and adapt this script:
Code: | [ENABLE]
Magnify.exe+14F31: //blue address + ":"
jmp Magnify.exe+14F3F //jmp + red address
[DISABLE]
Magnify.exe+14F31: //blue address + ":"
//if "disable" means "disable the hack" to you, use this line:
je Magnify.exe+14F3F //green + red parts
//OR if "disable" means "force tracking" to you, use those 2 lines:
nop
nop
|
8-Click file->assign to current cheat table.
9-You're on your own there.
As long as your blue and red addresses look like "Magnify.exe+number" instead of a number alone this script will still work after restarting your magnifier. You'll have to update it when M$ updates this tool though. |
|
Back to top |
|
 |
Hooreeeyyy Cheater
Reputation: 0
Joined: 05 Dec 2012 Posts: 43
|
Posted: Sat Jun 08, 2013 7:09 am Post subject: |
|
|
That's it, thanks a lot. |
|
Back to top |
|
 |
|