View previous topic :: View next topic |
Author |
Message |
Meiyoh Master Cheater
Reputation: 1
Joined: 14 Mar 2015 Posts: 402
|
Posted: Thu Nov 10, 2016 3:51 am Post subject: How to get address and paste it as a Value? |
|
|
I need on Hotkey press to get address from a pointer and paste it in a structure
eg
Pointer Address
Structure:
Address to Use (Pointer Address goes here as a value)
when I press a hotkey.
Thank you.
_________________
I am the forgotten one the dead one. |
|
Back to top |
|
 |
Meiyoh Master Cheater
Reputation: 1
Joined: 14 Mar 2015 Posts: 402
|
Posted: Wed Nov 16, 2016 7:54 am Post subject: |
|
|
Will someone reply?
_________________
I am the forgotten one the dead one. |
|
Back to top |
|
 |
++METHOS I post too much
Reputation: 92
Joined: 29 Oct 2010 Posts: 4197
|
Posted: Wed Nov 16, 2016 7:56 am Post subject: |
|
|
Not really sure what you're asking, but why can't you just use injection to automate everything?
|
|
Back to top |
|
 |
ParkourPenguin I post too much
Reputation: 152
Joined: 06 Jul 2014 Posts: 4703
|
Posted: Wed Nov 16, 2016 8:29 am Post subject: |
|
|
I don't know what you're asking either, but interpreting it literally:
Code: | createHotkey(function(hk) writeInteger('structure+A4', getAddress('[[game.exe+1234]+15C]+24')) end, VK_F1) |
_________________
I don't know where I'm going, but I'll figure it out when I get there. |
|
Back to top |
|
 |
Meiyoh Master Cheater
Reputation: 1
Joined: 14 Mar 2015 Posts: 402
|
Posted: Wed Nov 16, 2016 8:50 am Post subject: |
|
|
ParkourPenguin wrote: | I don't know what you're asking either, but interpreting it literally:
Code: | createHotkey(function(hk) writeInteger('structure+A4', getAddress('[[game.exe+1234]+15C]+24')) end, VK_F1) |
|
Well I ask to get address found by pointer and paste it in a structure address as value so It updates the structure with the address from the pointer.
Or simpler:
Get Address from Pointer Address
paste it as a value in a chosen address
EG
Pointer for Ammo: Get's the address pointed by the pointer
Structure Address to use: Paste the Address here in the value field.
_________________
I am the forgotten one the dead one. |
|
Back to top |
|
 |
++METHOS I post too much
Reputation: 92
Joined: 29 Oct 2010 Posts: 4197
|
Posted: Wed Nov 16, 2016 8:53 am Post subject: |
|
|
Use injection. You can eliminate the need for any pointers and write a script that will populate whatever structure that you are trying to build. By hooking an instruction that handles one of the addresses for that structure, you can automate everything, in real-time.
|
|
Back to top |
|
 |
ParkourPenguin I post too much
Reputation: 152
Joined: 06 Jul 2014 Posts: 4703
|
Posted: Wed Nov 16, 2016 9:02 am Post subject: |
|
|
I still don't know what you're asking for that isn't already implemented.
If you're talking about the structure dissect window or a memory record, the string in the address field is run through CE's standard address parser, so feel free to put the pointer path in just as it is.
I do agree that code injection is more reliable than pointers.
_________________
I don't know where I'm going, but I'll figure it out when I get there. |
|
Back to top |
|
 |
|