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 85

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.83
Results 1 to 6 of 6

Thread: Addresses 9.83

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

    Addresses 9.83

    Address list from 9.83:

    I'll add to the list as I go along, but starting out with:

    Exp: 0x3BD024
    Level: 0x3BA0CC (May be in BList entry, can't remember)
    Distance skill: 0x587E88

    Post whatever you've got, there's nothing on BlackD yet, and I can't find anything here either.

  2. #2
    Member Diego's Avatar
    Join Date
    Mar 2012
    Location
    México
    Posts
    79
    The addresses didn't change Josh, and BL doesnt have a level offset, AFAIK.
    Why don't you take advantage off the structures instead @skills, equipment, etc, instead of finding 10x the addresses that are 4/8/12 bytes away

    Like this

    Code:
    playerFist = 0x587E78 + BaseAddress;
    playerClub = playerFist + 0x04;
    playerSword = playerClub + 0x04;
    playerAxe = playerSword + 0x04;
    playerDistance = playerAxe + 0x04;
    playerShielding = playerDistance + 0x04;
    playerFishing = playerShielding + 0x04;
    
    playerEquip_Step = 0x0C;
    playerAmmo = 0x5DE624 + BaseAddress;
    playerAmmoCount = playerAmmo - 4;
    playerRing = playerAmmo + playerEquip_Step;
    playerBoots = playerRing + playerEquip_Step;
    playerLegs = playerBoots + playerEquip_Step;
    playerRight = playerLegs + playerEquip_Step;
    playerLeft = playerRight + playerEquip_Step;
    playerTorso = playerLeft + playerEquip_Step;
    playerBackpack = playerTorso + playerEquip_Step;
    playerNecklace = playerBackpack + playerEquip_Step;
    playerHead = playerNecklace + playerEquip_Step;
    Forgot to put in the link lol http://tpforums.org/forum/threads/5689-Addresses-9-82
    Last edited by Diego; 03-22-2013 at 12:14 AM.
    TibiaViewer taking AFK botting to a whole different level Sign up!.

  3. #3
    Senior Member
    Join Date
    Jan 2008
    Location
    Cambridge, England
    Posts
    725
    Quote Originally Posted by Diego View Post
    The addresses didn't change Josh, and BL doesnt have a level offset, AFAIK.
    Why don't you take advantage off the structures instead @skills, equipment, etc, instead of finding 10x the addresses that are 4/8/12 bytes away

    Like this

    Code:
    playerFist = 0x587E78 + BaseAddress;
    playerClub = playerFist + 0x04;
    playerSword = playerClub + 0x04;
    playerAxe = playerSword + 0x04;
    playerDistance = playerAxe + 0x04;
    playerShielding = playerDistance + 0x04;
    playerFishing = playerShielding + 0x04;
    
    playerEquip_Step = 0x0C;
    playerAmmo = 0x5DE624 + BaseAddress;
    playerAmmoCount = playerAmmo - 4;
    playerRing = playerAmmo + playerEquip_Step;
    playerBoots = playerRing + playerEquip_Step;
    playerLegs = playerBoots + playerEquip_Step;
    playerRight = playerLegs + playerEquip_Step;
    playerLeft = playerRight + playerEquip_Step;
    playerTorso = playerLeft + playerEquip_Step;
    playerBackpack = playerTorso + playerEquip_Step;
    playerNecklace = playerBackpack + playerEquip_Step;
    playerHead = playerNecklace + playerEquip_Step;
    Forgot to put in the link lol http://tpforums.org/forum/threads/5689-Addresses-9-82
    Genuinely didn't realise they hadn't changed haha, I haven't actually updated since 9.81, so maybe that's why... I don't make use of the structs cause I'm old fashioned and like being simple... Plus, it's just more shit to make the build go slower, when the PC has to perform calculations as well as variable assignments, and in reality, it takes very little effort for me to just add the numbers myself...

  4. #4
    Junior Member
    Join Date
    Aug 2012
    Posts
    21
    I need player GoTo addresses

  5. #5
    Member
    Join Date
    Dec 2012
    Location
    Poland
    Posts
    47
    gotoX = $987EA0;
    gotoY = $987E98;
    gotoZ = $950004;

  6. #6
    Junior Member
    Join Date
    Mar 2013
    Posts
    7
    Anyone can help me with update tibiaapi for client 9.83, because I do not know in what program I need to update it and where I need to paste this adresses.
    Please

Posting Permissions

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