View previous topic :: View next topic |
Author |
Message |
careca777 Expert Cheater
Reputation: 0
Joined: 27 Jul 2013 Posts: 121
|
Posted: Wed Nov 10, 2021 10:16 am Post subject: Open Dissect window with a script |
|
|
Hi, how can i open the a window like the dissect window without having to open memory view, tools?
It would be nice to be able to open directly, with a script in the table or something.
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25796 Location: The netherlands
|
Posted: Wed Nov 10, 2021 10:44 am Post subject: |
|
|
createStructureForm(address)
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
careca777 Expert Cheater
Reputation: 0
Joined: 27 Jul 2013 Posts: 121
|
Posted: Wed Nov 10, 2021 3:53 pm Post subject: |
|
|
Thank you!
I ended up with this that i leave here for anyone who finds it useful to open the structure window with the address from clipboard.
Code: | [ENABLE]
{$lua}
local clip = readFromClipboard()
createStructureForm(clip)
createTimer(500, function() memrec.Active = false; end)
[DISABLE] |
|
|
Back to top |
|
 |
LeFiXER Grandmaster Cheater Supreme
Reputation: 20
Joined: 02 Sep 2011 Posts: 1069 Location: 0x90
|
Posted: Wed Nov 10, 2021 11:42 pm Post subject: |
|
|
No need for the local variable clip here.
Code: |
createStructureForm(readFromClipboard())
|
|
|
Back to top |
|
 |
careca777 Expert Cheater
Reputation: 0
Joined: 27 Jul 2013 Posts: 121
|
Posted: Thu Nov 11, 2021 7:05 am Post subject: |
|
|
Oh, nice. Cleaner. Thanks.
|
|
Back to top |
|
 |
LeFiXER Grandmaster Cheater Supreme
Reputation: 20
Joined: 02 Sep 2011 Posts: 1069 Location: 0x90
|
Posted: Thu Nov 11, 2021 8:36 am Post subject: |
|
|
You're welcome
|
|
Back to top |
|
 |
|