Memory reading doesnt work

10/07/2012 15:55 fear-x#1
Code:
<?xml version="1.0"?>

<CheatTable CheatEngineTableVersion="10">

  <CheatEntries>

    <CheatEntry>

      <Description>"max HP"</Description>

      <Color>80000008</Color>

      <VariableType>4 Bytes</VariableType>

      <Address>client.exe+103C884</Address>

      <Offsets>

        <Offset>DC</Offset>

      </Offsets>

    </CheatEntry>

  </CheatEntries>

  <UserdefinedSymbols/>

</CheatTable>
ive win7 64bit .. tryed nomad udf and winapi read process.. but both return 0

and i have kinda forgotten how to read value with offsets...

ild be happy if any1 could give me a single example with the above table :/

havent coded with memory udfs for long time now... been trying to find my answers for 5 hours now
10/07/2012 16:19 Ludder231#2
maybe this will help you
10/07/2012 16:37 fear-x#3
i want to know how to scan pointer like game.exe+3j4j5h4g with an offset like DC .. like in my first post in the table :)

writing address i dont care about that at all tbh
10/09/2012 20:14 fear-x#4
Code:
$pid = _WinAPI_OpenProcess($PROCESS_ALL_ACCESS, False, ProcessExists("client.exe"));
$pBuffer = DllStructCreate("dword");
$iRead = 0;
$cur = 0x103C960;
 _WinAPI_ReadProcessMemory($pid, $cur, DllStructGetPtr($pBuffer), 4, $iRead)

  GUICtrlSetData($Label_1, DllStructGetData($pBuffer, 1))
ive gotten this much.. but i cant get it to work... i dont get anything and this is without offset... ive gt an offset for thiss too which is
Code:
0xDC
any help ?

#bump
please help ?