Deprecated: The behavior of unparenthesized expressions containing both '.' and '+'/'-' will change in PHP 8: '+'/'-' will take a higher precedence in /home/iano/public_html/tpforums-vb5/forum/includes/class_core.php on line 5842

PHP Warning: Use of undefined constant MYSQL_NUM - assumed 'MYSQL_NUM' (this will throw an Error in a future version of PHP) in ..../includes/init.php on line 165

PHP Warning: Use of undefined constant MYSQL_ASSOC - assumed 'MYSQL_ASSOC' (this will throw an Error in a future version of PHP) in ..../includes/init.php on line 165

PHP Warning: Use of undefined constant MYSQL_BOTH - assumed 'MYSQL_BOTH' (this will throw an Error in a future version of PHP) in ..../includes/init.php on line 165

PHP Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in ..../includes/functions_navigation.php on line 588

PHP Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in ..../includes/functions_navigation.php on line 612

PHP Warning: Use of undefined constant misc - assumed 'misc' (this will throw an Error in a future version of PHP) in ..../global.php(29) : eval()'d code(6) : eval()'d code on line 1

PHP Warning: Use of undefined constant index - assumed 'index' (this will throw an Error in a future version of PHP) in ..../global.php(29) : eval()'d code(6) : eval()'d code on line 1

PHP Warning: Use of undefined constant misc - assumed 'misc' (this will throw an Error in a future version of PHP) in ..../includes/class_bootstrap.php(1422) : eval()'d code(4) : eval()'d code on line 1

PHP Warning: Use of undefined constant index - assumed 'index' (this will throw an Error in a future version of PHP) in ..../includes/class_bootstrap.php(1422) : eval()'d code(4) : eval()'d code on line 1

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6
Addresses 9.82 - Page 3
Page 3 of 4 FirstFirst 1234 LastLast
Results 21 to 30 of 37

Thread: Addresses 9.82

  1. #21
    Senior Member
    Join Date
    Jul 2011
    Posts
    120
    Quote Originally Posted by stryku View Post
    Ok. Sorry, i had busy weekend. This is my example how i do that:
    Code:
    DWORD idOffset = 0x0, blStep =  0x0, adrBlStart = 0x550008 + adresy.adrBase; //adrBase is base address of tibia
    int id;
    
    for(int i = 0; i < 1300; i++)
    {
    	ReadProcessMemory(tibia.uchwytProcesu, (LPCVOID)(adrBlStart + blStep + idOffset), &id, sizeof(int);
    	if(id != 0)
    		cout<<id<<"\n";
    	
    	blStep += 0xB0;
    }
    and that isn't work. Idk why?
    This is in c++
    PHP Code:
    int main(int argcchar *argv[])
    {
        
    HWND hHWND FindWindow("TibiaClient"NULL); 
        
    DWORD processId;
        
    GetWindowThreadProcessId(hHWND, &processId);
        
    HANDLE process OpenProcess(PROCESS_ALL_ACCESSFALSEprocessId);
        
        
    DWORD idOffset 0x0,
        
    blStep =  0xB0,
        
    blMaxCreatures 1300,
        
    adrBlStart 0x950008,
        
    blEnd adrBlStart + (blStep blMaxCreatures);
        
        
    int id;
        for (
    int i = (int)adrBlStart<= blEnd+= (int)blStep)
        {
               
    ReadProcessMemory(process, (PCVOID)(idOffset), &id4NULL);
            if(
    id != 0)
                  
    cout<<id<<"\n";
        }
        
        
    CloseHandle(process);
        
    system("PAUSE");
        return 
    EXIT_SUCCESS;


  2. #22
    Junior Member
    Join Date
    Jan 2013
    Posts
    9
    Quote Originally Posted by Kush View Post
    PHP Code:
    int main(int argcchar *argv[])
    {
        
    HWND hHWND FindWindow("TibiaClient"NULL); 
        
    DWORD processId;
        
    GetWindowThreadProcessId(hHWND, &processId);
        
    HANDLE process OpenProcess(PROCESS_ALL_ACCESSFALSEprocessId);
        
        
    DWORD idOffset 0x0,
        
    blStep =  0xB0,
        
    blMaxCreatures 1300,
        
    adrBlStart 0x950008,
        
    blEnd adrBlStart + (blStep blMaxCreatures);
        
        
    int id;
        for (
    int i = (int)adrBlStart<= blEnd+= (int)blStep)
        {
               
    ReadProcessMemory(process, (PCVOID)(idOffset), &id4NULL);
            if(
    id != 0)
                  
    cout<<id<<"\n";
        }
        
        
    CloseHandle(process);
        
    system("PAUSE");
        return 
    EXIT_SUCCESS;

    Thank u man! You're great. Btw, can u tell me why my code don't work?

  3. #23
    Member
    Join Date
    Dec 2012
    Location
    Poland
    Posts
    47
    Guys, have you Cap address?

  4. #24
    and rsa adresss please

  5. #25
    Senior Member
    Join Date
    Jul 2011
    Posts
    120
    Capacity:
    Code:
    987E94 ^ 7BA090
    Last edited by Kush; 03-05-2013 at 08:24 PM.

  6. #26
    Member
    Join Date
    Dec 2012
    Location
    Poland
    Posts
    47
    Capacity address doesn't work. I try to xor it and result 0

    Cap really addr:
    Tibia.exe+587E94
    Last edited by Blues; 03-04-2013 at 09:40 PM.

  7. #27
    Senior Member
    Join Date
    Jul 2011
    Posts
    120
    Sorry, I posted the address of XOR.
    I updated my post.

  8. #28
    XTea address?

  9. #29
    Senior Member
    Join Date
    Jul 2011
    Posts
    120
    Quote Originally Posted by Maches View Post
    and rsa adresss please
    Try
    Code:
    0x72B018
    Last edited by Kush; 03-06-2013 at 07:15 PM.

  10. #30
    Bump. Does anyone have the XTea address??

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •