Jump to content

Base dll address


oMBRa
 Share

Recommended Posts

I scanned the memory of a game with cheat engine and I found this static address: ''Game.dll+A9DD34'', so I used Szhlopp UDF to get base address, then I did Game.dll (''00400000'') + ''A9DD34' and I get this:

''00E9DD1C'', but the very address is ''6FA9DD34'', so how to solve this problem?

link to UDF: http://www.autoitscript.com/forum/index.ph...=78834&st=0

Link to comment
Share on other sites

Szhlopp's UDF obviously doesn't return the same base address as Cheat Engine.

Check whether or not "Game.dll"'s base address (0x6F000000) is static by checking the value a couple of times and also restarting the game. If it is, just use a static pointer (0x6FA9DD34).

If not, could you tell what "Game.dll" is, if it's injected, etc.

Link to comment
Share on other sites

Sorry about the double post.. Came just exactly too late for edit. Try changing these things:

Local $iv_Address = 0x00100000

to 0x05000000

and

If Hex($iv_Address) = "01000000" Then ExitLoop

to "90000000"

Good luck!

I already did it , but is like that the base address is from 00400000 to 76000000
Link to comment
Share on other sites

I meant something like this:

$value1 = 0x00400000
$value2 = 0xA9DD34

$added = $value1 + $value2
$bit = BitOR ($value1,$value2)

MsgBox (0, "",  "Value 1 = " & $value1 & @CR & _
                "Value 2 = " & $value2 & @CR & _
                "Added = " & $added & @CR & _
                "BitOr = " & $bit & @CR & _
                "Hex = " & Hex ($bit,8))

You need to double check your offsets IMO... :mellow:

Link to comment
Share on other sites

  • 4 years later...
  • Moderators

truongthingqn, please see the forum rules in the lower right corner of this (and every) forum page. Things have changed since this thread began; game automation is no longer supported on the forum.

 

This is also why we do not encourage resurrecting 5 year old posts ;)

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

Link to comment
Share on other sites

  • Moderators

truongthinhqn,

Go and read my post in your own thread and do not necro-post in threads which are against the current Forum rules. :naughty:

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...