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
9.44 addresses and changes - ONLY HERE! - Page 10
Page 10 of 13 FirstFirst ... 89101112 ... LastLast
Results 91 to 100 of 127

Thread: 9.44 addresses and changes - ONLY HERE!

  1. #91
    Moderator
    Join Date
    Oct 2009
    Posts
    482

    RE: 9.44 addresses and changes - ONLY HERE!

    I didn't see those addresses here:
    Code:
    int dialogPointer = 0x7AC5D0;
    int dialogCaption = 0x54;
    int RedrawWidth = Memory.AlignAddress(0x98B2B4); //9.44
    int RedrawHeight = RedrawWidth + 4; //9.44
    Redraw values give us exact dimensions of Tibia's window (without borders added by Windows)

  2. #92

    RE: 9.44 addresses and changes - ONLY HERE!

    Hello,
    I'm finding simple way to get hp addres in Tibia memory but I haven't any idea how find maxhp addres.
    Do you have some way?

  3. #93
    Senior Member
    Join Date
    Jan 2008
    Location
    Cambridge, England
    Posts
    725

    RE: 9.44 addresses and changes - ONLY HERE!

    Quote Originally Posted by Miziak
    Hello,
    I'm finding simple way to get hp addres in Tibia memory but I haven't any idea how find maxhp addres.
    Do you have some way?
    Get voc, get level, make formula to calculate it.

  4. #94

    RE: 9.44 addresses and changes - ONLY HERE!

    Max health is saved in tibia memory. I'm finding addres in forum but I would like to be able to find it in tibia memory.
    Why? Because in ots will be custom vocation for example

  5. #95
    Super Moderator
    Join Date
    May 2007
    Posts
    1,191

    RE: 9.44 addresses and changes - ONLY HERE!

    Do these steps:
    Find HP address -> find XOR address -> search for XORed max HP

    edit: you can do this with any XORed value really, you just need to know the real value and the address of the XOR value

  6. #96

    RE: 9.44 addresses and changes - ONLY HERE!

    Quote Originally Posted by Blaster_89
    Do these steps:
    Find HP address -> find XOR address -> search for XORed max HP

    edit: you can do this with any XORed value really, you just need to know the real value and the address of the XOR value
    I'm not understanding.
    I have HP address and and XOR address, what should I do with them.

    This:
    Quote Originally Posted by Blaster_89
    search for XORed max HP
    I say little for me, please expand.

    edit:
    In C++:
    Code:
    int maxhpvalue = my_max_hp^_xor;
    And this value search in cheat engine, I have address thanks Blaster_89!

  7. #97
    Super Moderator
    Join Date
    May 2007
    Posts
    1,191

    RE: 9.44 addresses and changes - ONLY HERE!

    Quote Originally Posted by Miziak
    Quote Originally Posted by Blaster_89
    Do these steps:
    Find HP address -> find XOR address -> search for XORed max HP

    edit: you can do this with any XORed value really, you just need to know the real value and the address of the XOR value
    I'm not understanding.
    I have HP address and and XOR address, what should I do with them.

    This:
    Quote Originally Posted by Blaster_89
    search for XORed max HP
    I say little for me, please expand.
    http://en.wikipedia.org/wiki/XOR_cipher
    in C# this would look something like this:
    [code=c#]
    int XORvalue = Memory.ReadInt32(xoraddress);
    int maxhpXORed = realmaxhp ^ XORvalue; // realmaxhp = what you see in the client
    [/code]
    Then search in Cheat Engine or whatever for maxhpXORed.

  8. #98

    RE: 9.44 addresses and changes - ONLY HERE!

    Thanks very much, with mana is similarly??

    edit:
    PlayerID address is experience address + number, this number is constant??

  9. #99
    Senior Member
    Join Date
    Jul 2008
    Posts
    124

    RE: 9.44 addresses and changes - ONLY HERE!

    hotkeystuff updated to 9.44 i didnt see any here, so i decided to post.
    [code=C#]
    Hotkey.SendAutomaticallyStart = 0x7B5C14 - 0x400000 + baseAdress;
    Hotkey.SendAutomaticallyStep = 0x1;
    Hotkey.TextStart = 0x7B3748 - 0x400000 + baseAdress;
    Hotkey.TextStep = 0x100;
    Hotkey.ObjectStart = 0x7B5C64 - 0x400000 + baseAdress;
    Hotkey.ObjectStep = 0x4;
    Hotkey.ObjectUseTypeStart = 0x7B5B78 - 0x400000 + baseAdress;
    Hotkey.ObjectUseTypeStep = 0x4;
    Hotkey.MaxHotkeys = 36;[/code]

  10. #100

    RE: 9.44 addresses and changes - ONLY HERE!

    Please could someone get me the address of these commands:
    Code:
     Dim clickId As Integer = &H9B34B4
        Dim bliststart As Integer = &H7E4F98
        Dim PlayerId As Integer = &H81CEAC

Posting Permissions

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