| View previous topic :: View next topic |
| Author |
Message |
Onelio Newbie cheater
Reputation: 0
Joined: 22 Mar 2016 Posts: 20
|
Posted: Thu Mar 24, 2016 5:15 pm Post subject: Passing from HxD to CE |
|
|
Hello, I've this domain that I've found in the HxD editor.
i.gyazo(.)com/07565221b8d7319b4dc99e2bfe268278.png
I want to pass it to CE but I don't really know how to do that or even if this is possible.
Thnks for your answer!
|
|
| Back to top |
|
 |
Zanzer I post too much
Reputation: 126
Joined: 09 Jun 2013 Posts: 3278
|
Posted: Thu Mar 24, 2016 5:24 pm Post subject: |
|
|
| What do you mean you want to pass it to CE?
|
|
| Back to top |
|
 |
Onelio Newbie cheater
Reputation: 0
Joined: 22 Mar 2016 Posts: 20
|
Posted: Thu Mar 24, 2016 5:26 pm Post subject: |
|
|
Add it as a pointer more and change it while executing
|
|
| Back to top |
|
 |
Zanzer I post too much
Reputation: 126
Joined: 09 Jun 2013 Posts: 3278
|
Posted: Thu Mar 24, 2016 5:33 pm Post subject: |
|
|
Use those bytes right there to scan for it
| Code: | [ENABLE]
aobscan(someurl,64 6F 73 79 64 6F 73 65 73 2E)
registersymbol(someurl)
[DISABLE]
unregistersymbol(someurl) |
Create a table record and give it an address of "someurl"
|
|
| Back to top |
|
 |
Onelio Newbie cheater
Reputation: 0
Joined: 22 Mar 2016 Posts: 20
|
Posted: Thu Mar 24, 2016 5:49 pm Post subject: |
|
|
O thnks!
One little question more.. If i want to implement it in a program.. How can I export this data? (If it's possible)
Just want to take a Pointer, offset for then using it with WriteMemory
|
|
| Back to top |
|
 |
Zanzer I post too much
Reputation: 126
Joined: 09 Jun 2013 Posts: 3278
|
Posted: Thu Mar 24, 2016 6:22 pm Post subject: |
|
|
Did you try simply doing a search in CE for the full string?
Probably starting with "http:" not displayed in the screenshot.
If the record appears green in the search results, it's static.
Add it to the table and then look at the address, CE will tell you the pointer.
Otherwise, do a pointer scan using CE's pointer scanner.
|
|
| Back to top |
|
 |
Onelio Newbie cheater
Reputation: 0
Joined: 22 Mar 2016 Posts: 20
|
Posted: Thu Mar 24, 2016 6:51 pm Post subject: |
|
|
| I've the address in the list, but how will CE tell me the pointer?
|
|
| Back to top |
|
 |
Zanzer I post too much
Reputation: 126
Joined: 09 Jun 2013 Posts: 3278
|
Posted: Thu Mar 24, 2016 6:55 pm Post subject: |
|
|
Double click the address. Does it already show "game.exe+blahblah"?
Otherwise, right-click it and "pointer scan for this address".
Good luck!
And when you do these things, you need to make sure you're at the beginning of the string, unlike your screenshot.
|
|
| Back to top |
|
 |
Onelio Newbie cheater
Reputation: 0
Joined: 22 Mar 2016 Posts: 20
|
Posted: Thu Mar 24, 2016 7:07 pm Post subject: |
|
|
Ok it's not green.. But.. it's a static one, I can edit it with HxD and it's inside the program... Right?
I just tryed the "pointer scan for this address" before and it always show 0 at the second try
|
|
| Back to top |
|
 |
Zanzer I post too much
Reputation: 126
Joined: 09 Jun 2013 Posts: 3278
|
Posted: Thu Mar 24, 2016 10:12 pm Post subject: |
|
|
It's not static unless it's always the same distance from the module's base address. Ctrl+Alt+L
| Code: | local address = 0x00000000 -- change to the URL's memory address
local modules = enumModules()
for i=1,#modules do
local module = modules[i]
local min = module.Address
local max = getModuleSize(module.Name)
if max then
max = max + min
if address >= min and address <= max then
print(module.Name.."+"..string.format("%X",address-min))
end
end
end |
Using CE's pointer scan, bump up the maximum offset value and max level.
If all else fails, realize that you're not yet good enough to be coding your own trainers.
Stick to Cheat Engine tables.
|
|
| Back to top |
|
 |
Onelio Newbie cheater
Reputation: 0
Joined: 22 Mar 2016 Posts: 20
|
Posted: Fri Mar 25, 2016 3:01 am Post subject: |
|
|
| Found it! Thnks
|
|
| Back to top |
|
 |
|