LootSlot Help menu

User Tag List

Results 1 to 13 of 13
  1. #1
    totaldisarray's Avatar Member
    Reputation
    1
    Join Date
    Jan 2009
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    LootSlot Help

    Hi all, i have been a member of these forums for awhile now, and i have yet to contribute anything. well i hope that will change now

    Over the last few days i have been putting together a fishing bot (written in C#) at first in just read objects from wow and pawed the screen
    till the mouse over guid matched the bobber guid and when the bobber bobed in click the right mouse button

    Now i have moved onto using fasm to inject code so that i can use wows function, so i can actual use the pc while the bot is running so far
    i have got CastSpellByID to work wit with the following code

    Code:
     public static void CastSpellByID(int SpellID)
            {
                BlackMagic WoW = new BlackMagic(SProcess.GetProcessFromProcessName("WoW"));
    
                uint CodeCave = WoW.AllocateMemory();
    
                uint ACastSpellByID = 0x00773860;
    
                WoW.Asm.AddLine("fs mov eax, [0x2C]");
                WoW.Asm.AddLine("mov eax, [eax]");
                WoW.Asm.AddLine("add eax, 8");
                WoW.Asm.AddLine("mov dword [eax], {0}", ObjectManager.objectmanagerbase);
    
                WoW.Asm.AddLine("push 0");
                WoW.Asm.AddLine("push 0");
                WoW.Asm.AddLine("push 0");
                WoW.Asm.AddLine("push {0}", SpellID);
                WoW.Asm.AddLine("call {0}", ACastSpellByID);
                WoW.Asm.AddLine("add esp, 0x10");
                WoW.Asm.AddLine("retn");
    
                WoW.Asm.InjectAndExecute(CodeCave);
    
                WoW.FreeMemory(CodeCave);
            }
    i have also got interact to work with this code

    Code:
            public void Interact()
            {
                uint CodeCave = WoW.AllocateMemory();
                //get the adress of the call for vmt 36 (Interact)
                uint VMT36 = WoW.ReadUInt((WoW.ReadUInt(baseaddress) + (36 * 4)));
    
                WoW.Asm.AddLine("fs mov eax, [0x2C]");
                WoW.Asm.AddLine("mov eax, [eax]");
                WoW.Asm.AddLine("add eax, 8");
                WoW.Asm.AddLine("mov dword [eax], {0}", ObjectManager.objectmanagerbase);
                WoW.Asm.AddLine("mov ecx, {0}", baseaddress);
                WoW.Asm.AddLine("call {0}", VMT36); //read pointer to Interact method
                WoW.Asm.AddLine("retn");
    
                WoW.Asm.InjectAndExecute(CodeCave);
    
                WoW.FreeMemory(CodeCave);
    
            }
    with thoose 2 function i have made my fishing bot work witout haveing to send input to the wow window. The way the bot loots is to use auto loot.

    Currently i am working on looting items manual (calling the functions from my app)
    so far i have managed to get the number of lootable items with this

    Code:
    public static int LootSlots()
            {
                uint NumberOfSlots = 0;
                BlackMagic WoW = new BlackMagic(SProcess.GetProcessFromProcessName("WoW"));
    
                WoW.SuspendThread();
                
                uint CodeCave = WoW.AllocateMemory();
    
                uint ALootSlots = 0x004DEB50;
    
                SThread.SuspendThread(WoW.ThreadHandle);
    
                WoW.Asm.AddLine("fs mov eax, [0x2C]");
                WoW.Asm.AddLine("mov eax, [eax]");
                WoW.Asm.AddLine("add eax, 8");
                WoW.Asm.AddLine("mov dword [eax], {0}", ObjectManager.objectmanagerbase);
    
                WoW.Asm.AddLine("call {0}", ALootSlots);
                WoW.Asm.AddLine("retn");
    
                NumberOfSlots = WoW.Asm.InjectAndExecute(CodeCave);
    
                SThread.ResumeThread(WoW.ThreadHandle);
    
                WoW.FreeMemory(CodeCave);
    
                WoW.ResumeThread();
    
                return (int)NumberOfSlots;
            }
    Here is were i have hit a problem trying to loot the item so far i have this
    Code:
    public static void LootSlot(int index)
            {
                BlackMagic WoW = new BlackMagic(SProcess.GetProcessFromProcessName("WoW"));
    
                uint CodeCave = WoW.AllocateMemory();
    
                Process[] wowProcesses = Process.GetProcessesByName("Wow");
    
                foreach (ProcessThread curThread in wowProcesses[0].Threads)
                {
                    IntPtr threadHandle = SThread.OpenThread(curThread.Id);
                    SThread.SuspendThread(threadHandle);
                }
    
                uint ALootSlot = 0x004DFAD0;
    
                WoW.Asm.AddLine("fs mov eax, [0x2C]");
                WoW.Asm.AddLine("mov eax, [eax]");
                WoW.Asm.AddLine("add eax, 8");
                WoW.Asm.AddLine("mov dword [eax], {0}", ObjectManager.objectmanagerbase);
    
                WoW.Asm.AddLine("push {0}", index);
                WoW.Asm.AddLine("call {0}", ALootSlot);
                WoW.Asm.AddLine("add esp, 12");
                WoW.Asm.AddLine("retn");
    
                WoW.Asm.InjectAndExecute(CodeCave);
    
                foreach (ProcessThread curThread in wowProcesses[0].Threads)
                {
                    IntPtr threadHandle = SThread.OpenThread(curThread.Id);
                    SThread.ResumeThread(threadHandle);
                }
    
            }
    The problem is whenever i call that function wow crashes, the intresting point is
    when i log back it the item i was trying to loot has been looted. anyone have any advise on how i can fix this?

    sorry for my this badly structured and probaly full of spelling mistakes post

    TotalDisarray

    LootSlot Help
  2. #2
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sigh. How come whenever someone complains of crashes it seems they never think "oh hey, maybe I should post a crash log along with this". >_>

    Post your crash log. I refuse to even begin looking at your code until that happens. Someone else may come along and read through and find the error without it but I'm much too lazy.

  3. #3
    alucart13's Avatar Member
    Reputation
    1
    Join Date
    Feb 2009
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    To be honest, there's no way we can possibly help you until we have a detailed analysis of what went wrong.

    Just as Cypher said, post your crash log from whatever IDE your using.

  4. #4
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    WoW should generate a crash dump when it crashes. Copy the entire output from WoWError.exe.

    If it doesn't, attach a debugger and reproduce the crash, then generate a crash dump using that. Any debugger will do.

  5. #5
    totaldisarray's Avatar Member
    Reputation
    1
    Join Date
    Jan 2009
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Sorry

    Sorry heres what WoWError outputs on a crash

    Code:
    ==============================================================================
    World of WarCraft (build 9551)
    
    Exe:      C:\Program Files\World of Warcraft\WoW.exe
    Time:     Mar  7, 2009  8:13:47.921 AM
    User:     *****
    Computer: ******
    ------------------------------------------------------------------------------
    
    This application has encountered a critical error:
    
    ERROR #132 (0x85100084) Fatal Exception
    Program:	C:\Program Files\World of Warcraft\WoW.exe
    Exception:	0xC0000005 (ACCESS_VIOLATION) at 001B:00228008
    
    The instruction at "0x00228008" referenced memory at "0x00000001".
    The memory could not be "written".
    
    
    WoWBuild: 9551
    Realm: Outland [213.248.123.85:3724]
    Local Zone: Durotar
    Local Player: *****, 0000000001DAB4F5, (-886.502,-4703.52,26.1355)
    Locked Target: Kolkar Drudge, F130000C2F089861, (-884.555,-4701.27,26.5199)
    Last Enemy Target: Kolkar Drudge, F130000C2F089861, (-884.555,-4701.27,26.5199)
    Add Ons: QuestHelper 
    Settings: 
    SET maxFPS "45"
    SET maxFPSBk "45"
    SET locale "enGB"
    SET portal "eu"
    SET realmList "eu.logon.worldofwarcraft.com"
    SET patchlist "eu.version.worldofwarcraft.com"
    SET coresDetected "2"
    SET hwDetect "0"
    SET gxColorBits "24"
    SET gxDepthBits "24"
    SET gxResolution "1024x768"
    SET gxRefresh "60"
    SET gxMultisampleQuality "0.000000"
    SET gxFixLag "0"
    SET videoOptionsVersion "1"
    SET movie "0"
    SET Gamma "1.000000"
    SET readTOS "1"
    SET readEULA "1"
    SET readTerminationWithoutNotice "1"
    SET showToolsUI "1"
    SET Sound_VoiceChatInputDriverName "System Default"
    SET Sound_VoiceChatOutputDriverName "System Default"
    SET Sound_OutputDriverName "System Default"
    SET Sound_MusicVolume "0.40000000596046"
    SET Sound_AmbienceVolume "0.60000002384186"
    SET farclip "727"
    SET specular "1"
    SET particleDensity "1.000000"
    SET groundEffectDensity "24"
    SET realmName "Outland"
    SET gameTip "119"
    SET gxWindow "1"
    SET mouseSpeed "1"
    SET ChatMusicVolume "0.29999998211861"
    SET ChatSoundVolume "0.39999997615814"
    SET ChatAmbienceVolume "0.29999998211861"
    SET Sound_EnableAllSound "0"
    SET VoiceActivationSensitivity "0.39999997615814"
    SET readScanning "-1"
    SET readContest "-1"
    SET installType "Retail"
    SET processAffinityMask "00000000"
    SET lastCharacterIndex "2"
    ------------------------------------------------------------------------------
    
    ----------------------------------------
        x86 Registers
    ----------------------------------------
    
    EAX=00000001  EBX=00000000  ECX=19964358  EDX=00000001  ESI=03A6E154
    EDI=00228008  EBP=0861FFEC  ESP=0861FFC4  EIP=00228008  FLG=00010216
    CS =001B      DS =0023      ES =0023      SS =0023      FS =003B      GS =0000
    
    
    ----------------------------------------
        Stack Trace (Manual)
    ----------------------------------------
    
    Address  Frame    Logical addr  Module
    
    Showing 31/31 threads...
    
    --- Thread ID: 6080 ---
    007487F3 0019F920 0001:003477F3 C:\Program Files\World of Warcraft\WoW.exe
    00748E56 0019FB04 0001:00347E56 C:\Program Files\World of Warcraft\WoW.exe
    00748ECF 0019FB18 0001:00347ECF C:\Program Files\World of Warcraft\WoW.exe
    0070354E 0019FB88 0001:0030254E C:\Program Files\World of Warcraft\WoW.exe
    00708F95 0019FBC8 0001:00307F95 C:\Program Files\World of Warcraft\WoW.exe
    006ED333 0019FBD8 0001:002EC333 C:\Program Files\World of Warcraft\WoW.exe
    004B7FAA 0019FC24 0001:000B6FAA C:\Program Files\World of Warcraft\WoW.exe
    004B9E52 0019FCB0 0001:000B8E52 C:\Program Files\World of Warcraft\WoW.exe
    0042C1A2 0019FD6C 0001:0002B1A2 C:\Program Files\World of Warcraft\WoW.exe
    004394F7 0019FD88 0001:000384F7 C:\Program Files\World of Warcraft\WoW.exe
    004399EE 0019FDA4 0001:000389EE C:\Program Files\World of Warcraft\WoW.exe
    0044442C 0019FE70 0001:0004342C C:\Program Files\World of Warcraft\WoW.exe
    00427A69 0019FEA0 0001:00026A69 C:\Program Files\World of Warcraft\WoW.exe
    004263A9 0019FF0C 0001:000253A9 C:\Program Files\World of Warcraft\WoW.exe
    00426481 0019FF24 0001:00025481 C:\Program Files\World of Warcraft\WoW.exe
    00406958 0019FFC0 0001:00005958 C:\Program Files\World of Warcraft\WoW.exe
    7C816D4F 0019FFF0 0001:00015D4F F:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 4232 ---
    7C802542 0238FF44 0001:00001542 F:\WINDOWS\system32\kernel32.dll
    006BB325 0238FF60 0001:002BA325 C:\Program Files\World of Warcraft\WoW.exe
    006D56D5 0238FF74 0001:002D46D5 C:\Program Files\World of Warcraft\WoW.exe
    007EDBCF 0238FFAC 0001:003ECBCF C:\Program Files\World of Warcraft\WoW.exe
    007EDC74 0238FFEC 0001:003ECC74 C:\Program Files\World of Warcraft\WoW.exe
    
    --- Thread ID: 6784 ---
    7C802451 0391FF4C 0001:00001451 F:\WINDOWS\system32\kernel32.dll
    006BD254 0391FF74 0001:002BC254 C:\Program Files\World of Warcraft\WoW.exe
    007EDBCF 0391FFAC 0001:003ECBCF C:\Program Files\World of Warcraft\WoW.exe
    007EDC74 0391FFEC 0001:003ECC74 C:\Program Files\World of Warcraft\WoW.exe
    
    --- Thread ID: 4168 ---
    7C802451 03A8FB6C 0001:00001451 F:\WINDOWS\system32\kernel32.dll
    007CB33D 03A8FB78 0001:003CA33D C:\Program Files\World of Warcraft\WoW.exe
    004555FE 03A8FF98 0001:000545FE C:\Program Files\World of Warcraft\WoW.exe
    006A79A7 03A8FFB4 0001:002A69A7 C:\Program Files\World of Warcraft\WoW.exe
    7C80B50B 03A8FFEC 0001:0000A50B F:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 5200 ---
    7C802542 0415FF70 0001:00001542 F:\WINDOWS\system32\kernel32.dll
    006AB710 0415FF80 0001:002AA710 C:\Program Files\World of Warcraft\WoW.exe
    00780C82 0415FF98 0001:0037FC82 C:\Program Files\World of Warcraft\WoW.exe
    006A79A7 0415FFB4 0001:002A69A7 C:\Program Files\World of Warcraft\WoW.exe
    7C80B50B 0415FFEC 0001:0000A50B F:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 6280 ---
    7C809C86 0771FF88 0001:00008C86 F:\WINDOWS\system32\kernel32.dll
    72D2312A 0771FFB4 0001:0000212A F:\WINDOWS\system32\wdmaud.drv
    7C80B50B 0771FFEC 0001:0000A50B F:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 7092 ---
    7C809C86 0788FE40 0001:00008C86 F:\WINDOWS\system32\kernel32.dll
    73F114A2 0788FE58 0001:000004A2 F:\WINDOWS\system32\dsound.dll
    73F1294A 0788FF78 0001:0000194A F:\WINDOWS\system32\dsound.dll
    73F19FBF 0788FF98 0001:00008FBF F:\WINDOWS\system32\dsound.dll
    73F1297E 0788FFB4 0001:0000197E F:\WINDOWS\system32\dsound.dll
    7C80B50B 0788FFEC 0001:0000A50B F:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 7588 ---
    7C809C86 07AFFE48 0001:00008C86 F:\WINDOWS\system32\kernel32.dll
    73F114A2 07AFFE60 0001:000004A2 F:\WINDOWS\system32\dsound.dll
    73F1294A 07AFFF80 0001:0000194A F:\WINDOWS\system32\dsound.dll
    73F12A13 07AFFFB4 0001:00001A13 F:\WINDOWS\system32\dsound.dll
    7C80B50B 07AFFFEC 0001:0000A50B F:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 4192 ---
    7C802451 07C6FF94 0001:00001451 F:\WINDOWS\system32\kernel32.dll
    00837CB4 07C6FFA0 0001:00436CB4 C:\Program Files\World of Warcraft\WoW.exe
    0083BDC9 07C6FFB4 0001:0043ADC9 C:\Program Files\World of Warcraft\WoW.exe
    7C80B50B 07C6FFEC 0001:0000A50B F:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 7992 ---
    7C802451 07DDFF94 0001:00001451 F:\WINDOWS\system32\kernel32.dll
    00837CB4 07DDFFA0 0001:00436CB4 C:\Program Files\World of Warcraft\WoW.exe
    0083BDC9 07DDFFB4 0001:0043ADC9 C:\Program Files\World of Warcraft\WoW.exe
    7C80B50B 07DDFFEC 0001:0000A50B F:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 2016 ---
    7C802451 07F4FF94 0001:00001451 F:\WINDOWS\system32\kernel32.dll
    00837CB4 07F4FFA0 0001:00436CB4 C:\Program Files\World of Warcraft\WoW.exe
    0083BDC9 07F4FFB4 0001:0043ADC9 C:\Program Files\World of Warcraft\WoW.exe
    7C80B50B 07F4FFEC 0001:0000A50B F:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 5516 ---
    7C802451 080BFF94 0001:00001451 F:\WINDOWS\system32\kernel32.dll
    00837CB4 080BFFA0 0001:00436CB4 C:\Program Files\World of Warcraft\WoW.exe
    0083BDC9 080BFFB4 0001:0043ADC9 C:\Program Files\World of Warcraft\WoW.exe
    7C80B50B 080BFFEC 0001:0000A50B F:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 3976 ---
    7C802542 0822FF64 0001:00001542 F:\WINDOWS\system32\kernel32.dll
    006AB710 0822FF74 0001:002AA710 C:\Program Files\World of Warcraft\WoW.exe
    00421B85 0822FF8C 0001:00020B85 C:\Program Files\World of Warcraft\WoW.exe
    00421CA1 0822FF98 0001:00020CA1 C:\Program Files\World of Warcraft\WoW.exe
    006A79A7 0822FFB4 0001:002A69A7 C:\Program Files\World of Warcraft\WoW.exe
    7C80B50B 0822FFEC 0001:0000A50B F:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 4600 ---
    7C809C86 0839FD34 0001:00008C86 F:\WINDOWS\system32\kernel32.dll
    004223FB 0839FF8C 0001:000213FB C:\Program Files\World of Warcraft\WoW.exe
    00421CBE 0839FF98 0001:00020CBE C:\Program Files\World of Warcraft\WoW.exe
    006A79A7 0839FFB4 0001:002A69A7 C:\Program Files\World of Warcraft\WoW.exe
    7C80B50B 0839FFEC 0001:0000A50B F:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 7732 ---
    77D4BBFE 0850FF14 0001:0000ABFE F:\WINDOWS\system32\USER32.dll
    77D4BCAD 0850FF30 0001:0000ACAD F:\WINDOWS\system32\USER32.dll
    006D6E17 0850FF60 0001:002D5E17 C:\Program Files\World of Warcraft\WoW.exe
    006D56D5 0850FF74 0001:002D46D5 C:\Program Files\World of Warcraft\WoW.exe
    007EDBCF 0850FFAC 0001:003ECBCF C:\Program Files\World of Warcraft\WoW.exe
    007EDC74 0850FFEC 0001:003ECC74 C:\Program Files\World of Warcraft\WoW.exe
    
    --- Thread ID: 4848 ---
    71A55FA7 0B95F8A4 0001:00004FA7 F:\WINDOWS\system32\mswsock.dll
    
    --- Thread ID: 1500 ---
    7C809C86 0BDCFF60 0001:00008C86 F:\WINDOWS\system32\kernel32.dll
    3C3F4B1E 0BDCFFB4 0001:00013B1E F:\PROGRA~1\SPEEDB~1\sblsp.dll
    7C80B50B 0BDCFFEC 0001:0000A50B F:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 4148 ---
    7C80B50B 0BF3FFEC 0001:0000A50B F:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 3804 ---
    3C3F72AB 0C0AFFB4 0001:000162AB F:\PROGRA~1\SPEEDB~1\sblsp.dll
    7C80B50B 0C0AFFEC 0001:0000A50B F:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 5736 ---
    3C3F72AB 0C21FFB4 0001:000162AB F:\PROGRA~1\SPEEDB~1\sblsp.dll
    7C80B50B 0C21FFEC 0001:0000A50B F:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 5960 ---
    7C80B50B 0C66FFEC 0001:0000A50B F:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 4860 ---
    7C809C86 0CE4FF60 0001:00008C86 F:\WINDOWS\system32\kernel32.dll
    334328EE 0CE4FFB4 0001:000218EE F:\Program Files\SpeedBit Video Accelerator\CommPipe.dll
    7C80B50B 0CE4FFEC 0001:0000A50B F:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 6480 ---
    7C809C86 0D6FFF60 0001:00008C86 F:\WINDOWS\system32\kernel32.dll
    1007BB3E 0D6FFFB4 0001:0000AB3E F:\Program Files\SpeedBit Video Accelerator\Collector.dll
    7C80B50B 0D6FFFEC 0001:0000A50B F:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 6788 ---
    
    --- Thread ID: 2328 ---
    7C809C86 0D9DFF68 0001:00008C86 F:\WINDOWS\system32\kernel32.dll
    288F5D8E 0D9DFFB4 0001:000B4D8E F:\Program Files\SpeedBit Video Accelerator\Accelerator.dll
    7C80B50B 0D9DFFEC 0001:0000A50B F:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 4344 ---
    7C80B50B 0C4FFFEC 0001:0000A50B F:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 7820 ---
    7C802542 0F34FF78 0001:00001542 F:\WINDOWS\system32\kernel32.dll
    006AB710 0F34FF88 0001:002AA710 C:\Program Files\World of Warcraft\WoW.exe
    00826776 0F34FF98 0001:00425776 C:\Program Files\World of Warcraft\WoW.exe
    006A79A7 0F34FFB4 0001:002A69A7 C:\Program Files\World of Warcraft\WoW.exe
    7C80B50B 0F34FFEC 0001:0000A50B F:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 3656 ---
    77D4BBFE 0F4BFF14 0001:0000ABFE F:\WINDOWS\system32\USER32.dll
    77D4BCAD 0F4BFF30 0001:0000ACAD F:\WINDOWS\system32\USER32.dll
    006D6E17 0F4BFF60 0001:002D5E17 C:\Program Files\World of Warcraft\WoW.exe
    006D56D5 0F4BFF74 0001:002D46D5 C:\Program Files\World of Warcraft\WoW.exe
    007EDBCF 0F4BFFAC 0001:003ECBCF C:\Program Files\World of Warcraft\WoW.exe
    007EDC74 0F4BFFEC 0001:003ECC74 C:\Program Files\World of Warcraft\WoW.exe
    
    --- Thread ID: 7012 ---
    7C802451 0F7EFF94 0001:00001451 F:\WINDOWS\system32\kernel32.dll
    00837CB4 0F7EFFA0 0001:00436CB4 C:\Program Files\World of Warcraft\WoW.exe
    0083BDC9 0F7EFFB4 0001:0043ADC9 C:\Program Files\World of Warcraft\WoW.exe
    7C80B50B 0F7EFFEC 0001:0000A50B F:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 4972 ---
    7C802451 0F95FF94 0001:00001451 F:\WINDOWS\system32\kernel32.dll
    00837CB4 0F95FFA0 0001:00436CB4 C:\Program Files\World of Warcraft\WoW.exe
    0083BDC9 0F95FFB4 0001:0043ADC9 C:\Program Files\World of Warcraft\WoW.exe
    7C80B50B 0F95FFEC 0001:0000A50B F:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 6612 [Current Thread] ---
    00228008 0861FFEC 0000:00000000 <unknown>
    
    ----------------------------------------
        Stack Trace (Using DBGHELP.DLL)
    ----------------------------------------
    
    Showing 31/31 threads...
    
    --- Thread ID: 6080 ---
    007487F3 WoW.exe      <unknown symbol>+0 (0x0019FAD4,0x0019FAF0,0x0019F970,0x3F000000)
    00748E56 WoW.exe      <unknown symbol>+0 (0x1C2E72F0,0x0127F650,0x1798A940,0x0019FB88)
    00748ECF WoW.exe      <unknown symbol>+0 (0x1C2E72F0,0x0019FB6C,0x0211EAE0,0x00000000)
    0070354E WoW.exe      <unknown symbol>+0 (0x021A38A8,0x065E543C,0x065E5754,0x00000000)
    00708F95 WoW.exe      <unknown symbol>+0 (0x09A32880,0x3C83126F,0x0019FC24,0x004B7FAA)
    006ED333 WoW.exe      <unknown symbol>+0 (0x09A32880,0x3C83126F,0x00000000,0x065E543C)
    004B7FAA WoW.exe      <unknown symbol>+0 (0x0A2DFB04,0x3F800000,0x00000000,0x00000000)
    004B9E52 WoW.exe      <unknown symbol>+0 (0x065E543C,0x00000000,0x0A2DFAE8,0x0A2DFB04)
    0042C1A2 WoW.exe      <unknown symbol>+0 (0x0A2DFB04,0x0A0BE810,0x00000009,0x0A0BDB28)
    004394F7 WoW.exe      <unknown symbol>+0 (0x035E7098,0x0A0B4258,0x0A0B4240,0x00000000)
    004399EE WoW.exe      <unknown symbol>+0 (0x00000000,0x0A0B4248,0x0A0B4258,0x3C83126F)
    0044442C WoW.exe      <unknown symbol>+0 (0x00000000,0x00000000,0x00000000,0x02217400)
    00427A69 WoW.exe      <unknown symbol>+0 (0x02217400,0x00000011,0x00000000,0x00000A28)
    004263A9 WoW.exe      <unknown symbol>+0 (0x00000000,0x004068E0,0x00000001,0x00000001)
    00426481 WoW.exe      <unknown symbol>+0 (0x0040ABB9,0x00400000,0x00000000,0x001C233D)
    00406958 WoW.exe      <unknown symbol>+0 (0x80000001,0x0012BC0C,0x7FFDF000,0x805502FA)
    7C816D4F kernel32.dll RegisterWaitForInputIdle+73 (0x00401000,0x00000000,0x78746341,0x00000020)
    
    --- Thread ID: 4232 ---
    7C802542 kernel32.dll WaitForSingleObject+18 (0x00002120,0xFFFFFFFF,0x021A4850,0x00000000)
    006BB325 WoW.exe      <unknown symbol>+0 (0x0211AE60,0x00000000,0x021A4850,0x0238FFAC)
    006D56D5 WoW.exe      <unknown symbol>+0 (0x02114A70,0x998C4D70,0x00000000,0x021A4850)
    007EDBCF WoW.exe      <unknown symbol>+0 (0x00000000,0x7C80B50B,0x021A4850,0x00000000)
    007EDC74 WoW.exe      <unknown symbol>+0 (0x007EDBF5,0x021A4850,0x00000000,0x00000008)
    
    --- Thread ID: 6784 ---
    7C802451 kernel32.dll Sleep+15 (0x00000064,0x31333539,0x035E80A8,0x035E5FC8)
    006BD254 WoW.exe      <unknown symbol>+0 (0x035E5FC8,0x98254D70,0x31333539,0x035E80A8)
    007EDBCF WoW.exe      <unknown symbol>+0 (0x02112E00,0x7C80B50B,0x035E80A8,0x31333539)
    007EDC74 WoW.exe      <unknown symbol>+0 (0x007EDBF5,0x035E80A8,0x00000000,0x00000000)
    
    --- Thread ID: 4168 ---
    7C802451 kernel32.dll Sleep+15 (0x00000001,0x03A8FF98,0x004555FE,0x00000001)
    007CB33D WoW.exe      <unknown symbol>+0 (0x00000001,0x00455440,0x03621DE8,0x00001048)
    004555FE WoW.exe      <unknown symbol>+0 (0x03621DE8,0x00000000,0x00000008,0x03621E08)
    006A79A7 WoW.exe      <unknown symbol>+0 (0x00002164,0x00000000,0x00000008,0x03621E08)
    7C80B50B kernel32.dll GetModuleFileNameA+436 (0x006A7950,0x03621E08,0x00000000,0x04BA0000)
    
    --- Thread ID: 5200 ---
    7C802542 kernel32.dll WaitForSingleObject+18 (0x000020A8,0xFFFFFFFF,0x0415FF98,0x00780C82)
    006AB710 WoW.exe      <unknown symbol>+0 (0xFFFFFFFF,0x012E9DD8,0x00001450,0x00780C20)
    00780C82 WoW.exe      <unknown symbol>+0 (0x012E9DD8,0x7C9105D4,0x0019FAC8,0x036226E0)
    006A79A7 WoW.exe      <unknown symbol>+0 (0x00002168,0x7C9105D4,0x0019FAC8,0x036226E0)
    7C80B50B kernel32.dll GetModuleFileNameA+436 (0x006A7950,0x036226E0,0x00000000,0x00000000)
    
    --- Thread ID: 6280 ---
    7C809C86 kernel32.dll WaitForMultipleObjects+24 (0x00000002,0x0771FFA4,0x00000000,0xFFFFFFFF)
    72D2312A wdmaud.drv   midMessage+840 (0x00000000,0x00000000,0x020A0014,0x00000000)
    7C80B50B kernel32.dll GetModuleFileNameA+436 (0x72D230E8,0x00000000,0x00000000,0x00000000)
    
    --- Thread ID: 7092 ---
    7C809C86 kernel32.dll WaitForMultipleObjects+24 (0x00000040,0x0788FE78,0x00000000,0xFFFFFFFF)
    73F114A2 dsound.dll   <unknown symbol>+0 (0x00000040,0xFFFFFFFF,0x00000000,0x0788FE78)
    73F1294A dsound.dll   <unknown symbol>+0 (0xFFFFFFFF,0x0000003F,0x04225A28,0x0788FF94)
    73F19FBF dsound.dll   DirectSoundCreate+21372 (0x001C0608,0x04223ED4,0x73F1B993,0x7C91056D)
    73F1297E dsound.dll   <unknown symbol>+0 (0x04223ED4,0x001C0608,0x7C91056D,0x04223ED4)
    7C80B50B kernel32.dll GetModuleFileNameA+436 (0x73F1B94B,0x04223ED4,0x00000000,0x00000008)
    
    --- Thread ID: 7588 ---
    7C809C86 kernel32.dll WaitForMultipleObjects+24 (0x00000001,0x07AFFE80,0x00000000,0x000001F4)
    73F114A2 dsound.dll   <unknown symbol>+0 (0x00000001,0x000001F4,0x00000000,0x07AFFE80)
    73F1294A dsound.dll   <unknown symbol>+0 (0x000001F4,0x00000000,0x00000000,0x00000000)
    73F12A13 dsound.dll   <unknown symbol>+0 (0x04221EFC,0x01000001,0x0019F554,0x04221EFC)
    7C80B50B kernel32.dll GetModuleFileNameA+436 (0x73F1B94B,0x04221EFC,0x00000000,0x00000000)
    
    --- Thread ID: 4192 ---
    7C802451 kernel32.dll Sleep+15 (0x0000000A,0x07C6FFB4,0x0083BDC9,0x0000000A)
    00837CB4 WoW.exe      <unknown symbol>+0 (0x0000000A,0x00000000,0x00001060,0x07C6FFEC)
    0083BDC9 WoW.exe      <unknown symbol>+0 (0x06630090,0x07898728,0x00000000,0x06630090)
    7C80B50B kernel32.dll GetModuleFileNameA+436 (0x0083BD5B,0x06630090,0x00000000,0x00000000)
    
    --- Thread ID: 7992 ---
    7C802451 kernel32.dll Sleep+15 (0x0000000A,0x07DDFFB4,0x0083BDC9,0x0000000A)
    00837CB4 WoW.exe      <unknown symbol>+0 (0x0000000A,0x00000000,0x00001F38,0x07DDFFEC)
    0083BDC9 WoW.exe      <unknown symbol>+0 (0x0662DF48,0x00000000,0x00000000,0x0662DF48)
    7C80B50B kernel32.dll GetModuleFileNameA+436 (0x0083BD5B,0x0662DF48,0x00000000,0x00000000)
    
    --- Thread ID: 2016 ---
    7C802451 kernel32.dll Sleep+15 (0x0000000A,0x07F4FFB4,0x0083BDC9,0x0000000A)
    00837CB4 WoW.exe      <unknown symbol>+0 (0x0000000A,0x078B2AF8,0x000007E0,0x07F4FFEC)
    0083BDC9 WoW.exe      <unknown symbol>+0 (0x06668C10,0x078B2AF8,0x078B2AF8,0x06668C10)
    7C80B50B kernel32.dll GetModuleFileNameA+436 (0x0083BD5B,0x06668C10,0x00000000,0x00000000)
    
    --- Thread ID: 5516 ---
    7C802451 kernel32.dll Sleep+15 (0x0000000A,0x080BFFB4,0x0083BDC9,0x0000000A)
    00837CB4 WoW.exe      <unknown symbol>+0 (0x0000000A,0x00000000,0x0000158C,0x080BFFEC)
    0083BDC9 WoW.exe      <unknown symbol>+0 (0x066258C8,0x00000000,0x00000000,0x066258C8)
    7C80B50B kernel32.dll GetModuleFileNameA+436 (0x0083BD5B,0x066258C8,0x00000000,0x00000000)
    
    --- Thread ID: 3976 ---
    7C802542 kernel32.dll WaitForSingleObject+18 (0x00002354,0x000003E8,0x0822FF8C,0x00421B85)
    006AB710 WoW.exe      <unknown symbol>+0 (0x000003E8,0x00000F88,0x00421C90,0x0725FAF8)
    00421B85 WoW.exe      <unknown symbol>+0 (0x00000000,0x0822FFB4,0x006A79A7,0x0725FAF8)
    00421CA1 WoW.exe      <unknown symbol>+0 (0x0725FAF8,0x00000000,0x00000000,0x072601D0)
    006A79A7 WoW.exe      <unknown symbol>+0 (0x000023F4,0x00000000,0x00000000,0x072601D0)
    7C80B50B kernel32.dll GetModuleFileNameA+436 (0x006A7950,0x072601D0,0x00000000,0x00000000)
    
    --- Thread ID: 4600 ---
    7C809C86 kernel32.dll WaitForMultipleObjects+24 (0x00000002,0x0839FE58,0x00000000,0x000001F4)
    004223FB WoW.exe      <unknown symbol>+0 (0x00421CB0,0x0839FFB4,0x006A79A7,0x0725FAE8)
    00421CBE WoW.exe      <unknown symbol>+0 (0x0725FAE8,0x00000000,0x00000000,0x072601E8)
    006A79A7 WoW.exe      <unknown symbol>+0 (0x000023F8,0x00000000,0x00000000,0x072601E8)
    7C80B50B kernel32.dll GetModuleFileNameA+436 (0x006A7950,0x072601E8,0x00000000,0x00000000)
    
    --- Thread ID: 7732 ---
    77D4BBFE USER32.dll   SetWindowTextW+288 (0x00000002,0x0850FF58,0xFFFFFFFF,0x00000000)
    77D4BCAD USER32.dll   MsgWaitForMultipleObjects+31 (0x00000002,0x0850FF58,0x00000000,0xFFFFFFFF)
    006D6E17 WoW.exe      <unknown symbol>+0 (0x01208738,0x097D7718,0x09806B30,0x0850FFAC)
    006D56D5 WoW.exe      <unknown symbol>+0 (0x098064E8,0x93E44D70,0x097D7718,0x09806B30)
    007EDBCF WoW.exe      <unknown symbol>+0 (0x03A8F668,0x7C80B50B,0x09806B30,0x097D7718)
    007EDC74 WoW.exe      <unknown symbol>+0 (0x007EDBF5,0x09806B30,0x00000000,0x002CA164)
    
    --- Thread ID: 4848 ---
    71A55FA7 mswsock.dll  <unknown symbol>+0 (0x00000001,0x0B95F8F8,0x0B95F9FC,0x0B95FB00)
    3C3FBB59 sblsp.dll    GetLspGuid+21337 (0x00000003,0x001C0718,0x001C0000,0x0D12EFF0)
    7C910732 ntdll.dll    RtlAllocateHeap+350 (0x7C9106AB,0x7C9106EB,0x001C0000,0x0CCAB960)
    7C910732 ntdll.dll    RtlAllocateHeap+350 (0x7C9106EB,0x001C0000,0x0CCAB960,0x00000000)
    7C9106AB ntdll.dll    RtlAllocateHeap+215 (0x001C0000,0x0CCAB960,0x00000000,0x0B95FA84)
    7C9106EB ntdll.dll    RtlAllocateHeap+279 (0x001C0000,0x7C910E91,0x001C0608,0x7C91056D)
    7C910D5C ntdll.dll    wcsncpy+717 (0x7C97C080,0x7C911970,0x0B95FAA8,0x00000000)
    7C911993 ntdll.dll    RtlDeleteCriticalSection+265 (0x0B95FAA8,0x00000000,0x7C9105C8,0x05234068)
    7C911970 ntdll.dll    RtlDeleteCriticalSection+230 (0x05234068,0x0B95FAB8,0x00000000,0x7C9105C8)
    7C9105C8 ntdll.dll    RtlFreeHeap+395 (0x00000000,0x00000000,0x00000000,0x00000000)
    
    --- Thread ID: 1500 ---
    7C809C86 kernel32.dll WaitForMultipleObjects+24 (0x00000002,0x0BDCFF84,0x00000000,0xFFFFFFFF)
    3C3F4B1E sblsp.dll    <unknown symbol>+0 (0x0B96030C,0x00000000,0x00000000,0x0B96030C)
    7C80B50B kernel32.dll GetModuleFileNameA+436 (0x3C3EAC00,0x0B96030C,0x00000000,0x00000000)
    
    --- Thread ID: 4148 ---
    7C80B50B kernel32.dll GetModuleFileNameA+436 (0x7C92798D,0x00000000,0x00000000,0x00000000)
    
    --- Thread ID: 3804 ---
    3C3F72AB sblsp.dll    GetLspGuid+2731 (0x00000000,0x0050005C,0x004F0052,0x000024A4)
    7C80B50B kernel32.dll GetModuleFileNameA+436 (0x3C3F7260,0x000024A4,0x00000000,0x00000000)
    
    --- Thread ID: 5736 ---
    3C3F72AB sblsp.dll    GetLspGuid+2731 (0x00000000,0x0050005C,0x004F0052,0x000024A4)
    7C80B50B kernel32.dll GetModuleFileNameA+436 (0x3C3F7260,0x000024A4,0x00000000,0x00905A4D)
    
    --- Thread ID: 5960 ---
    7C80B50B kernel32.dll GetModuleFileNameA+436 (0x71AA2B11,0x0027EA50,0x00000000,0x00000000)
    
    --- Thread ID: 4860 ---
    7C809C86 kernel32.dll WaitForMultipleObjects+24 (0x00000002,0x0CE4FF84,0x00000000,0xFFFFFFFF)
    334328EE CommPipe.dll DestroyPipeEventThreadManager+37838 (0x0C9E1EAC,0x00000000,0x00000000,0x0C9E1EAC)
    7C80B50B kernel32.dll GetModuleFileNameA+436 (0x334157A0,0x0C9E1EAC,0x00000000,0x00000008)
    
    --- Thread ID: 6480 ---
    7C809C86 kernel32.dll WaitForMultipleObjects+24 (0x00000002,0x0D6FFF84,0x00000000,0xFFFFFFFF)
    1007BB3E Collector.dll <unknown symbol>+0 (0x0D39030C,0x00000000,0x00000000,0x0D39030C)
    7C80B50B kernel32.dll GetModuleFileNameA+436 (0x1007C990,0x0D39030C,0x00000000,0x00000000)
    
    --- Thread ID: 6788 ---
    288F209E Accelerator.dll DestroyILspLoader+447342 (0x0C675F28,0x0D86FFB4,0x0C675F28,0x0C67043C)
    2884403D Accelerator.dll <unknown symbol>+0 (0x00000000,0x00000000,0x00000000,0x00000000)
    
    --- Thread ID: 2328 ---
    7C809C86 kernel32.dll WaitForMultipleObjects+24 (0x00000002,0x0D9DFF88,0x00000000,0xFFFFFFFF)
    288F5D8E Accelerator.dll DestroyILspLoader+462942 (0x0C673144,0x00000000,0x00000000,0x0C673144)
    7C80B50B kernel32.dll GetModuleFileNameA+436 (0x2885B8B0,0x0C673144,0x00000000,0x00000008)
    
    --- Thread ID: 4344 ---
    7C80B50B kernel32.dll GetModuleFileNameA+436 (0x71A5D2C6,0x0CBDE7F8,0x00000000,0x00000000)
    
    --- Thread ID: 7820 ---
    7C802542 kernel32.dll WaitForSingleObject+18 (0x00002698,0x00000064,0x0F34FF98,0x00826776)
    006AB710 WoW.exe      <unknown symbol>+0 (0x00000064,0x00826760,0x0F34FFB4,0x006A79A7)
    00826776 WoW.exe      <unknown symbol>+0 (0x0A0D09C8,0x0A0E67E0,0x00000008,0x09ED9CE0)
    006A79A7 WoW.exe      <unknown symbol>+0 (0x0000269C,0x0A0E67E0,0x00000008,0x09ED9CE0)
    7C80B50B kernel32.dll GetModuleFileNameA+436 (0x006A7950,0x09ED9CE0,0x00000000,0x00000000)
    
    --- Thread ID: 3656 ---
    77D4BBFE USER32.dll   SetWindowTextW+288 (0x00000002,0x0F4BFF58,0xFFFFFFFF,0x00000000)
    77D4BCAD USER32.dll   MsgWaitForMultipleObjects+31 (0x00000002,0x0F4BFF58,0x00000000,0xFFFFFFFF)
    006D6E17 WoW.exe      <unknown symbol>+0 (0x01208780,0x09E81430,0x09E89788,0x0F4BFFAC)
    006D56D5 WoW.exe      <unknown symbol>+0 (0x09943790,0x94FF4D70,0x09E81430,0x09E89788)
    007EDBCF WoW.exe      <unknown symbol>+0 (0x0822E388,0x7C80B50B,0x09E89788,0x09E81430)
    007EDC74 WoW.exe      <unknown symbol>+0 (0x007EDBF5,0x09E89788,0x00000000,0x0FDD0000)
    
    --- Thread ID: 7012 ---
    7C802451 kernel32.dll Sleep+15 (0x0000000A,0x0F7EFFB4,0x0083BDC9,0x0000000A)
    00837CB4 WoW.exe      <unknown symbol>+0 (0x0000000A,0x00000000,0x00001B64,0x0F7EFFEC)
    0083BDC9 WoW.exe      <unknown symbol>+0 (0x099499E8,0x078DB1B8,0x00000000,0x099499E8)
    7C80B50B kernel32.dll GetModuleFileNameA+436 (0x0083BD5B,0x099499E8,0x00000000,0x00000000)
    
    --- Thread ID: 4972 ---
    7C802451 kernel32.dll Sleep+15 (0x0000000A,0x0F95FFB4,0x0083BDC9,0x0000000A)
    00837CB4 WoW.exe      <unknown symbol>+0 (0x0000000A,0x00000000,0x0000136C,0x0F95FFEC)
    0083BDC9 WoW.exe      <unknown symbol>+0 (0x0A012DA0,0x00000000,0x00000000,0x0A012DA0)
    7C80B50B kernel32.dll GetModuleFileNameA+436 (0x0083BD5B,0x0A012DA0,0x00000000,0x00000000)
    
    --- Thread ID: 6612 [Current Thread] ---
    00228008 <unknown module> <unknown symbol>+0 (0x08510000,0x00000000,0x00000000,0x00000000)
    
    
    ----------------------------------------
        Loaded Modules
    ----------------------------------------
    
    0x00400000 - 0x01391000  C:\Program Files\World of Warcraft\WoW.exe
    0x0C220000 - 0x0C335000  C:\Program Files\World of Warcraft\dbghelp.dll
    0x0FFD0000 - 0x0FFF8000  F:\WINDOWS\system32\rsaenh.dll
    0x10000000 - 0x10069000  C:\Program Files\World of Warcraft\DivxDecoder.dll
    0x10070000 - 0x100A2000  F:\Program Files\SpeedBit Video Accelerator\Collector.dll
    0x16080000 - 0x160A5000  F:\Program Files\Bonjour\mdnsNSP.dll
    0x24240000 - 0x2426F000  F:\Program Files\SpeedBit Video Accelerator\ConfigDB.dll
    0x28840000 - 0x289BC000  F:\Program Files\SpeedBit Video Accelerator\Accelerator.dll
    0x33410000 - 0x33454000  F:\Program Files\SpeedBit Video Accelerator\CommPipe.dll
    0x3C3E0000 - 0x3C419000  F:\PROGRA~1\SPEEDB~1\sblsp.dll
    0x4FDD0000 - 0x4FF76000  F:\WINDOWS\system32\d3d9.dll
    0x5AD70000 - 0x5ADA8000  F:\WINDOWS\system32\uxtheme.dll
    0x5B860000 - 0x5B8B4000  F:\WINDOWS\system32\NETAPI32.dll
    0x5D090000 - 0x5D127000  F:\WINDOWS\system32\comctl32.dll
    0x5ED00000 - 0x5EDCC000  F:\WINDOWS\system32\OPENGL32.dll
    0x662B0000 - 0x66308000  F:\WINDOWS\system32\hnetcfg.dll
    0x68B20000 - 0x68B40000  F:\WINDOWS\system32\GLU32.dll
    0x6D990000 - 0x6D996000  F:\WINDOWS\system32\d3d8thk.dll
    0x71A50000 - 0x71A8F000  F:\WINDOWS\system32\mswsock.dll
    0x71A90000 - 0x71A98000  F:\WINDOWS\System32\wshtcpip.dll
    0x71AA0000 - 0x71AA8000  F:\WINDOWS\system32\WS2HELP.dll
    0x71AB0000 - 0x71AC7000  F:\WINDOWS\system32\WS2_32.dll
    0x71AD0000 - 0x71AD9000  F:\WINDOWS\system32\wsock32.dll
    0x71BF0000 - 0x71C03000  F:\WINDOWS\system32\SAMLIB.dll
    0x722B0000 - 0x722B5000  F:\WINDOWS\system32\sensapi.dll
    0x72D10000 - 0x72D18000  F:\WINDOWS\system32\msacm32.drv
    0x72D20000 - 0x72D29000  F:\WINDOWS\system32\wdmaud.drv
    0x73760000 - 0x737A9000  F:\WINDOWS\system32\DDRAW.dll
    0x73BC0000 - 0x73BC6000  F:\WINDOWS\system32\DCIMAN32.dll
    0x73EE0000 - 0x73EE4000  F:\WINDOWS\system32\KsUser.dll
    0x73F10000 - 0x73F6C000  F:\WINDOWS\system32\dsound.dll
    0x74720000 - 0x7476B000  F:\WINDOWS\system32\MSCTF.dll
    0x76390000 - 0x763AD000  F:\WINDOWS\system32\IMM32.dll
    0x769C0000 - 0x76A73000  F:\WINDOWS\system32\USERENV.dll
    0x76B40000 - 0x76B6D000  F:\WINDOWS\system32\WINMM.dll
    0x76BF0000 - 0x76BFB000  F:\WINDOWS\system32\PSAPI.DLL
    0x76C30000 - 0x76C5E000  F:\WINDOWS\system32\WINTRUST.dll
    0x76C90000 - 0x76CB8000  F:\WINDOWS\system32\IMAGEHLP.dll
    0x76D60000 - 0x76D79000  F:\WINDOWS\system32\iphlpapi.dll
    0x76E80000 - 0x76E8E000  F:\WINDOWS\system32\rtutils.dll
    0x76E90000 - 0x76EA2000  F:\WINDOWS\system32\rasman.dll
    0x76EB0000 - 0x76EDF000  F:\WINDOWS\system32\TAPI32.dll
    0x76EE0000 - 0x76F1C000  F:\WINDOWS\system32\RASAPI32.DLL
    0x76F20000 - 0x76F47000  F:\WINDOWS\system32\DNSAPI.dll
    0x76F60000 - 0x76F8C000  F:\WINDOWS\system32\WLDAP32.dll
    0x76FB0000 - 0x76FB8000  F:\WINDOWS\System32\winrnr.dll
    0x76FC0000 - 0x76FC6000  F:\WINDOWS\system32\rasadhlp.dll
    0x77120000 - 0x771AC000  F:\WINDOWS\system32\OLEAUT32.dll
    0x771B0000 - 0x77256000  F:\WINDOWS\system32\WININET.dll
    0x773D0000 - 0x774D2000  F:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\comctl32.dll
    0x774E0000 - 0x7761C000  F:\WINDOWS\system32\ole32.dll
    0x77690000 - 0x776B1000  F:\WINDOWS\system32\NTMARTA.DLL
    0x77A80000 - 0x77B14000  F:\WINDOWS\system32\CRYPT32.dll
    0x77B20000 - 0x77B32000  F:\WINDOWS\system32\MSASN1.dll
    0x77BD0000 - 0x77BD7000  F:\WINDOWS\system32\midimap.dll
    0x77BE0000 - 0x77BF5000  F:\WINDOWS\system32\MSACM32.dll
    0x77C00000 - 0x77C08000  F:\WINDOWS\system32\VERSION.dll
    0x77C10000 - 0x77C68000  F:\WINDOWS\system32\msvcrt.dll
    0x77C70000 - 0x77C93000  F:\WINDOWS\system32\msv1_0.dll
    0x77D40000 - 0x77DD0000  F:\WINDOWS\system32\USER32.dll
    0x77DD0000 - 0x77E6B000  F:\WINDOWS\system32\ADVAPI32.dll
    0x77E70000 - 0x77F01000  F:\WINDOWS\system32\RPCRT4.dll
    0x77F10000 - 0x77F58000  F:\WINDOWS\system32\GDI32.dll
    0x77F60000 - 0x77FD6000  F:\WINDOWS\system32\SHLWAPI.dll
    0x77FE0000 - 0x77FF1000  F:\WINDOWS\system32\Secur32.dll
    0x7C800000 - 0x7C8F4000  F:\WINDOWS\system32\kernel32.dll
    0x7C900000 - 0x7C9B0000  F:\WINDOWS\system32\ntdll.dll
    0x7C9C0000 - 0x7D1D6000  F:\WINDOWS\system32\SHELL32.dll
    0x7E1E0000 - 0x7E281000  F:\WINDOWS\system32\urlmon.dll
    
    
    ----------------------------------------
        Memory Dump
    ----------------------------------------
    
    Code: 16 bytes starting at (EIP = 00228008)
    
    00228008: 00 00 00 00  00 00 00 00  00 00 00 00  00 00 00 00  ................
    
    
    Stack: 1024 bytes starting at (ESP = 0861FFC4)
    
    * = addr               **                                         *           
    0861FFC0: 90 20 BA 03  54 E1 A6 03  00 00 00 00  00 60 F4 7F  . ..T........`..
    0861FFD0: 05 00 00 C0  C0 FF 61 08  E8 FB 61 08  FF FF FF FF  ......a...a.....
    0861FFE0: F3 99 83 7C  18 B5 80 7C  00 00 00 00  00 00 00 00  ...|...|........
    0861FFF0: 00 00 00 00  00 00 51 08  00 00 00 00  00 00 00 00  ......Q.........
    08620000: <can't read from this address>
    
    
    ------------------------------------------------------------------------------
    hope it helps
    Last edited by totaldisarray; 03-08-2009 at 01:19 PM.

  6. #6
    arigity's Avatar Banned
    Reputation
    49
    Join Date
    Dec 2007
    Posts
    548
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    WoW.Asm.AddLine("push {0}", index);
    WoW.Asm.AddLine("call {0}", ALootSlot);
    WoW.Asm.AddLine("add esp, 12");

    you only push 1 argument but remove 3 from the stack.

  7. #7
    totaldisarray's Avatar Member
    Reputation
    1
    Join Date
    Jan 2009
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    TY

    thank you arigity that fixed it,

    now as i want to learn form this and not keep having to be spoon feed

    WoW.Asm.AddLine("add esp, 12"); would remove 3 ints (3 * 4 bytes) from the stack

    so if i wanted to remove a int64 it would be add esp, 8 is that right?

    thank you once again

    totaldisarray

  8. #8
    arigity's Avatar Banned
    Reputation
    49
    Join Date
    Dec 2007
    Posts
    548
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    np, and yes. thats what you would do.

  9. #9
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

  10. #10
    ramey's Avatar Member
    Reputation
    45
    Join Date
    Jan 2008
    Posts
    320
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You might want to remove your name from the log.

  11. #11
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ramey View Post
    You might want to remove your name from the log.
    Sssh. It's funnier if they don't notice.

  12. #12
    ramey's Avatar Member
    Reputation
    45
    Join Date
    Jan 2008
    Posts
    320
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Okayokay, shh!

    edit: too late

  13. #13
    acuz's Avatar Member
    Reputation
    2
    Join Date
    Nov 2007
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    uhm... how it work?

Similar Threads

  1. Help WoW Fish-Bot
    By Eliteplague in forum World of Warcraft General
    Replies: 2
    Last Post: 12-10-2024, 05:46 PM
  2. HELP: Gold Scam Exploit
    By GoldDragon in forum World of Warcraft General
    Replies: 11
    Last Post: 01-23-2007, 07:26 PM
  3. Banner Ad Redesign help
    By Matt in forum Community Chat
    Replies: 57
    Last Post: 07-08-2006, 08:40 PM
  4. Hit points and talent points? Please help
    By hankusdankus in forum World of Warcraft General
    Replies: 6
    Last Post: 05-04-2006, 02:00 PM
  5. bot help
    By xwhitedeathx in forum World of Warcraft General
    Replies: 3
    Last Post: 05-01-2006, 03:50 AM
All times are GMT -5. The time now is 01:19 PM. 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