WoW Crashes menu

User Tag List

Thread: WoW Crashes

Results 1 to 7 of 7
  1. #1
    undrgrnd59's Avatar Active Member
    Reputation
    16
    Join Date
    May 2008
    Posts
    140
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    WoW Crashes

    So a couple days ago I finished making a basic fishbot in C#, it reads memory for the objects, uses CastSpellById to cast fishing, and then Interact to loot it. For some reason it keeps crashing WoW though, and within like 30 seconds of turning it on too, but I don't know why. WoW doesn't even generate an error report.

    Maybe somethings wrong with the code? Is it possible I'm calling CastSpell or Interact too often and that makes it crash or something?

    Code:
                    while (running)
                    {
                        OM.refresh();
    
                        WoWGameObject bobble = getPlayerFishingBobber(OM);
    
                        if (bobble == null)
                        {
                            Core.write("Casting lure...");
                            WoWFunctions.CastSpellByID(51294);
                            System.Threading.Thread.Sleep(3500);
                        }
                        else
                        {
                            if (bobble.IsBobbing)
                            {
                                Core.write("Bobbing!");
                                bobble.Interact();
                            }
                        }
    
                        System.Threading.Thread.Sleep(1000);
                    }
    Code:
            public void Interact()
            {
                if (baseAddress != 0)
                {
                    try
                    {
                        uint codecave = Memory.AllocateMemory();
                        uint virtualMethodTable = Memory.ReadUInt(baseAddress);
    
                        Memory.Asm.Clear();
                        Memory.Asm.AddLine("fs mov eax, [0x2C]");
                        Memory.Asm.AddLine("mov eax, [eax]");
                        Memory.Asm.AddLine("add eax, 0x10");
                        Memory.Asm.AddLine("mov dword [eax], {0}", WoWObjectManager.s_curMgr);
                        Memory.Asm.AddLine("mov ecx, {0}", baseAddress);
                        Memory.Asm.AddLine("call {0}", Memory.ReadUInt(virtualMethodTable + VMT_Interact));
                        Memory.Asm.AddLine("retn");
                        Memory.Asm.InjectAndExecute(codecave);
    
                        System.Threading.Thread.Sleep(10);
                        Memory.ResumeThread();
                        Memory.FreeMemory(codecave);
                    }
                    catch (Exception ex)
                    {
                        Core.write("Exception doing 'Interact' with WoWObject: " + ex.Message);
                    }
                }
                else
                {
                    Core.write("Cannot interact with an unreferenced WoWObject.");
                }
            }
    Code:
            public static void CastSpellByID(uint id)
            {
                try
                {
                    uint codecave = Memory.AllocateMemory();
                    const uint CastSpellById = 0x004C4DB0; // Patch 3.1.3
    
                    Memory.Asm.Clear();
                    Memory.Asm.AddLine("fs mov eax, [0x2C]");
                    Memory.Asm.AddLine("mov eax, [eax]");
                    Memory.Asm.AddLine("add eax, 0x10");
                    Memory.Asm.AddLine("mov dword [eax], {0}", WoWObjectManager.s_curMgr);
                    Memory.Asm.AddLine("push 0");
                    Memory.Asm.AddLine("push 0");
                    Memory.Asm.AddLine("push 0");
                    Memory.Asm.AddLine("push {0}", id);
                    Memory.Asm.AddLine("call {0}", CastSpellById);
                    Memory.Asm.AddLine("add esp,16");
                    Memory.Asm.AddLine("retn");
    
                    Memory.Asm.InjectAndExecute(codecave);
                    Memory.FreeMemory(codecave);
                }
                catch (Exception ex)
                {
                    Core.write("Exception in CastSpellById: " + ex.Message);
                }
            }
    U59

    WoW Crashes
  2. #2
    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)
    Hey, too lazy to look at asm, and I don't work in C# but maybe because you're waiting 10ms before resuming wow's thread. Don't know though, I work in process.

  3. #3
    Cursed's Avatar Contributor
    Reputation
    270
    Join Date
    Jun 2007
    Posts
    1,380
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Maybe suspending the main thread and resuming it after execution of your code would work?

  4. #4
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    /// <summary>
    /// Runs a Lua Function
    /// </summary>
    /// <param name="pszString">script to use</param>
    public void Lua_DoString(string pszString)
    {
    wow.SuspendThread();

    wow.Asm.Clear();
    uint pScript = wow.AllocateMemory(pszString.Length + 1);
    wow.WriteASCIIString(pScript, pszString);

    wow.Asm.AddLine("mov EDX, [{0}]", (uint)sCurMgr.g_ClientConnection); //Start UpdateCurMgr
    wow.Asm.AddLine("mov EDX, [EDX+{0}]", (uint)sCurMgr.g_ClientConnection_Offset );
    wow.Asm.AddLine("FS mov EAX, [0x2C]");
    wow.Asm.AddLine("mov EAX, [EAX]");
    wow.Asm.AddLine("add EAX, 0x10");
    wow.Asm.AddLine("mov [EAX], EDX"); // End UpdateCurMgr

    wow.Asm.AddLine("mov eax, 0");
    wow.Asm.AddLine("push eax");
    wow.Asm.AddLine("mov eax, {0}", pScript);
    wow.Asm.AddLine("push eax");
    wow.Asm.AddLine("push eax");
    wow.Asm.AddLine("call {0}", (uint)Lua.Lua_DoString);
    wow.Asm.AddLine("add esp, 0xC");

    //Send a message back to know when to resume the mainthread
    uint sendmessage = (uint) GetProcAddress(LoadLibrary("User32.dll"), "SendMessageA");
    uint hwnd = (uint) Input.FindWindow(null, form.Text);
    Console.WriteLine("[{0}]The botwindow has HWND:{1:X04}", DateTime.Now, hwnd);

    wow.Asm.AddLine("push {0}", 0x10);
    wow.Asm.AddLine("push {0}", 0x10);
    wow.Asm.AddLine("push {0}", 0xBEEF);
    wow.Asm.AddLine("push {0}", hwnd);

    wow.Asm.AddLine("mov eax, {0}", sendmessage);
    wow.Asm.AddLine("call eax");
    wow.Asm.AddLine("retn");

    uint codecave = wow.AllocateMemory(0x204;
    wow.Asm.InjectAndExecute(wow.ProcessHandle, codecave);
    wow.FreeMemory(codecave);
    }


    // And in the form you just add a MessageLoop that catches the message and resumes wow.
    protected override void WndProc(ref Message m)
    {
    if (m.Msg == 0xBEEF)
    wow.ResumeThread();

    base.WndProc(ref m);
    }
    Ive used this earlier not using it anymore. But it was working pretty nice
    Feel free to use it if you want just make sure to pass in the right handle when you send the message. You can use it for interact too, making it send a message at the end so it's suspend all the way until the code has finished executing.

  5. #5
    undrgrnd59's Avatar Active Member
    Reputation
    16
    Join Date
    May 2008
    Posts
    140
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for the advice! I got rid of the Thread delay during Interact() and it seemed to be working for a while. A few minutes later WoW crashed though, but, at least this time I got a WoW error... I feel really bad posting this gigantic log from WoW because I know its lot to look at, but if someone could please tell me why this is happening, I know it would help out me as well as other noobs getting into the arts.

    Code:
    ==============================================================================
    World of WarCraft (build 9947)
    
    Exe:      Z:\World of Warcraft\WoW.exe
    Time:     Jun  7, 2009 11:31:25.389 PM
    User:     David
    Computer: LOL
    ------------------------------------------------------------------------------
    
    This application has encountered a critical error:
    
    ERROR #132 (0x85100084) Fatal Exception
    Program:	Z:\World of Warcraft\WoW.exe
    Exception:	0xC0000005 (ACCESS_VIOLATION) at 001B:00928557
    
    The instruction at "0x00928557" referenced memory at "0x458CF477".
    The memory could not be "read".
    
    
    WoWBuild: 9947
    Realm: High Times [63.241.255.4:3724]
    Local Zone: The Underbelly, Dalaran
    Local Player: Cheech n Chong, 0400000002AAB195, (5726.01,666.608,613.244)
    Current Object Track: ZarakÃ*, 04000000028E9D88, (5728.71,666.399,613.244)
    Locked Target: Giant Sewer Rat, F530007B572D81AD, (5725.12,668.286,613.244)
    ----------------------------------------
        x86 Registers
    ----------------------------------------
    
    EAX=458CF45F  EBX=3B496698  ECX=0D38F9C8  EDX=00000004  ESI=0D01C088
    EDI=0D01C088  EBP=0019EA74  ESP=0019EA74  EIP=00928557  FLG=00010216
    CS =001B      DS =0023      ES =0023      SS =0023      FS =003B      GS =0000
    
    
    ----------------------------------------
        Stack Trace (Manual)
    ----------------------------------------
    
    Address  Frame    Logical addr  Module
    
    Showing 30/30 threads...
    
    --- Thread ID: 4036 [Current Thread] ---
    // Excluded to save space, let me know if this is important and I will reproduce.
    
    --- Thread ID: 2900 ---
    775C1C7A 0035FF20 0001:00000C7A C:\Windows\system32\kernel32.dll
    004245E4 0035FF48 0001:000235E4 Z:\World of Warcraft\WoW.exe
    008D967F 0035FF80 0001:004D867F Z:\World of Warcraft\WoW.exe
    008D9724 0035FF94 0001:004D8724 Z:\World of Warcraft\WoW.exe
    778BE4B6 0035FFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 0035FFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 3128 ---
    7760C1B2 06C5FF64 0001:0004B1B2 C:\Windows\system32\kernel32.dll
    70D73DD0 06C5FF80 0001:00012DD0 C:\Windows\system32\d3d9.dll
    70D7EBCE 06C5FF88 0001:0001DBCE C:\Windows\system32\d3d9.dll
    77604911 06C5FF94 0001:00043911 C:\Windows\system32\kernel32.dll
    778BE4B6 06C5FFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 06C5FFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 4080 ---
    7760C1B2 06DCFF24 0001:0004B1B2 C:\Windows\system32\kernel32.dll
    5E8265EC 06DCFF44 0001:002F55EC C:\Windows\system32\nvd3dum.dll
    5E9181E4 06DCFF7C 0001:003E71E4 C:\Windows\system32\nvd3dum.dll
    5E91828C 06DCFF88 0001:003E728C C:\Windows\system32\nvd3dum.dll
    77604911 06DCFF94 0001:00043911 C:\Windows\system32\kernel32.dll
    778BE4B6 06DCFFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 06DCFFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 2684 ---
    7760C1B2 06F3FF24 0001:0004B1B2 C:\Windows\system32\kernel32.dll
    5E8265EC 06F3FF44 0001:002F55EC C:\Windows\system32\nvd3dum.dll
    5E9181E4 06F3FF7C 0001:003E71E4 C:\Windows\system32\nvd3dum.dll
    5E91828C 06F3FF88 0001:003E728C C:\Windows\system32\nvd3dum.dll
    77604911 06F3FF94 0001:00043911 C:\Windows\system32\kernel32.dll
    778BE4B6 06F3FFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 06F3FFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 2312 ---
    775C1C7A 070AFB40 0001:00000C7A C:\Windows\system32\kernel32.dll
    0046E92D 070AFB4C 0001:0006D92D Z:\World of Warcraft\WoW.exe
    007DAAD5 070AFF6C 0001:003D9AD5 Z:\World of Warcraft\WoW.exe
    0053BBE7 070AFF88 0001:0013ABE7 Z:\World of Warcraft\WoW.exe
    77604911 070AFF94 0001:00043911 C:\Windows\system32\kernel32.dll
    778BE4B6 070AFFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 070AFFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 3396 ---
    7760C1B2 07B7FF44 0001:0004B1B2 C:\Windows\system32\kernel32.dll
    00540210 07B7FF54 0001:0013F210 Z:\World of Warcraft\WoW.exe
    00477D72 07B7FF6C 0001:00076D72 Z:\World of Warcraft\WoW.exe
    0053BBE7 07B7FF88 0001:0013ABE7 Z:\World of Warcraft\WoW.exe
    77604911 07B7FF94 0001:00043911 C:\Windows\system32\kernel32.dll
    778BE4B6 07B7FFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 07B7FFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 2916 ---
    77604911 0A0CFF94 0001:00043911 C:\Windows\system32\kernel32.dll
    778BE4B6 0A0CFFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 0A0CFFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 832 ---
    775C1C7A 0A23FF68 0001:00000C7A C:\Windows\system32\kernel32.dll
    008552DD 0A23FF74 0001:004542DD Z:\World of Warcraft\WoW.exe
    00855B0C 0A23FF88 0001:00454B0C Z:\World of Warcraft\WoW.exe
    77604911 0A23FF94 0001:00043911 C:\Windows\system32\kernel32.dll
    778BE4B6 0A23FFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 0A23FFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 792 ---
    775C1C7A 0A3AFF68 0001:00000C7A C:\Windows\system32\kernel32.dll
    008552DD 0A3AFF74 0001:004542DD Z:\World of Warcraft\WoW.exe
    00855B0C 0A3AFF88 0001:00454B0C Z:\World of Warcraft\WoW.exe
    77604911 0A3AFF94 0001:00043911 C:\Windows\system32\kernel32.dll
    778BE4B6 0A3AFFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 0A3AFFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 2376 ---
    7760C1B2 0B4EFF48 0001:0004B1B2 C:\Windows\system32\kernel32.dll
    00540210 0B4EFF58 0001:0013F210 Z:\World of Warcraft\WoW.exe
    007ADA89 0B4EFF88 0001:003ACA89 Z:\World of Warcraft\WoW.exe
    77604911 0B4EFF94 0001:00043911 C:\Windows\system32\kernel32.dll
    778BE4B6 0B4EFFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 0B4EFFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 1988 ---
    7760C1B2 0B91FF38 0001:0004B1B2 C:\Windows\system32\kernel32.dll
    00540210 0B91FF48 0001:0013F210 Z:\World of Warcraft\WoW.exe
    00462125 0B91FF60 0001:00061125 Z:\World of Warcraft\WoW.exe
    00462291 0B91FF6C 0001:00061291 Z:\World of Warcraft\WoW.exe
    0053BBE7 0B91FF88 0001:0013ABE7 Z:\World of Warcraft\WoW.exe
    77604911 0B91FF94 0001:00043911 C:\Windows\system32\kernel32.dll
    778BE4B6 0B91FFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 0B91FFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 2808 ---
    7760C64E 0BA8FD08 0001:0004B64E C:\Windows\system32\kernel32.dll
    0046293B 0BA8FF60 0001:0006193B Z:\World of Warcraft\WoW.exe
    004620CE 0BA8FF6C 0001:000610CE Z:\World of Warcraft\WoW.exe
    0053BBE7 0BA8FF88 0001:0013ABE7 Z:\World of Warcraft\WoW.exe
    77604911 0BA8FF94 0001:00043911 C:\Windows\system32\kernel32.dll
    778BE4B6 0BA8FFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 0BA8FFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 4072 ---
    77490208 0BBFFEE8 0001:0001F208 C:\Windows\system32\USER32.dll
    77489B58 0BBFFF04 0001:00018B58 C:\Windows\system32\USER32.dll
    004415D9 0BBFFF34 0001:000405D9 Z:\World of Warcraft\WoW.exe
    004425DA 0BBFFF48 0001:000415DA Z:\World of Warcraft\WoW.exe
    008D967F 0BBFFF80 0001:004D867F Z:\World of Warcraft\WoW.exe
    008D9724 0BBFFF94 0001:004D8724 Z:\World of Warcraft\WoW.exe
    778BE4B6 0BBFFFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 0BBFFFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 2828 ---
    75581FC8 0DF0FBA8 0001:00000FC8 C:\Windows\system32\mswsock.dll
    77441693 0DF0FC28 0001:00000693 C:\Windows\system32\WS2_32.dll
    77A013A2 0DF0FF80 0001:000103A2 C:\Windows\system32\WININET.dll
    77A1BCD0 0DF0FF88 0001:0002ACD0 C:\Windows\system32\WININET.dll
    77604911 0DF0FF94 0001:00043911 C:\Windows\system32\kernel32.dll
    778BE4B6 0DF0FFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 0DF0FFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 2572 ---
    7760C1B2 0E35FF48 0001:0004B1B2 C:\Windows\system32\kernel32.dll
    00895FF5 0E35FF64 0001:00494FF5 Z:\World of Warcraft\WoW.exe
    0085547A 0E35FF74 0001:0045447A Z:\World of Warcraft\WoW.exe
    00855AD0 0E35FF88 0001:00454AD0 Z:\World of Warcraft\WoW.exe
    77604911 0E35FF94 0001:00043911 C:\Windows\system32\kernel32.dll
    778BE4B6 0E35FFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 0E35FFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 1028 ---
    77490208 0E7CFEE8 0001:0001F208 C:\Windows\system32\USER32.dll
    77489B58 0E7CFF04 0001:00018B58 C:\Windows\system32\USER32.dll
    004415D9 0E7CFF34 0001:000405D9 Z:\World of Warcraft\WoW.exe
    004425DA 0E7CFF48 0001:000415DA Z:\World of Warcraft\WoW.exe
    008D967F 0E7CFF80 0001:004D867F Z:\World of Warcraft\WoW.exe
    008D9724 0E7CFF94 0001:004D8724 Z:\World of Warcraft\WoW.exe
    778BE4B6 0E7CFFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 0E7CFFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 364 ---
    77604911 0E93FF94 0001:00043911 C:\Windows\system32\kernel32.dll
    778BE4B6 0E93FFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 0E93FFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 3372 ---
    7760C1B2 0EAAFF48 0001:0004B1B2 C:\Windows\system32\kernel32.dll
    00895FF5 0EAAFF64 0001:00494FF5 Z:\World of Warcraft\WoW.exe
    0085547A 0EAAFF74 0001:0045447A Z:\World of Warcraft\WoW.exe
    00855AD0 0EAAFF88 0001:00454AD0 Z:\World of Warcraft\WoW.exe
    77604911 0EAAFF94 0001:00043911 C:\Windows\system32\kernel32.dll
    778BE4B6 0EAAFFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 0EAAFFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 3332 ---
    762C6FF0 10DCFEDC 0001:00045FF0 C:\Windows\system32\RPCRT4.dll
    762C7090 10DCFF4C 0001:00046090 C:\Windows\system32\RPCRT4.dll
    762C4F40 10DCFF54 0001:00043F40 C:\Windows\system32\RPCRT4.dll
    762C4F07 10DCFF7C 0001:00043F07 C:\Windows\system32\RPCRT4.dll
    762C4F6C 10DCFF88 0001:00043F6C C:\Windows\system32\RPCRT4.dll
    77604911 10DCFF94 0001:00043911 C:\Windows\system32\kernel32.dll
    778BE4B6 10DCFFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 10DCFFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 4092 ---
    77604911 113CFF94 0001:00043911 C:\Windows\system32\kernel32.dll
    778BE4B6 113CFFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 113CFFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 1692 ---
    776DE0B1 1209FF78 0001:0003D0B1 C:\Windows\system32\ole32.dll
    776DE0E2 1209FF88 0001:0003D0E2 C:\Windows\system32\ole32.dll
    77604911 1209FF94 0001:00043911 C:\Windows\system32\kernel32.dll
    778BE4B6 1209FFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 1209FFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 4088 ---
    77604911 0FD5FF94 0001:00043911 C:\Windows\system32\kernel32.dll
    778BE4B6 0FD5FFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 0FD5FFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 3752 ---
    77490208 1409FEE8 0001:0001F208 C:\Windows\system32\USER32.dll
    77489B58 1409FF04 0001:00018B58 C:\Windows\system32\USER32.dll
    004415D9 1409FF34 0001:000405D9 Z:\World of Warcraft\WoW.exe
    004425DA 1409FF48 0001:000415DA Z:\World of Warcraft\WoW.exe
    008D967F 1409FF80 0001:004D867F Z:\World of Warcraft\WoW.exe
    008D9724 1409FF94 0001:004D8724 Z:\World of Warcraft\WoW.exe
    778BE4B6 1409FFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 1409FFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 704 ---
    7760C1B2 156AFF24 0001:0004B1B2 C:\Windows\system32\kernel32.dll
    5E8265EC 156AFF44 0001:002F55EC C:\Windows\system32\nvd3dum.dll
    5E9181E4 156AFF7C 0001:003E71E4 C:\Windows\system32\nvd3dum.dll
    5E91828C 156AFF88 0001:003E728C C:\Windows\system32\nvd3dum.dll
    77604911 156AFF94 0001:00043911 C:\Windows\system32\kernel32.dll
    778BE4B6 156AFFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 156AFFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 3704 ---
    7760C1B2 1581FF24 0001:0004B1B2 C:\Windows\system32\kernel32.dll
    5E8265EC 1581FF44 0001:002F55EC C:\Windows\system32\nvd3dum.dll
    5E9181E4 1581FF7C 0001:003E71E4 C:\Windows\system32\nvd3dum.dll
    5E91828C 1581FF88 0001:003E728C C:\Windows\system32\nvd3dum.dll
    77604911 1581FF94 0001:00043911 C:\Windows\system32\kernel32.dll
    778BE4B6 1581FFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 1581FFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 3576 ---
    7760C1B2 1598FF4C 0001:0004B1B2 C:\Windows\system32\kernel32.dll
    00540210 1598FF5C 0001:0013F210 Z:\World of Warcraft\WoW.exe
    008F15C6 1598FF6C 0001:004F05C6 Z:\World of Warcraft\WoW.exe
    0053BBE7 1598FF88 0001:0013ABE7 Z:\World of Warcraft\WoW.exe
    77604911 1598FF94 0001:00043911 C:\Windows\system32\kernel32.dll
    778BE4B6 1598FFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 1598FFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 2596 ---
    77490208 15EFFEE8 0001:0001F208 C:\Windows\system32\USER32.dll
    77489B58 15EFFF04 0001:00018B58 C:\Windows\system32\USER32.dll
    004415D9 15EFFF34 0001:000405D9 Z:\World of Warcraft\WoW.exe
    004425DA 15EFFF48 0001:000415DA Z:\World of Warcraft\WoW.exe
    008D967F 15EFFF80 0001:004D867F Z:\World of Warcraft\WoW.exe
    008D9724 15EFFF94 0001:004D8724 Z:\World of Warcraft\WoW.exe
    778BE4B6 15EFFFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 15EFFFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 1824 ---
    77490208 256FFEE8 0001:0001F208 C:\Windows\system32\USER32.dll
    77489B58 256FFF04 0001:00018B58 C:\Windows\system32\USER32.dll
    004415D9 256FFF34 0001:000405D9 Z:\World of Warcraft\WoW.exe
    004425DA 256FFF48 0001:000415DA Z:\World of Warcraft\WoW.exe
    008D967F 256FFF80 0001:004D867F Z:\World of Warcraft\WoW.exe
    008D9724 256FFF94 0001:004D8724 Z:\World of Warcraft\WoW.exe
    778BE4B6 256FFFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 256FFFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    --- Thread ID: 1184 ---
    762C6FF0 474CFEDC 0001:00045FF0 C:\Windows\system32\RPCRT4.dll
    762C7090 474CFF4C 0001:00046090 C:\Windows\system32\RPCRT4.dll
    762C4F40 474CFF54 0001:00043F40 C:\Windows\system32\RPCRT4.dll
    762C4F07 474CFF7C 0001:00043F07 C:\Windows\system32\RPCRT4.dll
    762C4F6C 474CFF88 0001:00043F6C C:\Windows\system32\RPCRT4.dll
    77604911 474CFF94 0001:00043911 C:\Windows\system32\kernel32.dll
    778BE4B6 474CFFD4 0001:0003D4B6 C:\Windows\system32\ntdll.dll
    778BE489 474CFFEC 0001:0003D489 C:\Windows\system32\ntdll.dll
    
    ----------------------------------------
        Stack Trace (Using DBGHELP.DLL)
    ----------------------------------------
    
    Showing 30/30 threads...
    
    --- Thread ID: 4036 [Current Thread] ---
    00928557 WoW.exe      <unknown symbol>+0 (0x21424A67,0x0D38F9C8,0x3B4966A8,0x0019EAB8)
    
    --- Thread ID: 2900 ---
    775C1C7A kernel32.dll Sleep+15 (0x00000064,0x00000000,0x039652C0,0x03965280)
    004245E4 WoW.exe      <unknown symbol>+0 (0x03965280,0xEBD3A164,0x00000000,0x039652C0)
    008D967F WoW.exe      <unknown symbol>+0 (0x00000000,0x77604911,0x039652C0,0x0035FFD4)
    008D9724 WoW.exe      <unknown symbol>+0 (0x039652C0,0x73BD3278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x008D96A5,0x039652C0,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x008D96A5,0x039652C0,0x00000000,0x00C3310F)
    
    --- Thread ID: 3128 ---
    7760C1B2 kernel32.dll WaitForSingleObject+18 (0x000021F0,0xFFFFFFFF,0x00000000,0x00000000)
    70D73DD0 d3d9.dll     Direct3DCreate9Ex+14190 (0x06C5FF94,0x77604911,0x06960040,0x06C5FFD4)
    70D7EBCE d3d9.dll     Direct3DCreate9Ex+58732 (0x06960040,0x06C5FFD4,0x778BE4B6,0x06960040)
    77604911 kernel32.dll BaseThreadInitThunk+18 (0x06960040,0x754D3278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x70D7EBC1,0x06960040,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x70D7EBC1,0x06960040,0x00000000,0x00000000)
    
    --- Thread ID: 4080 ---
    7760C1B2 kernel32.dll WaitForSingleObject+18 (0x000021F8,0xFFFFFFFF,0x00000000,0x0563EB30)
    5E8265EC nvd3dum.dll  QueryOglResource+350060 (0x053AAA20,0xECD680F4,0x00000000,0x00000000)
    5E9181E4 nvd3dum.dll  NvDiagUmdCommand+772660 (0x00000000,0x06DCFF94,0x77604911,0x0563EB30)
    5E91828C nvd3dum.dll  NvDiagUmdCommand+772828 (0x0563EB30,0x06DCFFD4,0x778BE4B6,0x0563EB30)
    77604911 kernel32.dll BaseThreadInitThunk+18 (0x0563EB30,0x75543278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x5E91820A,0x0563EB30,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x5E91820A,0x0563EB30,0x00000000,0x00000000)
    
    --- Thread ID: 2684 ---
    7760C1B2 kernel32.dll WaitForSingleObject+18 (0x000021F8,0xFFFFFFFF,0x00000000,0x0563ED50)
    5E8265EC nvd3dum.dll  QueryOglResource+350060 (0x053AAA20,0xECF980F4,0x00000000,0x00000000)
    5E9181E4 nvd3dum.dll  NvDiagUmdCommand+772660 (0x00000000,0x06F3FF94,0x77604911,0x0563ED50)
    5E91828C nvd3dum.dll  NvDiagUmdCommand+772828 (0x0563ED50,0x06F3FFD4,0x778BE4B6,0x0563ED50)
    77604911 kernel32.dll BaseThreadInitThunk+18 (0x0563ED50,0x757B3278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x5E91820A,0x0563ED50,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x5E91820A,0x0563ED50,0x00000000,0x00000000)
    
    --- Thread ID: 2312 ---
    775C1C7A kernel32.dll Sleep+15 (0x00000001,0x070AFF6C,0x007DAAD5,0x00000001)
    0046E92D WoW.exe      <unknown symbol>+0 (0x00000001,0x007DA900,0x03F9B558,0x00000908)
    007DAAD5 WoW.exe      <unknown symbol>+0 (0x03F9B558,0x00000000,0x00000000,0x03B2AD68)
    0053BBE7 WoW.exe      <unknown symbol>+0 (0x0000220C,0x070AFFD4,0x778BE4B6,0x03B2AD68)
    77604911 kernel32.dll BaseThreadInitThunk+18 (0x03B2AD68,0x74823278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x0053BB90,0x03B2AD68,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x0053BB90,0x03B2AD68,0x00000000,0x07D00000)
    
    --- Thread ID: 3396 ---
    7760C1B2 kernel32.dll WaitForSingleObject+18 (0x00002124,0xFFFFFFFF,0x07B7FF6C,0x00477D72)
    00540210 WoW.exe      <unknown symbol>+0 (0xFFFFFFFF,0x01072010,0x00000D44,0x00477D10)
    00477D72 WoW.exe      <unknown symbol>+0 (0x01072010,0x00000000,0x00000000,0x076771D0)
    0053BBE7 WoW.exe      <unknown symbol>+0 (0x00002210,0x07B7FFD4,0x778BE4B6,0x076771D0)
    77604911 kernel32.dll BaseThreadInitThunk+18 (0x076771D0,0x743F3278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x0053BB90,0x076771D0,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x0053BB90,0x076771D0,0x00000000,0x08670000)
    
    --- Thread ID: 2916 ---
    77604911 kernel32.dll BaseThreadInitThunk+18 (0x00000000,0x79843278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x74534383,0x00000000,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x74534383,0x00000000,0x00000000,0x00000000)
    
    --- Thread ID: 832 ---
    775C1C7A kernel32.dll Sleep+15 (0x0000000A,0x0A23FF88,0x00855B0C,0x0000000A)
    008552DD WoW.exe      <unknown symbol>+0 (0x0000000A,0x00000000,0x00000340,0x0A23FF94)
    00855B0C WoW.exe      <unknown symbol>+0 (0x085BB220,0x0A23FFD4,0x778BE4B6,0x085BB220)
    77604911 kernel32.dll BaseThreadInitThunk+18 (0x085BB220,0x79AB3278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x00855A90,0x085BB220,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x00855A90,0x085BB220,0x00000000,0x00000000)
    
    --- Thread ID: 792 ---
    775C1C7A kernel32.dll Sleep+15 (0x0000000A,0x0A3AFF88,0x00855B0C,0x0000000A)
    008552DD WoW.exe      <unknown symbol>+0 (0x0000000A,0x00000000,0x00000318,0x0A3AFF94)
    00855B0C WoW.exe      <unknown symbol>+0 (0x085B2BA0,0x0A3AFFD4,0x778BE4B6,0x085B2BA0)
    77604911 kernel32.dll BaseThreadInitThunk+18 (0x085B2BA0,0x79B23278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x00855A90,0x085B2BA0,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x00855A90,0x085B2BA0,0x00000000,0x159EC1AC)
    
    --- Thread ID: 2376 ---
    7760C1B2 kernel32.dll WaitForSingleObject+18 (0x00002134,0xFFFFFFFF,0x0B4EFF88,0x007ADA89)
    00540210 WoW.exe      <unknown symbol>+0 (0xFFFFFFFF,0x00000948,0x007AD8B0,0x00000000)
    007ADA89 WoW.exe      <unknown symbol>+0 (0x000022C8,0x0B4EFFD4,0x778BE4B6,0x0AF93A70)
    77604911 kernel32.dll BaseThreadInitThunk+18 (0x0AF93A70,0x78C63278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x0053BB90,0x0AF93A70,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x0053BB90,0x0AF93A70,0x00000000,0x0B650000)
    
    --- Thread ID: 1988 ---
    7760C1B2 kernel32.dll WaitForSingleObject+18 (0x000022D0,0x000003E8,0x0B91FF60,0x00462125)
    00540210 WoW.exe      <unknown symbol>+0 (0x000003E8,0x000007C4,0x00462280,0x0B14A8B0)
    00462125 WoW.exe      <unknown symbol>+0 (0x00000000,0x0B91FF88,0x0053BBE7,0x0B14A8B0)
    00462291 WoW.exe      <unknown symbol>+0 (0x0B14A8B0,0x00000000,0x00000000,0x0AF93A70)
    0053BBE7 WoW.exe      <unknown symbol>+0 (0x00002374,0x0B91FFD4,0x778BE4B6,0x0AF93A70)
    77604911 kernel32.dll BaseThreadInitThunk+18 (0x0AF93A70,0x78193278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x0053BB90,0x0AF93A70,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x0053BB90,0x0AF93A70,0x00000000,0x00000000)
    
    --- Thread ID: 2808 ---
    7760C64E kernel32.dll WaitForMultipleObjects+24 (0x00000002,0x0BA8FE2C,0x00000000,0x000001F4)
    0046293B WoW.exe      <unknown symbol>+0 (0x004620C0,0x0BA8FF88,0x0053BBE7,0x0B14A8A0)
    004620CE WoW.exe      <unknown symbol>+0 (0x0B14A8A0,0x00000000,0x00000000,0x0AF93AA0)
    0053BBE7 WoW.exe      <unknown symbol>+0 (0x00002378,0x0BA8FFD4,0x778BE4B6,0x0AF93AA0)
    77604911 kernel32.dll BaseThreadInitThunk+18 (0x0AF93AA0,0x78203278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x0053BB90,0x0AF93AA0,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x0053BB90,0x0AF93AA0,0x00000000,0x00000000)
    
    --- Thread ID: 4072 ---
    77490208 USER32.dll   TranslateMessageEx+370 (0x00002388,0x0BBFFF2C,0xFFFFFFFF,0x00000000)
    77489B58 USER32.dll   MsgWaitForMultipleObjects+31 (0x00000002,0x0BBFFF2C,0x00000000,0xFFFFFFFF)
    004415D9 WoW.exe      <unknown symbol>+0 (0x0106A1D0,0x00000000,0x0B2CA548,0x0BBFFF80)
    004425DA WoW.exe      <unknown symbol>+0 (0x0AF960B8,0xE059A164,0x00000000,0x0B2CA548)
    008D967F WoW.exe      <unknown symbol>+0 (0x00000000,0x77604911,0x0B2CA548,0x0BBFFFD4)
    008D9724 WoW.exe      <unknown symbol>+0 (0x0B2CA548,0x78373278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x008D96A5,0x0B2CA548,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x008D96A5,0x0B2CA548,0x00000000,0x021400A0)
    
    --- Thread ID: 2828 ---
    75581FC8 mswsock.dll  <unknown symbol>+0 (0x00000001,0x0DF0FE58,0x0DF0FC50,0x0DF0FD54)
    77441693 WS2_32.dll   select+159 (0x00000001,0x0DF0FE58,0x0DF0FC50,0x0DF0FD54)
    77A013A2 WININET.dll  InternetCreateUrlW+3133 (0x0DF0FF94,0x77604911,0x018CAB00,0x0DF0FFD4)
    77A1BCD0 WININET.dll  InternetSetStatusCallbackA+483 (0x018CAB00,0x0DF0FFD4,0x778BE4B6,0x018CAB00)
    77604911 kernel32.dll BaseThreadInitThunk+18 (0x018CAB00,0x7E783278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x77A1BCC3,0x018CAB00,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x77A1BCC3,0x018CAB00,0x00000000,0x122A0000)
    
    --- Thread ID: 2572 ---
    7760C1B2 kernel32.dll WaitForSingleObject+18 (0x00002420,0xFFFFFFFF,0x00000000,0x0D02A344)
    00895FF5 WoW.exe      <unknown symbol>+0 (0x0CD79608,0xFFFFFFFF,0x0E35FF88,0x00855AD0)
    0085547A WoW.exe      <unknown symbol>+0 (0x0CD79608,0x00000000,0x00000A0C,0x0E35FF94)
    00855AD0 WoW.exe      <unknown symbol>+0 (0x0D02A344,0x0E35FFD4,0x778BE4B6,0x0D02A344)
    77604911 kernel32.dll BaseThreadInitThunk+18 (0x0D02A344,0x7DBD3278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x00855A90,0x0D02A344,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x00855A90,0x0D02A344,0x00000000,0x37FC352E)
    
    --- Thread ID: 1028 ---
    77490208 USER32.dll   TranslateMessageEx+370 (0x000024B8,0x0E7CFF2C,0xFFFFFFFF,0x00000000)
    77489B58 USER32.dll   MsgWaitForMultipleObjects+31 (0x00000002,0x0E7CFF2C,0x00000000,0xFFFFFFFF)
    004415D9 WoW.exe      <unknown symbol>+0 (0x0106A218,0x00000000,0x079F5020,0x0E7CFF80)
    004425DA WoW.exe      <unknown symbol>+0 (0x0AF97138,0xE59AA164,0x00000000,0x079F5020)
    008D967F WoW.exe      <unknown symbol>+0 (0x00000000,0x77604911,0x079F5020,0x0E7CFFD4)
    008D9724 WoW.exe      <unknown symbol>+0 (0x079F5020,0x7DF43278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x008D96A5,0x079F5020,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x008D96A5,0x079F5020,0x00000000,0x00000000)
    
    --- Thread ID: 364 ---
    77604911 kernel32.dll BaseThreadInitThunk+18 (0x01999B68,0x7D1B3278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x7746101C,0x01999B68,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x7746101C,0x01999B68,0x00000000,0x00000000)
    
    --- Thread ID: 3372 ---
    7760C1B2 kernel32.dll WaitForSingleObject+18 (0x000024C4,0xFFFFFFFF,0x00000000,0x0D02AA9C)
    00895FF5 WoW.exe      <unknown symbol>+0 (0x0CD79248,0xFFFFFFFF,0x0EAAFF88,0x00855AD0)
    0085547A WoW.exe      <unknown symbol>+0 (0x0CD79248,0x00000000,0x00000D2C,0x0EAAFF94)
    00855AD0 WoW.exe      <unknown symbol>+0 (0x0D02AA9C,0x0EAAFFD4,0x778BE4B6,0x0D02AA9C)
    77604911 kernel32.dll BaseThreadInitThunk+18 (0x0D02AA9C,0x7D223278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x00855A90,0x0D02AA9C,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x00855A90,0x0D02AA9C,0x00000000,0x159EC1AC)
    
    --- Thread ID: 3332 ---
    762C6FF0 RPCRT4.dll   UuidCreate+198 (0xFFFFFFFF,0x10DCFF44,0x10DCFF40,0x10DCFF28)
    762C7090 RPCRT4.dll   UuidCreate+358 (0x10DCFF7C,0x762C4F07,0x01917C68,0x00000000)
    762C4F40 RPCRT4.dll   I_RpcSend+385 (0x01917C68,0x00000000,0x00000000,0x0196A8D8)
    762C4F07 RPCRT4.dll   I_RpcSend+328 (0x0197DEA0,0x10DCFF94,0x77604911,0x0196A8D8)
    762C4F6C RPCRT4.dll   I_RpcSend+429 (0x0196A8D8,0x10DCFFD4,0x778BE4B6,0x0196A8D8)
    77604911 kernel32.dll BaseThreadInitThunk+18 (0x0196A8D8,0x63543278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x762C4F4E,0x0196A8D8,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x762C4F4E,0x0196A8D8,0x00000000,0x00000001)
    
    --- Thread ID: 4092 ---
    77604911 kernel32.dll BaseThreadInitThunk+18 (0x0E3ABD40,0x62B43278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x778BB61B,0x0E3ABD40,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x00600060,0x00600060,0x00600060,0x00600060)
    00600060 WoW.exe      <unknown symbol>+0 (0x00000000,0x00000000,0x00000000,0x00000000)
    
    --- Thread ID: 1692 ---
    776DE0B1 ole32.dll    CoRegisterSurrogateEx+13765 (0x00000000,0x00000000,0x1209FF94,0x77604911)
    776DE0E2 ole32.dll    CoRegisterSurrogateEx+13814 (0x0197D518,0x1209FFD4,0x778BE4B6,0x0197D518)
    77604911 kernel32.dll BaseThreadInitThunk+18 (0x0197D518,0x61813278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x776DE0CC,0x0197D518,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x776DE0CC,0x0197D518,0x00000000,0x10A452AC)
    
    --- Thread ID: 4088 ---
    77604911 kernel32.dll BaseThreadInitThunk+18 (0x019054E8,0x7C5D3278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x755859DA,0x019054E8,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x755859DA,0x019054E8,0x00000000,0x12DFA49B)
    
    --- Thread ID: 3752 ---
    77490208 USER32.dll   TranslateMessageEx+370 (0x000026AC,0x1409FF2C,0xFFFFFFFF,0x00000000)
    77489B58 USER32.dll   MsgWaitForMultipleObjects+31 (0x00000002,0x1409FF2C,0x00000000,0xFFFFFFFF)
    004415D9 WoW.exe      <unknown symbol>+0 (0x0106A278,0x00000000,0x079F5698,0x1409FF80)
    004425DA WoW.exe      <unknown symbol>+0 (0x0AF97538,0xFFEFA164,0x00000000,0x079F5698)
    008D967F WoW.exe      <unknown symbol>+0 (0x00000000,0x77604911,0x079F5698,0x1409FFD4)
    008D9724 WoW.exe      <unknown symbol>+0 (0x079F5698,0x67813278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x008D96A5,0x079F5698,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x008D96A5,0x079F5698,0x00000000,0x1CB6D3E7)
    
    --- Thread ID: 704 ---
    7760C1B2 kernel32.dll WaitForSingleObject+18 (0x00002690,0xFFFFFFFF,0x00000000,0x056DABC0)
    5E8265EC nvd3dum.dll  QueryOglResource+350060 (0x053AA8AC,0xFF6080F4,0x00000000,0x00000000)
    5E9181E4 nvd3dum.dll  NvDiagUmdCommand+772660 (0x00000000,0x156AFF94,0x77604911,0x056DABC0)
    5E91828C nvd3dum.dll  NvDiagUmdCommand+772828 (0x056DABC0,0x156AFFD4,0x778BE4B6,0x056DABC0)
    77604911 kernel32.dll BaseThreadInitThunk+18 (0x056DABC0,0x66E23278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x5E91820A,0x056DABC0,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x5E91820A,0x056DABC0,0x00000000,0x00000000)
    
    --- Thread ID: 3704 ---
    7760C1B2 kernel32.dll WaitForSingleObject+18 (0x00002690,0xFFFFFFFF,0x00000000,0x056DADE8)
    5E8265EC nvd3dum.dll  QueryOglResource+350060 (0x053AA8AC,0xFF8B80F4,0x00000000,0x00000000)
    5E9181E4 nvd3dum.dll  NvDiagUmdCommand+772660 (0x00000000,0x1581FF94,0x77604911,0x056DADE8)
    5E91828C nvd3dum.dll  NvDiagUmdCommand+772828 (0x056DADE8,0x1581FFD4,0x778BE4B6,0x056DADE8)
    77604911 kernel32.dll BaseThreadInitThunk+18 (0x056DADE8,0x66093278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x5E91820A,0x056DADE8,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x5E91820A,0x056DADE8,0x00000000,0x00000000)
    
    --- Thread ID: 3576 ---
    7760C1B2 kernel32.dll WaitForSingleObject+18 (0x000026C8,0x00000064,0x1598FF6C,0x008F15C6)
    00540210 WoW.exe      <unknown symbol>+0 (0x00000064,0x008F15B0,0x1598FF88,0x0053BBE7)
    008F15C6 WoW.exe      <unknown symbol>+0 (0x039416C8,0x00000000,0x00000000,0x0D38BAF0)
    0053BBE7 WoW.exe      <unknown symbol>+0 (0x000026D0,0x1598FFD4,0x778BE4B6,0x0D38BAF0)
    77604911 kernel32.dll BaseThreadInitThunk+18 (0x0D38BAF0,0x66103278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x0053BB90,0x0D38BAF0,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x0053BB90,0x0D38BAF0,0x00000000,0x43534552)
    
    --- Thread ID: 2596 ---
    77490208 USER32.dll   TranslateMessageEx+370 (0x0000270C,0x15EFFF2C,0xFFFFFFFF,0x00000000)
    77489B58 USER32.dll   MsgWaitForMultipleObjects+31 (0x00000002,0x15EFFF2C,0x00000000,0xFFFFFFFF)
    004415D9 WoW.exe      <unknown symbol>+0 (0x0106A2D8,0x00000000,0x079F5F38,0x15EFFF80)
    004425DA WoW.exe      <unknown symbol>+0 (0x0AF96378,0xFE09A164,0x00000000,0x079F5F38)
    008D967F WoW.exe      <unknown symbol>+0 (0x00000000,0x77604911,0x079F5F38,0x15EFFFD4)
    008D9724 WoW.exe      <unknown symbol>+0 (0x079F5F38,0x66673278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x008D96A5,0x079F5F38,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x008D96A5,0x079F5F38,0x00000000,0x10500000)
    
    --- Thread ID: 1824 ---
    77490208 USER32.dll   TranslateMessageEx+370 (0x00002648,0x256FFF2C,0xFFFFFFFF,0x00000000)
    77489B58 USER32.dll   MsgWaitForMultipleObjects+31 (0x00000002,0x256FFF2C,0x00000000,0xFFFFFFFF)
    004415D9 WoW.exe      <unknown symbol>+0 (0x0106A320,0x00000000,0x189841F8,0x256FFF80)
    004425DA WoW.exe      <unknown symbol>+0 (0x24B59780,0xCE89A164,0x00000000,0x189841F8)
    008D967F WoW.exe      <unknown symbol>+0 (0x00000000,0x77604911,0x189841F8,0x256FFFD4)
    008D9724 WoW.exe      <unknown symbol>+0 (0x189841F8,0x56E73278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x008D96A5,0x189841F8,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x008D96A5,0x189841F8,0x00000000,0x12DFA49B)
    
    --- Thread ID: 1184 ---
    762C6FF0 RPCRT4.dll   UuidCreate+198 (0x00007530,0x474CFF44,0x474CFF40,0x474CFF28)
    762C7090 RPCRT4.dll   UuidCreate+358 (0x474CFF7C,0x762C4F07,0x01917C68,0x00000000)
    762C4F40 RPCRT4.dll   I_RpcSend+385 (0x01917C68,0x00000000,0x00000000,0x0196A768)
    762C4F07 RPCRT4.dll   I_RpcSend+328 (0x0198E4D8,0x474CFF94,0x77604911,0x0196A768)
    762C4F6C RPCRT4.dll   I_RpcSend+429 (0x0196A768,0x474CFFD4,0x778BE4B6,0x0196A768)
    77604911 kernel32.dll BaseThreadInitThunk+18 (0x0196A768,0x34C43278,0x00000000,0x00000000)
    778BE4B6 ntdll.dll    RtlInitializeExceptionChain+99 (0x762C4F4E,0x0196A768,0x00000000,0x00000000)
    778BE489 ntdll.dll    RtlInitializeExceptionChain+54 (0x762C4F4E,0x0196A768,0x00000000,0x00000000)
    
    
    ----------------------------------------
        Loaded Modules
    ----------------------------------------
    
    0x00400000 - 0x01758000  Z:\World of Warcraft\WoW.exe
    0x03AC0000 - 0x03B05000  C:\Windows\system32\nvLsp.dll
    0x050A0000 - 0x0519B000  C:\Windows\system32\nvapi.dll
    0x10000000 - 0x10069000  Z:\World of Warcraft\DivxDecoder.dll
    0x16080000 - 0x160A5000  C:\Program Files\Bonjour\mdnsNSP.dll
    0x5E530000 - 0x5EC8C000  C:\Windows\system32\nvd3dum.dll
    0x623E0000 - 0x624F5000  Z:\World of Warcraft\dbghelp.dll
    0x63930000 - 0x639A8000  C:\Windows\AppPatch\AcSpecfc.DLL
    0x65630000 - 0x65692000  C:\Windows\system32\mscms.dll
    0x656B0000 - 0x6577B000  C:\Windows\system32\OPENGL32.dll
    0x6DE00000 - 0x6DE31000  C:\Windows\system32\TAPI32.dll
    0x6E1D0000 - 0x6E21A000  C:\Windows\system32\RASAPI32.dll
    0x6E3E0000 - 0x6E4C5000  C:\Windows\system32\DDRAW.dll
    0x6F8C0000 - 0x6FAC2000  C:\Windows\system32\msi.dll
    0x6FBF0000 - 0x6FC0E000  C:\Windows\system32\ShimEng.dll
    0x700A0000 - 0x700A6000  C:\Windows\system32\sensapi.dll
    0x70920000 - 0x709A8000  C:\Windows\AppPatch\AcLayers.DLL
    0x70D60000 - 0x70F1A000  C:\Windows\system32\d3d9.dll
    0x70FE0000 - 0x71013000  C:\Windows\system32\DINPUT8.dll
    0x71050000 - 0x71073000  C:\Windows\system32\GLU32.dll
    0x71250000 - 0x71292000  C:\Windows\system32\WINSPOOL.DRV
    0x712B0000 - 0x712B6000  C:\Windows\system32\rasadhlp.dll
    0x71300000 - 0x71306000  C:\Windows\system32\d3d8thk.dll
    0x71820000 - 0x71832000  C:\Windows\system32\pnrpnsp.dll
    0x718A0000 - 0x718A8000  C:\Windows\System32\winrnr.dll
    0x718B0000 - 0x718BF000  C:\Windows\system32\napinsp.dll
    0x71F60000 - 0x71F6C000  C:\Windows\system32\dwmapi.dll
    0x73870000 - 0x738F5000  C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.6001.18000_none_886786f450a74a05\COMCTL32.dll
    0x741E0000 - 0x741E7000  C:\Windows\system32\midimap.dll
    0x741F0000 - 0x74204000  C:\Windows\system32\MSACM32.dll
    0x74240000 - 0x742A6000  C:\Windows\system32\audioeng.dll
    0x74370000 - 0x74391000  C:\Windows\system32\AUDIOSES.DLL
    0x743A0000 - 0x743CF000  C:\Windows\system32\wdmaud.drv
    0x744B0000 - 0x744C4000  C:\Windows\system32\rasman.dll
    0x744D0000 - 0x744D9000  C:\Windows\system32\msacm32.drv
    0x744E0000 - 0x744EF000  C:\Windows\system32\NLAapi.dll
    0x744F0000 - 0x74529000  C:\Windows\system32\OLEACC.dll
    0x74530000 - 0x74562000  C:\Windows\system32\WINMM.dll
    0x749F0000 - 0x749F4000  C:\Windows\system32\ksuser.dll
    0x74A20000 - 0x74A26000  C:\Windows\system32\DCIMAN32.dll
    0x74B50000 - 0x74B5C000  C:\Windows\system32\rtutils.dll
    0x74BB0000 - 0x74BD7000  C:\Windows\System32\MMDevApi.dll
    0x74C10000 - 0x74C4F000  C:\Windows\system32\uxtheme.dll
    0x74E90000 - 0x7502E000  C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.6001.18000_none_5cdbaa5a083979cc\comctl32.dll
    0x75080000 - 0x750AD000  C:\Windows\system32\WINTRUST.dll
    0x75210000 - 0x75215000  C:\Windows\System32\wshtcpip.dll
    0x75220000 - 0x75227000  C:\Windows\system32\AVRT.dll
    0x75230000 - 0x7524A000  C:\Windows\system32\powrprof.dll
    0x75250000 - 0x75271000  C:\Windows\system32\NTMARTA.DLL
    0x75300000 - 0x7533B000  C:\Windows\system32\rsaenh.dll
    0x75370000 - 0x753B4000  C:\Windows\system32\schannel.dll
    0x75580000 - 0x755BB000  C:\Windows\system32\mswsock.dll
    0x755E0000 - 0x755E5000  C:\Windows\System32\wship6.dll
    0x755F0000 - 0x755F8000  C:\Windows\system32\VERSION.dll
    0x75690000 - 0x75697000  C:\Windows\system32\credssp.dll
    0x75740000 - 0x75761000  C:\Windows\system32\dhcpcsvc6.DLL
    0x75770000 - 0x75777000  C:\Windows\system32\WINNSI.DLL
    0x75780000 - 0x757B5000  C:\Windows\system32\dhcpcsvc.DLL
    0x757C0000 - 0x757D9000  C:\Windows\system32\IPHLPAPI.DLL
    0x75860000 - 0x75951000  C:\Windows\system32\CRYPT32.dll
    0x75960000 - 0x75974000  C:\Windows\system32\MPR.dll
    0x759D0000 - 0x759E2000  C:\Windows\system32\MSASN1.dll
    0x75A10000 - 0x75A85000  C:\Windows\system32\NETAPI32.dll
    0x75CA0000 - 0x75CFF000  C:\Windows\system32\SXS.DLL
    0x75D10000 - 0x75D21000  C:\Windows\system32\SAMLIB.dll
    0x75D30000 - 0x75D5C000  C:\Windows\system32\DNSAPI.dll
    0x75D60000 - 0x75D8C000  C:\Windows\system32\apphelp.dll
    0x75DC0000 - 0x75DD4000  C:\Windows\system32\Secur32.dll
    0x75DE0000 - 0x75DFE000  C:\Windows\system32\USERENV.dll
    0x75F20000 - 0x75F27000  C:\Windows\system32\PSAPI.DLL
    0x75F30000 - 0x75FF6000  C:\Windows\system32\ADVAPI32.dll
    0x76000000 - 0x76058000  C:\Windows\system32\SHLWAPI.dll
    0x76060000 - 0x761EA000  C:\Windows\system32\SETUPAPI.dll
    0x761F0000 - 0x7627D000  C:\Windows\system32\OLEAUT32.dll
    0x76280000 - 0x76342000  C:\Windows\system32\RPCRT4.dll
    0x76350000 - 0x763CD000  C:\Windows\system32\USP10.dll
    0x763D0000 - 0x76443000  C:\Windows\system32\COMDLG32.dll
    0x76450000 - 0x76518000  C:\Windows\system32\MSCTF.dll
    0x76520000 - 0x76529000  C:\Windows\system32\LPK.DLL
    0x76530000 - 0x7657B000  C:\Windows\system32\GDI32.dll
    0x76580000 - 0x7659E000  C:\Windows\system32\IMM32.dll
    0x765A0000 - 0x765A6000  C:\Windows\system32\NSI.dll
    0x765B0000 - 0x766E2000  C:\Windows\system32\urlmon.dll
    0x766F0000 - 0x77200000  C:\Windows\system32\SHELL32.dll
    0x77200000 - 0x773E8000  C:\Windows\system32\iertutil.dll
    0x773F0000 - 0x7743A000  C:\Windows\system32\WLDAP32.dll
    0x77440000 - 0x7746D000  C:\Windows\system32\WS2_32.dll
    0x77470000 - 0x7750D000  C:\Windows\system32\USER32.dll
    0x77510000 - 0x775BA000  C:\Windows\system32\msvcrt.dll
    0x775C0000 - 0x7769B000  C:\Windows\system32\kernel32.dll
    0x776A0000 - 0x777E4000  C:\Windows\system32\ole32.dll
    0x777F0000 - 0x77874000  C:\Windows\system32\CLBCatQ.DLL
    0x77880000 - 0x779A7000  C:\Windows\system32\ntdll.dll
    0x779B0000 - 0x779D9000  C:\Windows\system32\imagehlp.dll
    0x779E0000 - 0x779E3000  C:\Windows\system32\Normaliz.dll
    0x779F0000 - 0x77AD6000  C:\Windows\system32\WININET.dll
    
    
    ----------------------------------------
        Memory Dump
    ----------------------------------------
    
    Code: 16 bytes starting at (EIP = 00928557)
    
    00928557: 39 50 18 75  05 39 48 10  74 0C 8B 40  20 85 C0 75  9P.u.9H.t..@ ..u
    
    
    Stack: 1024 bytes starting at (ESP = 0019EA74)
    
    * = addr               **                                         *           
    0019EA70: 00 00 00 00  88 EA 19 00  D9 43 92 00  67 4A 42 21  .........C..gJB!
    0019EA80: C8 F9 38 0D  A8 66 49 3B  B8 EA 19 00  06 4F 92 00  ..8..fI;.....O..
    0019EA90: 88 C0 01 0D  98 66 49 3B  0F 00 00 00  3A 00 99 00  .....fI;....:...
    0019EAA0: 88 C0 01 0D  03 00 00 00  00 D1 C4 3E  00 00 00 00  ...........>....
    0019EAB0: D8 66 49 3B  02 00 00 00  04 EB 19 00  8B C1 91 00  .fI;............
    0019EAC0: 88 C0 01 0D  02 00 00 00  0A 00 00 00  02 00 00 00  ................
    0019EAD0: 88 C0 01 0D  03 00 00 00  3C 00 00 00  00 00 00 00  ........<.......
    0019EAE0: 48 EB 19 00  04 EB 19 00  5C C5 91 00  48 EB 19 00  H.......\...H...
    0019EAF0: 03 00 00 00  00 00 00 00  2C EB 19 00  28 EB 19 00  ........,...(...
    0019EB00: 01 00 00 00  1C EB 19 00  D9 B0 91 00  88 C0 01 0D  ................
    0019EB10: 38 00 99 00  2C EB 19 00  88 C0 01 0D  C4 EB 19 00  8...,...........
    0019EB20: C8 94 49 00  88 C0 01 0D  38 00 99 00  6C EB 19 00  ..I.....8...l...
    0019EB30: 88 C0 01 0D  3C 00 99 00  48 EB 19 00  C0 92 49 00  ....<...H.....I.
    0019EB40: 88 C0 01 0D  F0 0F 00 00  54 00 47 00  00 00 00 00  ........T.G.....
    0019EB50: 4B 1B 98 00  7C 36 98 00  FC 2A A0 00  FF FF FF FF  K...|6...*......
    0019EB60: 00 00 00 00  FF FF FF FF  FF FF FF FF  5B 43 5D 00  ............[C].
    0019EB70: 00 00 00 00  00 00 00 00  00 00 00 00  00 00 00 00  ................
    0019EB80: 00 00 00 00  00 00 00 00  00 00 00 00  00 00 00 00  ................
    0019EB90: 00 00 00 00  00 00 00 00  00 00 00 00  00 00 00 00  ................
    0019EBA0: 00 00 00 00  00 00 00 00  19 00 00 00  14 00 00 00  ................
    0019EBB0: 00 00 00 00  01 00 00 00  14 00 00 00  14 00 00 00  ................
    0019EBC0: 88 C0 01 0D  E0 EB 19 00  7C 29 92 00  16 00 00 00  ........|)......
    0019EBD0: C0 92 49 00  01 00 00 00  F8 65 49 3B  88 C0 01 0D  ..I......eI;....
    0019EBE0: 6C EC 19 00  2A 5F 92 00  F0 0F 00 00  F8 65 49 3B  l...*_.......eI;
    0019EBF0: 01 00 00 00  01 00 00 00  88 C0 01 0D  00 00 00 00  ................
    0019EC00: 01 00 00 00  88 C0 01 0D  00 00 00 00  00 00 00 00  ................
    0019EC10: 00 00 00 00  28 EC 19 00  64 A6 53 00  4B 1B 98 00  ....(...d.S.K...
    0019EC20: 48 00 99 00  FF FF FF 7F  A8 EC 19 00  83 97 49 00  H.............I.
    0019EC30: A0 97 33 0D  48 00 99 00  05 00 00 00  90 BA 38 0D  ..3.H.........8.
    0019EC40: 88 C0 01 0D  FF FF FF FF  68 65 49 3B  60 0F 00 00  ........heI;`...
    0019EC50: B8 65 49 3B  90 BA 38 0D  6E 28 92 00  04 00 00 00  .eI;..8.n(......
    0019EC60: 98 93 F1 16  30 DA 0F 17  B8 65 49 3B  88 EC 19 00  ....0....eI;....
    0019EC70: 47 2C 92 00  28 14 FC 16  01 00 00 00  88 C0 01 0D  G,..(...........
    0019EC80: 00 00 00 00  00 00 00 00  A4 EC 19 00  F1 B8 91 00  ................
    0019EC90: 88 C0 01 0D  68 65 49 3B  01 00 00 00  34 52 2D 18  ....heI;....4R-.
    0019ECA0: 88 C0 01 0D  DC EC 19 00  C4 AC 49 00  88 C0 01 0D  ..........I.....
    0019ECB0: 01 00 00 00  01 00 00 00  88 C0 01 0D  FE FF FF FF  ................
    0019ECC0: 88 C0 01 0D  F0 D8 FF FF  A6 00 00 00  30 AC 49 00  ............0.I.
    0019ECD0: 88 C0 01 0D  40 0F 00 00  00 00 00 00  F8 EC 19 00  ....@...........
    0019ECE0: 7C 29 92 00  88 C0 01 0D  30 AC 49 00  88 C0 01 0D  |)......0.I.....
    0019ECF0: 88 C0 01 0D  10 02 99 00  18 ED 19 00  38 2C 92 00  ............8,..
    0019ED00: 40 0F 00 00  48 65 49 3B  01 00 00 00  88 C0 01 0D  @...HeI;........
    0019ED10: 02 00 00 00  04 00 00 00  30 ED 19 00  BD CE 91 00  ........0.......
    0019ED20: 88 C0 01 0D  48 65 49 3B  01 00 00 00  A8 65 49 3B  ....HeI;.....eI;
    0019ED30: 50 ED 19 00  F1 CE 91 00  88 C0 01 0D  34 52 2D 18  P...........4R-.
    0019ED40: 88 C0 01 0D  64 2B A0 00  60 ED 19 00  88 C0 01 0D  ....d+..`.......
    0019ED50: 78 ED 19 00  5B D1 91 00  88 C0 01 0D  64 2B A0 00  x...[.......d+..
    0019ED60: 80 2B A0 00  10 02 99 00  88 C0 01 0D  A8 65 49 3B  .+...........eI;
    0019ED70: 98 65 49 3B  00 00 00 00  8C ED 19 00  BE D1 91 00  .eI;............
    0019ED80: 88 C0 01 0D  98 65 49 3B  80 2B A0 00  BC ED 19 00  .....eI;.+......
    0019ED90: 3D 4F 92 00  88 C0 01 0D  98 65 49 3B  A8 65 49 3B  =O.......eI;.eI;
    0019EDA0: 30 00 99 00  88 C0 01 0D  03 00 00 00  46 00 00 00  0...........F...
    0019EDB0: 08 EE 19 00  33 BF 91 00  02 00 00 00  08 EE 19 00  ....3...........
    0019EDC0: 8B C1 91 00  88 C0 01 0D  04 00 00 00  0E 00 00 00  ................
    0019EDD0: 88 C0 01 0D  88 C0 01 0D  04 00 00 00  A8 6D F4 24  .............m.$
    0019EDE0: 44 EE 19 00  40 EE 19 00  03 00 00 00  00 00 00 00  D...@...........
    0019EDF0: 24 EE 19 00  03 00 00 00  00 00 00 00  30 EE 19 00  $...........0...
    0019EE00: 2C EE 19 00  88 C0 01 0D  20 EE 19 00  D9 B0 91 00  ,....... .......
    0019EE10: 88 C0 01 0D  20 00 99 00  30 EE 19 00  88 C0 01 0D  .... ...0.......
    0019EE20: BC EE 19 00  0C 95 49 00  88 C0 01 0D  20 00 99 00  ......I..... ...
    0019EE30: 2C E3 33 0D  C0 92 49 00  88 C0 01 0D  00 0F 00 00  ,.3...I.........
    0019EE40: FF FF FF FF  2C E3 33 0D  08 DC 99 00  7C 36 98 00  ....,.3.....|6..
    0019EE50: FC 2A A0 00  FF FF FF FF  FF FF 5B 0D  FF FF FF FF  .*........[.....
    0019EE60: FF FF FF FF  5B 43 5D 00  00 00 00 00  00 00 00 00  ....[C].........
    0019EE70: 00 00 00 00  00 00 00 00  00 00 00 00  00 00 00 00  ................
    
    
    ------------------------------------------------------------------------------
    If anyone does take the time to read this, I'm sure that I deserve a "figure out wtf ur talking about before asking," but any hint in the right direction would help a lot.
    U59

  6. #6
    testout's Avatar Member
    Reputation
    7
    Join Date
    May 2008
    Posts
    44
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Did you try suspending the thread before injecting as many people have suggested?

    I see you resume it in Interact (and I can't see you ever suspend it) and you don't suspend/resume in CastSpellByID

    If you ask a question and people take the time to reply, you could try listening to them.

  7. #7
    tanis2000's Avatar Active Member
    Reputation
    39
    Join Date
    Feb 2009
    Posts
    123
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just delete this post.. I posted some nonsense
    Last edited by tanis2000; 06-10-2009 at 11:44 AM.

Similar Threads

  1. wow crash :/
    By uberboy in forum WoW ME Questions and Requests
    Replies: 2
    Last Post: 03-15-2008, 04:51 PM
  2. Why Does Wow Crash whenever I Open WOW with Model MPQ..
    By Phunter72 in forum WoW ME Questions and Requests
    Replies: 1
    Last Post: 01-22-2008, 07:21 PM
  3. Please help (Wow Crashing Problem)
    By friendofdar in forum World of Warcraft Emulator Servers
    Replies: 4
    Last Post: 11-22-2007, 09:18 PM
  4. My WoW Crashes
    By shim in forum WoW ME Questions and Requests
    Replies: 2
    Last Post: 10-16-2007, 01:43 PM
  5. wow crash model change
    By 1993wow in forum WoW ME Questions and Requests
    Replies: 2
    Last Post: 09-01-2007, 07:51 AM
All times are GMT -5. The time now is 02:36 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search