| View previous topic :: View next topic |
| Author |
Message |
antan77 Newbie cheater
Reputation: 0
Joined: 04 Jan 2013 Posts: 13
|
Posted: Sun Nov 13, 2016 3:48 pm Post subject: Avoid multiple aobscans |
|
|
Hi,
I know its possible, but which way is the best?
For example by pressing F1 a assemblerscript should be executed. But its very slow due the aobscan. I want to store the address of the first aobscan(or scan at startup(maybe other scans too, if its faster))
THX in advance
|
|
| Back to top |
|
 |
Zanzer I post too much
Reputation: 126
Joined: 09 Jun 2013 Posts: 3278
|
|
| Back to top |
|
 |
Dark Byte Site Admin
Reputation: 473
Joined: 09 May 2003 Posts: 25912 Location: The netherlands
|
Posted: Sun Nov 13, 2016 4:43 pm Post subject: |
|
|
or just use one initializer script and for the rest use flags if it should work or not
_________________
Tools give you results. Knowledge gives you control.
Like my help? Join me on Patreon so i can keep helping |
|
| Back to top |
|
 |
antan77 Newbie cheater
Reputation: 0
Joined: 04 Jan 2013 Posts: 13
|
Posted: Mon Nov 14, 2016 2:30 am Post subject: Re |
|
|
@zanzer very nice, works fine
@Dark Byte How can I achive Flags with Hotkeys, tried to use google on Forum, but no luck. Do you have an example?
|
|
| Back to top |
|
 |
Dark Byte Site Admin
Reputation: 473
Joined: 09 May 2003 Posts: 25912 Location: The netherlands
|
Posted: Mon Nov 14, 2016 4:13 am Post subject: |
|
|
use an aa script with a hotkey set to toggle on/off(, or use an unique hotkey for on and a off seperately)
e. g
| Code: |
[enable]
godmode:
db 1
[disable]
godmode:
db 0
|
and in your init script register godmode and in the hook function check if godmode is 1 or not. If not, just execute the original code
_________________
Tools give you results. Knowledge gives you control.
Like my help? Join me on Patreon so i can keep helping |
|
| Back to top |
|
 |
|