oMBRa Posted November 19, 2008 Posted November 19, 2008 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
BrettF Posted November 19, 2008 Posted November 19, 2008 Maybe BitOr? Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
oMBRa Posted November 19, 2008 Author Posted November 19, 2008 u mean BitOr Game.dll and ''A9DD34'' ??
SuneC Posted November 19, 2008 Posted November 19, 2008 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.
SuneC Posted November 19, 2008 Posted November 19, 2008 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!
oMBRa Posted November 20, 2008 Author Posted November 20, 2008 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
BrettF Posted November 21, 2008 Posted November 21, 2008 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... Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
oMBRa Posted November 21, 2008 Author Posted November 21, 2008 I got what's the problem... ''0x00400000'' is the base memory address of the process, what I need is the base memory address of the dll... is possible to get it?
truongthinhqn Posted August 5, 2013 Posted August 5, 2013 nevermind... solved Can't you tell me how to solve this?
Moderators JLogan3o13 Posted August 5, 2013 Moderators Posted August 5, 2013 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!
Moderators Melba23 Posted August 5, 2013 Moderators Posted August 5, 2013 truongthinhqn,Go and read my post in your own thread and do not necro-post in threads which are against the current Forum rules. M23 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 columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Recommended Posts