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 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

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 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
TibiaAPI-Current 981 - Page 2
Page 2 of 4 FirstFirst 1234 LastLast
Results 11 to 20 of 34

Thread: TibiaAPI-Current 981

  1. #11
    Super Moderator klusbert's Avatar
    Join Date
    Dec 2007
    Posts
    1,201

    RE: TibiaAPI-Current 981

    Tibia.exe+596758

    this will be set only if u open tibiamarket.
    Otherwise it will 0 or the last character market cash

  2. #12

    RE: TibiaAPI-Current 981

    thank you

  3. #13

    RE: TibiaAPI-Current 981

    anyway... last question to you.
    Is possible to get Address of premium scroll ?
    and if yes u can tell how can I get this ?
    I already get
    $12167FC (delphi)
    address, but I think its wrong.
    thanks

  4. #14
    Administrator
    Join Date
    Mar 2007
    Posts
    1,723

    RE: TibiaAPI-Current 981

    Packet Changes: 9.71 to 9.81

    Incoming
    Added

    LoginSuccess - 23 (0x17)
    Code:
    PlayerID - UInt32
    BeatDuration - UInt16
    CreatureSpeedA - Double
    CreatureSpeedB - Double
    CreatureSpeedC - Double
    BugReportsAllowed - Byte (Boolean)
    Updated
    BuddyData
    Code:
    IsOnline = msg.GetByte().Equals(0x01);
    to
    Code:
    IsOnline = msg.GetByte();
    IsOnline is now a byte value instead of a boolean value. Probably for the new connection states.

    BuddyStatusChange (BuddyLogin)
    Code:
    PlayerId = msg.GetUInt32();
    to
    Code:
    PlayerId = msg.GetUInt32();
    byte ConnectionStatus = msg.GetByte();
    The BuddyStatusChange packet (formerly BuddlyLogin/VIPLogin) now includes a byte indicating your buddy's (VIP's) connection to the game world.

    MarketEnter
    Code:
    uint AccountBalance = msg.GetUInt32();
    to
    Code:
    uint64 AccountBalance = msg.GetUInt64();
    AccountBalance is, obviously, now a UInt64 value instead of a UInt32.

    PlayerGoods
    Code:
    Cash = msg.GetUInt32();
    to
    Code:
    Cash = msg.GetUInt64();
    Cash is, obviously, now a UInt64 value instead of a UInt32.



    Outgoing
    Added
    EnterWorld - 15 (0xF)
    No arguments, but the flash client puts the sendPacket() call in a try/catch block.



    CipSoft's readUnsigned64BitValue, readDouble, and readSigned64BitValue functions from their flash client:
    Code:
            protected function readUnsigned64BitValue(param1:ByteArray) : Number
            {
                var _loc_2:* = param1.readUnsignedInt();
                var _loc_3:* = param1.readUnsignedInt();
                if ((_loc_3 & 4292870144) != 0)
                {
                    throw new RangeError("Connection.readUnsigned64BitValue: Value out of range.");
                }
                return Number(_loc_2) + Number(_loc_3 & 2097151) * Math.pow(2, 32);
            }// end function
    Code:
            protected function readDouble(param1:ByteArray) : Number
            {
                var _loc_2:* = param1.readUnsignedByte();
                var _loc_3:* = param1.readUnsignedInt();
                return (_loc_3 - int.MAX_VALUE) / Math.pow(10, _loc_2);
            }// end function
    Code:
            protected function readSigned64BitValue(param1:ByteArray) : Number
            {
                var _loc_2:* = param1.readUnsignedInt();
                var _loc_3:* = param1.readUnsignedInt();
                if ((_loc_3 & 2145386496) != 0)
                {
                    throw new RangeError("Connection.readSigned64BitValue: Value out of range.");
                }
                var _loc_4:* = Number(_loc_2) + Number(_loc_3 & 2097151) * Math.pow(2, 32);
                if ((_loc_3 & 2147483648) != 0)
                {
                    return -_loc_4;
                }
                return _loc_4;
            }// end function
    Last edited by jo3bingham; 01-21-2013 at 07:03 PM.

  5. #15
    Member Diego's Avatar
    Join Date
    Mar 2012
    Location
    México
    Posts
    79
    The status address seems to be wrong, this one works "Tibia.exe+003B6EB4"
    TibiaViewer taking AFK botting to a whole different level Sign up!.

  6. #16
    Junior Member
    Join Date
    Sep 2012
    Posts
    9
    Can someone teach me how to compile?

  7. #17

  8. #18
    Super Moderator klusbert's Avatar
    Join Date
    Dec 2007
    Posts
    1,201
    public static uint Id = 0x583EA4 + base;
    How to find battlelist address --> http://tpforums.org/forum/thread-8146.html
    Updating addresses --> http://tpforums.org/forum/thread-8625.html
    DataReader --> http://tpforums.org/forum/thread-10387.html

  9. #19

  10. #20
    thanks for update klusbert

Posting Permissions

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