[AH Bot] HappyAuction menu

Shout-Out

User Tag List

Page 117 of 149 FirstFirst ... 1767113114115116117118119120121 ... LastLast
Results 1,741 to 1,755 of 2227
  1. #1741
    ChuiChu's Avatar Contributor
    Reputation
    88
    Join Date
    Aug 2012
    Posts
    336
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ok this is for the curious hackers out there:


    D3 Bnet Unencrypted Packet Sniffer

    TUTORIAL
    1. Have D3 running at the main lobby
    2. Open CheatEngine ( http://www.cheatengine.org/ )
    - 2.1. <File/Open Process/Diablo III.exe>
    - 2.2. Hit [Memory View] button
    - 2.3. <Tools/Lua Engine>
    - 2.4. Pasted the code below into the lower section and hit [Execute]
    - 2.5. uncheck: <view/show on print>
    3. In D3 open chat window and say something.
    - 3.1. You will see that packet in the CheatEngine LUA window.
    - 3.2. Now explore the AH!

    NOTES
    - Bnet packets are split into multiple messages. These are seperated out by this sniffer
    - Each message is displayed in character then byte format. Paste into a fixed width editor like notepad to see it aligned.
    - Each message is in the format
    id: 1 bytes
    length: 1 or 2 bytes
    content: <length> bytes
    - If you guys find this useful I'll find the recv version next
    - WARNING: Warden may detect this!


    Code:
    local send_call = getAddress('battle.net.dll') + 0x158c72
    
    function debugger_onBreakpoint()
        if EIP == send_call then
            print('SIZE:' .. EDI)
    
            local packet = readBytes(EBX, EDI, true)
            local offset = 0
    
            while offset < #packet do
                local length
                local p1, p2 = packet[offset + 2] or 0, packet[offset + 3] or 0
                if p1 >= 0x80 then
                     length = (p1 % 0x80) + (p2 * 0x80) + 3
                else
                     length = p1 + 2
                end
    
                local bytes  = ''
                local chars = ''
                for i=1, length do
                    local value = packet[offset+i] or 0
                    bytes = bytes .. string.format('%0.2X ', value)
                    if value >= 0x20 and value <= 0x7e then
                        chars = chars .. string.format('%c  ', value)
                    else
                        chars = chars .. '.  '
                    end
                end
                print(chars)
                print(bytes)
    
                offset = offset + length
            end
    
            print('')
            debug_continueFromBreakpoint(co_run)
    
            return 1
        end
    end
    
    debug_setBreakpoint(send_call)
    Last edited by ChuiChu; 07-21-2013 at 06:50 PM.

    [AH Bot] HappyAuction
  2. #1742
    Lewis662's Avatar Private
    Reputation
    1
    Join Date
    Jul 2013
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Has anyone used both this and Blizzkrieg ah bot? What are the major differences and which do you prefer?


    Oakley Sunglasses




  3. #1743
    alcor75's Avatar Site Donator CoreCoins Purchaser
    Reputation
    121
    Join Date
    Oct 2008
    Posts
    325
    Thanks G/R
    11/66
    Trade Feedback
    7 (100%)
    Mentioned
    3 Post(s)
    Tagged
    2 Thread(s)
    Originally Posted by ChuiChu View Post
    is this with 44? i fixed quite a few of those.
    No, were ver 41, you probably already fixedit.

    Tnx you Chui. Even for that hack.. testing it...
    Alcor75
    Core Developer of DreamPoeBot and DreamPoeBot2

    DreamPoeBot1 Support Thread
    FollowBot1 Support Thread

  4. #1744
    CHandest's Avatar Knight-Lieutenant CoreCoins Purchaser
    Reputation
    19
    Join Date
    Aug 2012
    Posts
    275
    Thanks G/R
    0/0
    Trade Feedback
    5 (80%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Are you guys still getting crashes with the diablo client? I get atleast one crash pr. hour.
    Read my ultimate guide on how to AH bot in the guide section here at ownedcore :-)

  5. #1745
    alcor75's Avatar Site Donator CoreCoins Purchaser
    Reputation
    121
    Join Date
    Oct 2008
    Posts
    325
    Thanks G/R
    11/66
    Trade Feedback
    7 (100%)
    Mentioned
    3 Post(s)
    Tagged
    2 Thread(s)
    Originally Posted by CHandest View Post
    Are you guys still getting crashes with the diablo client? I get atleast one crash pr. hour.
    Yea i crash also, but not that much, once a day if i'm unlucky...
    Still i don't think is HA related.

  6. #1746
    ChuiChu's Avatar Contributor
    Reputation
    88
    Join Date
    Aug 2012
    Posts
    336
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    if you are getting d3 crashes plz post the crash info you see


    also is anyone running 44 getting relogin issues? im trying to figure out the reason its failing for sehai before i post another update

  7. #1747
    alcor75's Avatar Site Donator CoreCoins Purchaser
    Reputation
    121
    Join Date
    Oct 2008
    Posts
    325
    Thanks G/R
    11/66
    Trade Feedback
    7 (100%)
    Mentioned
    3 Post(s)
    Tagged
    2 Thread(s)
    give me a minute, i'll adapt and test, i'll be online from this moment and for the entire next day, ask whatever you need tested and i'll try it, with all this time in my hand i'm drilling for the new baby

  8. #1748
    alcor75's Avatar Site Donator CoreCoins Purchaser
    Reputation
    121
    Join Date
    Oct 2008
    Posts
    325
    Thanks G/R
    11/66
    Trade Feedback
    7 (100%)
    Mentioned
    3 Post(s)
    Tagged
    2 Thread(s)
    My toon even relog from the lobby, using v 44, is awesome ! !!

    haFilterStatClear seem to always fail (if haFilterStatClear() then newer fire ) in v44, is it deprecated or removed?
    Last edited by alcor75; 07-22-2013 at 03:26 PM.

  9. #1749
    unrealaz's Avatar Member
    Reputation
    1
    Join Date
    May 2013
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The Chinese hack could emulate the Diablo 3 client and request from the servers items that aren't past the 5 minutes. This could be done with a direct query on the database somehow.
    Another thing they might do is emulate the client and read the items directly from the bnet packets and send out a buy command from the emulation thus not time to display the item would be lost. Just some ideas a very good programmer could implement.

  10. #1750
    MATRASUS's Avatar Member
    Reputation
    2
    Join Date
    Oct 2010
    Posts
    109
    Thanks G/R
    1/0
    Trade Feedback
    5 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    As it was confirmed with crit mempos the "chinese" can not pass 5 min wall. But I think they made clientless AH bot and it successfully beats all the others because

    Originally Posted by unrealaz View Post
    not time to display the item would be lost

  11. #1751
    Sehae's Avatar Member
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    141
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MATRASUS View Post
    As it was confirmed with crit mempos the "chinese" can not pass 5 min wall. But I think they made clientless AH bot and it successfully beats all the others because
    +1

    PS: does anyone have a relog issue using multiclient with the new version or its just me? IF you do and you fixed it - how ?

  12. #1752
    alcor75's Avatar Site Donator CoreCoins Purchaser
    Reputation
    121
    Join Date
    Oct 2008
    Posts
    325
    Thanks G/R
    11/66
    Trade Feedback
    7 (100%)
    Mentioned
    3 Post(s)
    Tagged
    2 Thread(s)
    Originally Posted by Sehae View Post
    +1

    PS: does anyone have a relog issue using multiclient with the new version or its just me? IF you do and you fixed it - how ?
    If with new version you mean v44b then ChuiChu said it is not ment for multiclient, i believe Chui were testing multiclient after v44b
    Pls test v44b with only 1 client (work perfectly for me, even from the lobby ) and report here, i believe Chui is digging your problem befor to updato to the new stable.

    I actually use v41 and multiclient work (if you accept the know flaw in it)

  13. #1753
    KillerJohn's Avatar TurboHUD HUDmaster CoreCoins Purchaser Authenticator enabled
    Reputation
    3696
    Join Date
    Jul 2012
    Posts
    2,532
    Thanks G/R
    46/3338
    Trade Feedback
    0 (0%)
    Mentioned
    16 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by unrealaz View Post
    The Chinese hack could emulate the Diablo 3 client and request from the servers items that aren't past the 5 minutes. This could be done with a direct query on the database somehow.
    Another thing they might do is emulate the client and read the items directly from the bnet packets and send out a buy command from the emulation thus not time to display the item would be lost. Just some ideas a very good programmer could implement.
    If they would have no protection on the server side against invalid queries or transactions the entire economy would be already collapsed about 14 months ago...
    Do not send me private messages unless it is absolutely necessary or the content is sensitive or when I ask you to do that...

  14. #1754
    ChuiChu's Avatar Contributor
    Reputation
    88
    Join Date
    Aug 2012
    Posts
    336
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    latest version multiclient should be fine.

    also if you have relogin issue in 44B plz report with the following:

    if it improves with:
    - checked: vsync
    - checked: max fg/bg FPS @ 20

    note that you must have:
    - haSetLogin() set at the beginning of your script, below the 3 Core.* requires. like so:
    Code:
    require('Core.Api')
    require('Core.Events')
    require('Core.Old')
    
    haSetLogin('[email protected]','ikilledblizzard')

  15. #1755
    ChuiChu's Avatar Contributor
    Reputation
    88
    Join Date
    Aug 2012
    Posts
    336
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    also i just posted 45B with several fixes including something that may solve relogin. let me know if its better with and without vsync/fps limits

    hopefully this is the last beta. for 46 ill document the new API and add some stuff form my todo list

Similar Threads

  1. World of Warcraft WoW!Bot (GetALifeBot) 0.61 for WoW 1.9.4 + FishBot
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 43
    Last Post: 04-18-2006, 04:55 AM
  2. WoWGlider and GALB Botting Locations
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 14
    Last Post: 04-11-2006, 08:01 PM
  3. Bot for gaining XP
    By JesseG18 in forum World of Warcraft General
    Replies: 1
    Last Post: 03-09-2006, 08:52 PM
  4. World of Warcraft Bot (GetALifeBot) 0.57 working with 1.9.4
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 7
    Last Post: 03-07-2006, 09:43 PM
  5. Best Botting/Grinding Locations
    By Matt in forum World of Warcraft Exploits
    Replies: 0
    Last Post: 02-27-2006, 12:39 AM
All times are GMT -5. The time now is 08:22 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search