InProcess Click To Move Call menu

User Tag List

Results 1 to 6 of 6
  1. #1
    Harland's Avatar Member
    Reputation
    8
    Join Date
    Oct 2007
    Posts
    50
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    InProcess Click To Move Call

    G'day,

    I have made countless attempts to call ClickToMove correctly in process. What I have is my dll being injected at runtime, it goes off and sets up a mapped memory file, hooks endscene blah blah the usual stuff.....

    My ClickToMove prototype looks as follows (credits to Apoc):
    http://www.mmowned.com/forums/wow-me...explained.html

    Code:
    typedef bool (__thiscall *CGPlayer_C__ClickToMove)(void* pThis, ClickToMoveType clickType, WGUID* interactGuid, WoWPos* clickPos, float precision);
    I obtain the reference to the member function and call the function as follows (assume LocalAddr is the address to our player base):

    Code:
    CGPlayer_C__ClickToMove ClickToMove = (CGPlayer_C__ClickToMove)0x006ba610;
    WoWPos dest;
    dest.x = 1332.07;
    dest.y = -4397.35;
    dest.z = 27.84;
    dest.facing = 1.2;
    ClickToMove((void*)LocalAddr, 0x4, NULL, &dest, 0);
    Code:
    006BA6EC  |. 890D 0898CB00  MOV DWORD PTR DS:[CB9808],ECX
    006BA6F2  |. 8B50 04        MOV EDX,DWORD PTR DS:[EAX+4]
    006BA6F5  |. 8915 0C98CB00  MOV DWORD PTR DS:[CB980C],EDX
    006BA6FB  |. 8B40 08        MOV EAX,DWORD PTR DS:[EAX+8]
    006BA6FE  |. A3 1098CB00    MOV DWORD PTR DS:[CB9810],EAX
    006BA703  |. 8B45 0C        MOV EAX,DWORD PTR SS:[EBP+C]
    006BA706  |. 8B08           MOV ECX,DWORD PTR DS:[EAX]                    <--------- 
    006BA708  |. 8B50 04        MOV EDX,DWORD PTR DS:[EAX+4]
    006BA70B  |. 8B06           MOV EAX,DWORD PTR DS:[ESI]
    006BA70D  |. A3 1498CB00    MOV DWORD PTR DS:[CB9814],EAX
    006BA712  |. 890D A897CB00  MOV DWORD PTR DS:[CB97A8],ECX
    006BA718  |. 8B4E 04        MOV ECX,DWORD PTR DS:[ESI+4]
    006BA71B  |. 890D 1898CB00  MOV DWORD PTR DS:[CB9818],ECX
    006BA721  |. 8915 AC97CB00  MOV DWORD PTR DS:[CB97AC],EDX
    As I watch the code run in Ollydbg I see it executes the engines CGPlayer_C__ClickToMove, and the registers appear to be correct until it hits address 0x006BA706. Upon which it attempts to read from 0x00000000, hence causing an access violation and crashing WoW.

    Crash Log is as follows:

    Code:
    ==============================================================================
    World of WarCraft (build 11159)
    
    Exe:      D:\Program Files\World of Warcraft\Wow.exe
    Time:     Jan 11, 2010  7:57:46.375 PM
    User:     
    Computer: 
    ------------------------------------------------------------------------------
    
    This application has encountered a critical error:
    
    ERROR #132 (0x85100084) Fatal Exception
    Program:	D:\Program Files\World of Warcraft\Wow.exe
    Exception:	0xC0000005 (ACCESS_VIOLATION) at 001B:006BA706
    
    The instruction at "0x006BA706" referenced memory at "0x00000000".
    The memory could not be "read".
    
    
    WoWBuild: 11159
    Realm: Barthilas [12.129.225.102:3724]
    Local Zone: Orgrimmar
    Local Player: , 030000000435B8B9, (1620.49,-4430.74,11.7021)
    Total lua memory: 14315KB
    Current Addon: (null)
    Current Addon function: UNKNOWN
    Current Addon object: (null)
    Add Ons: GearScore Grid DBM-Core 
    Settings: 
    SET locale "enUS"
    SET realmList "us.logon.worldofwarcraft.com"
    SET patchlist "us.version.worldofwarcraft.com"
    SET coresDetected "2"
    SET hwDetect "0"
    SET gxWindow "1"
    SET gxMaximize "1"
    SET gxResolution "1680x1050"
    SET gxRefresh "60"
    SET gxMultisampleQuality "0.000000"
    SET gxFixLag "0"
    SET videoOptionsVersion "2"
    SET textureFilteringMode "5"
    SET movie "0"
    SET Gamma "1.000000"
    SET readTOS "1"
    SET readEULA "1"
    SET showToolsUI "1"
    SET Sound_OutputDriverName "System Default"
    SET Sound_MusicVolume "0.10000000149012"
    SET Sound_AmbienceVolume "0.60000002384186"
    SET componentTextureLevel "9"
    SET shadowLevel "0"
    SET farclip "1277"
    SET specular "1"
    SET groundEffectDensity "64"
    SET groundEffectDist "140"
    SET environmentDetail "1.5"
    SET projectedTextures "1"
    SET weatherDensity "3"
    SET mouseSpeed "0.60000002384186"
    SET accounttype "RT"
    SET VoiceActivationSensitivity "0.39999997615814"
    SET ChatMusicVolume "0.29999998211861"
    SET ChatSoundVolume "0.39999997615814"
    SET ChatAmbienceVolume "0.29999998211861"
    SET Sound_MasterVolume "0.40000000596046"
    SET Sound_SFXVolume "0.40000000596046"
    SET realmName "Barthilas"
    SET gameTip "65"
    SET uiScale "0.77999997138977"
    SET useUiScale "1"
    SET UnitNameEnemyCreationName "0"
    SET UnitNameFriendlyCreationName "0"
    SET UnitNameCompanionName "0"
    
    ----------------------------------------
                   GxInfo
    ----------------------------------------
    GxApi: D3D9
    Adapter Count: 1
    
    Adapter 0 (primary):
      Driver: nv4_disp.dll
      Version: 6.14.0011.7516
      Description: NVIDIA GeForce 7950 GT 
      DeviceName: \\.\DISPLAY1
    
    ------------------------------------------------------------------------------
    
    ----------------------------------------
        x86 Registers
    ----------------------------------------
    
    EAX=00000000  EBX=12F22438  ECX=44CA8FCB  EDX=C58A75E2  ESI=0019FD38
    EDI=00000000  EBP=0019FD20  ESP=0019FD00  EIP=006BA706  FLG=00210246
    CS =001B      DS =0023      ES =0023      SS =0023      FS =003B      GS =0000
    
    
    ----------------------------------------
        Stack Trace (Manual)
    ----------------------------------------
    
    Address  Frame    Logical addr  Module
    
    Showing 26/26 threads...
    
    --- Thread ID: 4536 [Current Thread] ---
    006BA706 0019FD20 0001:002B9706 D:\Program Files\World of Warcraft\Wow.exe
    27C813D3 0019FD54 0001:000003D3 C:\Documents and Settings\User\Desktop\Snausages\Detours_Tutorial\Binary\SnausLib.dll
    0063854C 0019FD94 0001:0023754C D:\Program Files\World of Warcraft\Wow.exe
    006179BF 0019FDA8 0001:002169BF D:\Program Files\World of Warcraft\Wow.exe
    0044F535 0019FE60 0001:0004E535 D:\Program Files\World of Warcraft\Wow.exe
    00427AD9 0019FE90 0001:00026AD9 D:\Program Files\World of Warcraft\Wow.exe
    00424BA9 0019FEB8 0001:00023BA9 D:\Program Files\World of Warcraft\Wow.exe
    004261BA 0019FF0C 0001:000251BA D:\Program Files\World of Warcraft\Wow.exe
    00426201 0019FF24 0001:00025201 D:\Program Files\World of Warcraft\Wow.exe
    00406DED 0019FFC0 0001:00005DED D:\Program Files\World of Warcraft\Wow.exe
    7C817077 0019FFF0 0001:00016077 C:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 5852 ---
    77DF8631 0207FFB4 0001:00027631 C:\WINDOWS\system32\ADVAPI32.dll
    7C80B729 0207FFEC 0001:0000A729 C:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 1680 ---
    7C802455 0228FF40 0001:00001455 C:\WINDOWS\system32\kernel32.dll
    0072C145 0228FF60 0001:0032B145 D:\Program Files\World of Warcraft\Wow.exe
    00741EEA 0228FF74 0001:00340EEA D:\Program Files\World of Warcraft\Wow.exe
    008698BF 0228FFAC 0001:004688BF D:\Program Files\World of Warcraft\Wow.exe
    00869964 0228FFEC 0001:00468964 D:\Program Files\World of Warcraft\Wow.exe
    
    --- Thread ID: 3104 ---
    7C802455 02C5FB60 0001:00001455 C:\WINDOWS\system32\kernel32.dll
    00843D1D 02C5FB6C 0001:00442D1D D:\Program Files\World of Warcraft\Wow.exe
    004613AD 02C5FF8C 0001:000603AD D:\Program Files\World of Warcraft\Wow.exe
    00702E4B 02C5FFB4 0001:00301E4B D:\Program Files\World of Warcraft\Wow.exe
    7C80B729 02C5FFEC 0001:0000A729 C:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 5260 ---
    7C802542 02E7FF64 0001:00001542 C:\WINDOWS\system32\kernel32.dll
    00707090 02E7FF74 0001:00306090 D:\Program Files\World of Warcraft\Wow.exe
    007F4D12 02E7FF8C 0001:003F3D12 D:\Program Files\World of Warcraft\Wow.exe
    00702E4B 02E7FFB4 0001:00301E4B D:\Program Files\World of Warcraft\Wow.exe
    7C80B729 02E7FFEC 0001:0000A729 C:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 3792 ---
    7C80A115 068DFF88 0001:00009115 C:\WINDOWS\system32\kernel32.dll
    72D2312A 068DFFB4 0001:0000212A C:\WINDOWS\system32\wdmaud.drv
    7C80B729 068DFFEC 0001:0000A729 C:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 4268 ---
    7C80A115 06A4FE40 0001:00009115 C:\WINDOWS\system32\kernel32.dll
    73F114A2 06A4FE58 0001:000004A2 C:\WINDOWS\system32\dsound.dll
    73F12862 06A4FF78 0001:00001862 C:\WINDOWS\system32\dsound.dll
    73F198DF 06A4FF98 0001:000088DF C:\WINDOWS\system32\dsound.dll
    73F12896 06A4FFB4 0001:00001896 C:\WINDOWS\system32\dsound.dll
    7C80B729 06A4FFEC 0001:0000A729 C:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 4272 ---
    7C80A115 06CBFE48 0001:00009115 C:\WINDOWS\system32\kernel32.dll
    73F114A2 06CBFE60 0001:000004A2 C:\WINDOWS\system32\dsound.dll
    73F12862 06CBFF80 0001:00001862 C:\WINDOWS\system32\dsound.dll
    73F1292B 06CBFFB4 0001:0000192B C:\WINDOWS\system32\dsound.dll
    7C80B729 06CBFFEC 0001:0000A729 C:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 3924 ---
    7C802455 06E2FF94 0001:00001455 C:\WINDOWS\system32\kernel32.dll
    008A078D 06E2FFA0 0001:0049F78D D:\Program Files\World of Warcraft\Wow.exe
    008A0FAC 06E2FFB4 0001:0049FFAC D:\Program Files\World of Warcraft\Wow.exe
    7C80B729 06E2FFEC 0001:0000A729 C:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 5356 ---
    7C802455 06F9FF94 0001:00001455 C:\WINDOWS\system32\kernel32.dll
    008A078D 06F9FFA0 0001:0049F78D D:\Program Files\World of Warcraft\Wow.exe
    008A0FAC 06F9FFB4 0001:0049FFAC D:\Program Files\World of Warcraft\Wow.exe
    7C80B729 06F9FFEC 0001:0000A729 C:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 5836 ---
    7C802455 0710FF94 0001:00001455 C:\WINDOWS\system32\kernel32.dll
    008A078D 0710FFA0 0001:0049F78D D:\Program Files\World of Warcraft\Wow.exe
    008A0FAC 0710FFB4 0001:0049FFAC D:\Program Files\World of Warcraft\Wow.exe
    7C80B729 0710FFEC 0001:0000A729 C:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 5352 ---
    7C802455 0727FF94 0001:00001455 C:\WINDOWS\system32\kernel32.dll
    008A078D 0727FFA0 0001:0049F78D D:\Program Files\World of Warcraft\Wow.exe
    008A0FAC 0727FFB4 0001:0049FFAC D:\Program Files\World of Warcraft\Wow.exe
    7C80B729 0727FFEC 0001:0000A729 C:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 3920 ---
    7C802542 0754FF68 0001:00001542 C:\WINDOWS\system32\kernel32.dll
    00707090 0754FF78 0001:00306090 D:\Program Files\World of Warcraft\Wow.exe
    004971F9 0754FFB4 0001:000961F9 D:\Program Files\World of Warcraft\Wow.exe
    7C80B729 0754FFEC 0001:0000A729 C:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 4788 ---
    7C802542 0797FF58 0001:00001542 C:\WINDOWS\system32\kernel32.dll
    00707090 0797FF68 0001:00306090 D:\Program Files\World of Warcraft\Wow.exe
    00421485 0797FF80 0001:00020485 D:\Program Files\World of Warcraft\Wow.exe
    004215F1 0797FF8C 0001:000205F1 D:\Program Files\World of Warcraft\Wow.exe
    00702E4B 0797FFB4 0001:00301E4B D:\Program Files\World of Warcraft\Wow.exe
    7C80B729 0797FFEC 0001:0000A729 C:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 5200 ---
    7C80A115 07AEFD28 0001:00009115 C:\WINDOWS\system32\kernel32.dll
    00421CEB 07AEFF80 0001:00020CEB D:\Program Files\World of Warcraft\Wow.exe
    0042142E 07AEFF8C 0001:0002042E D:\Program Files\World of Warcraft\Wow.exe
    00702E4B 07AEFFB4 0001:00301E4B D:\Program Files\World of Warcraft\Wow.exe
    7C80B729 07AEFFEC 0001:0000A729 C:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 5964 ---
    7E4195F9 07C5FF18 0001:000085F9 C:\WINDOWS\system32\USER32.dll
    7E4196A8 07C5FF34 0001:000086A8 C:\WINDOWS\system32\USER32.dll
    00740F76 07C5FF60 0001:0033FF76 D:\Program Files\World of Warcraft\Wow.exe
    00741EEA 07C5FF74 0001:00340EEA D:\Program Files\World of Warcraft\Wow.exe
    008698BF 07C5FFAC 0001:004688BF D:\Program Files\World of Warcraft\Wow.exe
    00869964 07C5FFEC 0001:00468964 D:\Program Files\World of Warcraft\Wow.exe
    
    --- Thread ID: 5420 ---
    71A55FA7 0B44FC04 0001:00004FA7 C:\WINDOWS\system32\mswsock.dll
    71AB314F 0B44FC54 0001:0000214F C:\WINDOWS\system32\WS2_32.dll
    3D93E9A9 0B44FFAC 0001:0000D9A9 C:\WINDOWS\system32\WININET.dll
    3D95DEAB 0B44FFB4 0001:0002CEAB C:\WINDOWS\system32\WININET.dll
    7C80B729 0B44FFEC 0001:0000A729 C:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 4000 ---
    7C80B729 0B5BFFEC 0001:0000A729 C:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 6100 ---
    0B784E45 0B91FFEC 0001:00003E45 C:\Program Files\Logitech\GamePanel Software\LCD Manager\LgLcdApi.dll
    
    --- Thread ID: 4968 ---
    0B784E45 0BA8FFEC 0001:00003E45 C:\Program Files\Logitech\GamePanel Software\LCD Manager\LgLcdApi.dll
    
    --- Thread ID: 4172 ---
    7C802542 0BD5FF74 0001:00001542 C:\WINDOWS\system32\kernel32.dll
    008E14F5 0BD5FF90 0001:004E04F5 D:\Program Files\World of Warcraft\Wow.exe
    008A0929 0BD5FFA0 0001:0049F929 D:\Program Files\World of Warcraft\Wow.exe
    008A0F70 0BD5FFB4 0001:0049FF70 D:\Program Files\World of Warcraft\Wow.exe
    7C80B729 0BD5FFEC 0001:0000A729 C:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 4592 ---
    7E4195F9 0BECFF18 0001:000085F9 C:\WINDOWS\system32\USER32.dll
    7E4196A8 0BECFF34 0001:000086A8 C:\WINDOWS\system32\USER32.dll
    00740F76 0BECFF60 0001:0033FF76 D:\Program Files\World of Warcraft\Wow.exe
    00741EEA 0BECFF74 0001:00340EEA D:\Program Files\World of Warcraft\Wow.exe
    008698BF 0BECFFAC 0001:004688BF D:\Program Files\World of Warcraft\Wow.exe
    00869964 0BECFFEC 0001:00468964 D:\Program Files\World of Warcraft\Wow.exe
    
    --- Thread ID: 3288 ---
    7C802542 0C05FF74 0001:00001542 C:\WINDOWS\system32\kernel32.dll
    008E14F5 0C05FF90 0001:004E04F5 D:\Program Files\World of Warcraft\Wow.exe
    008A0929 0C05FFA0 0001:0049F929 D:\Program Files\World of Warcraft\Wow.exe
    008A0F70 0C05FFB4 0001:0049FF70 D:\Program Files\World of Warcraft\Wow.exe
    7C80B729 0C05FFEC 0001:0000A729 C:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 2716 ---
    7E4195F9 0E34FF18 0001:000085F9 C:\WINDOWS\system32\USER32.dll
    7E4196A8 0E34FF34 0001:000086A8 C:\WINDOWS\system32\USER32.dll
    00740F76 0E34FF60 0001:0033FF76 D:\Program Files\World of Warcraft\Wow.exe
    00741EEA 0E34FF74 0001:00340EEA D:\Program Files\World of Warcraft\Wow.exe
    008698BF 0E34FFAC 0001:004688BF D:\Program Files\World of Warcraft\Wow.exe
    00869964 0E34FFEC 0001:00468964 D:\Program Files\World of Warcraft\Wow.exe
    
    --- Thread ID: 5824 ---
    7C80B729 0E4BFFEC 0001:0000A729 C:\WINDOWS\system32\kernel32.dll
    
    --- Thread ID: 2008 ---
    7C802542 3015EF84 0001:00001542 C:\WINDOWS\system32\kernel32.dll
    4FEDBA1F 3015FFB4 0001:0010AA1F C:\WINDOWS\system32\d3d9.dll
    7C80B729 3015FFEC 0001:0000A729 C:\WINDOWS\system32\kernel32.dll
    
    ----------------------------------------
        Stack Trace (Using DBGHELP.DLL)
    ----------------------------------------
    
    Showing 26/26 threads...
    
    --- Thread ID: 4536 [Current Thread] ---
    006BA706 Wow.exe      <unknown symbol>+0 (0x00000004,0x00000000,0x0019FD38,0x00000000)
    
    --- Thread ID: 5852 ---
    77DF8631 ADVAPI32.dll WmiFreeBuffer+590 (0x00000000,0x7C9142AF,0x00000000,0x00000000)
    7C80B729 kernel32.dll GetModuleFileNameA+442 (0x77DF848A,0x00000000,0x00000000,0x000000C8)
    
    --- Thread ID: 1680 ---
    7C802455 kernel32.dll Sleep+15 (0x00000064,0x00000000,0x02202008,0x02168ED0)
    0072C145 Wow.exe      <unknown symbol>+0 (0x00000000,0x00000000,0x02202008,0x0228FFAC)
    00741EEA Wow.exe      <unknown symbol>+0 (0x02168ED0,0x514425E0,0x00000000,0x02202008)
    008698BF Wow.exe      <unknown symbol>+0 (0x00000000,0x7C80B729,0x02202008,0x00000000)
    00869964 Wow.exe      <unknown symbol>+0 (0x008698E5,0x02202008,0x00000000,0x00000008)
    
    --- Thread ID: 3104 ---
    7C802455 kernel32.dll Sleep+15 (0x00000001,0x02C5FF8C,0x004613AD,0x00000001)
    00843D1D Wow.exe      <unknown symbol>+0 (0x00000001,0x0227ECD0,0x00000C20,0x000021D8)
    004613AD Wow.exe      <unknown symbol>+0 (0x0227FD58,0x00000000,0x00000000,0x0227ECD0)
    00702E4B Wow.exe      <unknown symbol>+0 (0x00CC4D90,0x00000000,0x00000000,0x0227ECD0)
    7C80B729 kernel32.dll GetModuleFileNameA+442 (0x00702DB0,0x0227ECD0,0x00000000,0x03820000)
    
    --- Thread ID: 5260 ---
    7C802542 kernel32.dll WaitForSingleObject+18 (0x0000210C,0xFFFFFFFF,0x02E7FF8C,0x007F4D12)
    00707090 Wow.exe      <unknown symbol>+0 (0xFFFFFFFF,0x000021DC,0x0000148C,0x025B8528)
    007F4D12 Wow.exe      <unknown symbol>+0 (0x00D5F140,0x00000020,0x00000000,0x025B8528)
    00702E4B Wow.exe      <unknown symbol>+0 (0x00CC4DB0,0x00000020,0x00000000,0x025B8528)
    7C80B729 kernel32.dll GetModuleFileNameA+442 (0x00702DB0,0x025B8528,0x00000000,0x028F0000)
    
    --- Thread ID: 3792 ---
    7C80A115 kernel32.dll WaitForMultipleObjects+24 (0x00000002,0x068DFFA4,0x00000000,0xFFFFFFFF)
    72D2312A wdmaud.drv   midMessage+840 (0x00000000,0x00000000,0x020A0014,0x00000000)
    7C80B729 kernel32.dll GetModuleFileNameA+442 (0x72D230E8,0x00000000,0x00000000,0x00000000)
    
    --- Thread ID: 4268 ---
    7C80A115 kernel32.dll WaitForMultipleObjects+24 (0x00000040,0x06A4FE78,0x00000000,0xFFFFFFFF)
    73F114A2 dsound.dll   <unknown symbol>+0 (0x00000040,0xFFFFFFFF,0x00000000,0x06A4FE78)
    73F12862 dsound.dll   <unknown symbol>+0 (0xFFFFFFFF,0x0000003F,0x03815EE8,0x06A4FF94)
    73F198DF dsound.dll   DirectSoundCreate+20900 (0x03812268,0x03813434,0x73F1B2E9,0x00000000)
    73F12896 dsound.dll   <unknown symbol>+0 (0x03813434,0x03812268,0x00000000,0x03813434)
    7C80B729 kernel32.dll GetModuleFileNameA+442 (0x73F1B2A1,0x03813434,0x00000000,0x00000008)
    
    --- Thread ID: 4272 ---
    7C80A115 kernel32.dll WaitForMultipleObjects+24 (0x00000001,0x06CBFE80,0x00000000,0x000001F4)
    73F114A2 dsound.dll   <unknown symbol>+0 (0x00000001,0x000001F4,0x00000000,0x06CBFE80)
    73F12862 dsound.dll   <unknown symbol>+0 (0x000001F4,0x00000000,0x00000000,0x00000000)
    73F1292B dsound.dll   <unknown symbol>+0 (0x03811EFC,0x01000001,0x0019F540,0x03811EFC)
    7C80B729 kernel32.dll GetModuleFileNameA+442 (0x73F1B2A1,0x03811EFC,0x00000000,0x00000000)
    
    --- Thread ID: 3924 ---
    7C802455 kernel32.dll Sleep+15 (0x0000000A,0x06E2FFB4,0x008A0FAC,0x0000000A)
    008A078D Wow.exe      <unknown symbol>+0 (0x0000000A,0x7C911028,0x00000F54,0x06E2FFEC)
    008A0FAC Wow.exe      <unknown symbol>+0 (0x0440C7E0,0x0019F534,0x7C911028,0x0440C7E0)
    7C80B729 kernel32.dll GetModuleFileNameA+442 (0x008A0F30,0x0440C7E0,0x00000000,0x00000000)
    
    --- Thread ID: 5356 ---
    7C802455 kernel32.dll Sleep+15 (0x0000000A,0x06F9FFB4,0x008A0FAC,0x0000000A)
    008A078D Wow.exe      <unknown symbol>+0 (0x0000000A,0x00000000,0x000014EC,0x06F9FFEC)
    008A0FAC Wow.exe      <unknown symbol>+0 (0x05703628,0x002104F8,0x00000000,0x05703628)
    7C80B729 kernel32.dll GetModuleFileNameA+442 (0x008A0F30,0x05703628,0x00000000,0x00000000)
    
    --- Thread ID: 5836 ---
    008FA6A5 Wow.exe      <unknown symbol>+0 (0x060B4C40,0x00000400,0x1C602C40,0x00000002)
    008E61E2 Wow.exe      <unknown symbol>+0 (0x1C5B7C80,0x0710FF18,0x00000400,0x00000004)
    008D55AB Wow.exe      <unknown symbol>+0 (0x05745200,0x0710FF18,0x0710FF54,0x00000004)
    008D55AB Wow.exe      <unknown symbol>+0 (0x0574B230,0x0710FF18,0x0710FF54,0x00000004)
    008D55AB Wow.exe      <unknown symbol>+0 (0x05745200,0x0710FF18,0x0710FF54,0x00000004)
    008D5652 Wow.exe      <unknown symbol>+0 (0x0710FF5C,0x0710FF3C,0x057383D8,0x0710FFDC)
    7C802455 kernel32.dll Sleep+15 (0x00000000,0x00000000,0x00000000,0x00000000)
    
    --- Thread ID: 5352 ---
    7C802455 kernel32.dll Sleep+15 (0x0000000A,0x0727FFB4,0x008A0FAC,0x0000000A)
    008A078D Wow.exe      <unknown symbol>+0 (0x0000000A,0x00000000,0x000014E8,0x0727FFEC)
    008A0FAC Wow.exe      <unknown symbol>+0 (0x056FAFA8,0x7C91043E,0x00000000,0x056FAFA8)
    7C80B729 kernel32.dll GetModuleFileNameA+442 (0x008A0F30,0x056FAFA8,0x00000000,0x07550000)
    
    --- Thread ID: 3920 ---
    7C802542 kernel32.dll WaitForSingleObject+18 (0x00002100,0xFFFFFFFF,0x0754FFB4,0x004971F9)
    00707090 Wow.exe      <unknown symbol>+0 (0xFFFFFFFF,0x00000F50,0x08B51A50,0x000023D4)
    004971F9 Wow.exe      <unknown symbol>+0 (0x00CC4DD0,0x00001C57,0x1099CD48,0x08B51A50)
    7C80B729 kernel32.dll GetModuleFileNameA+442 (0x00702DB0,0x08B51A50,0x00000000,0x076B0000)
    
    --- Thread ID: 4788 ---
    7C802542 kernel32.dll WaitForSingleObject+18 (0x000023DC,0x000003E8,0x0797FF80,0x00421485)
    00707090 Wow.exe      <unknown symbol>+0 (0x000003E8,0x000012B4,0x08B51A50,0x0000247C)
    00421485 Wow.exe      <unknown symbol>+0 (0x00000000,0x0797FFB4,0x00702E4B,0x08B7FB10)
    004215F1 Wow.exe      <unknown symbol>+0 (0x08B7FB10,0x00000000,0x00000000,0x08B51A50)
    00702E4B Wow.exe      <unknown symbol>+0 (0x00CC4DF0,0x00000000,0x00000000,0x08B51A50)
    7C80B729 kernel32.dll GetModuleFileNameA+442 (0x00702DB0,0x08B51A50,0x00000000,0x00000000)
    
    --- Thread ID: 5200 ---
    7C80A115 kernel32.dll WaitForMultipleObjects+24 (0x00000003,0x07AEFE4C,0x00000000,0x000001F4)
    00421CEB Wow.exe      <unknown symbol>+0 (0x08B803F8,0x07AEFFB4,0x00702E4B,0x08B7FB00)
    0042142E Wow.exe      <unknown symbol>+0 (0x08B7FB00,0x00000000,0x00000000,0x08B803F8)
    00702E4B Wow.exe      <unknown symbol>+0 (0x00CC4E10,0x00000000,0x00000000,0x08B803F8)
    7C80B729 kernel32.dll GetModuleFileNameA+442 (0x00702DB0,0x08B803F8,0x00000000,0x00000000)
    
    --- Thread ID: 5964 ---
    7E4195F9 USER32.dll   GetLastInputInfo+261 (0x00000002,0x07C5FF58,0xFFFFFFFF,0x00000000)
    7E4196A8 USER32.dll   MsgWaitForMultipleObjects+31 (0x00000002,0x07C5FF58,0x00000000,0xFFFFFFFF)
    00740F76 Wow.exe      <unknown symbol>+0 (0x00CD1648,0x00000000,0x094F14B8,0x07C5FFAC)
    00741EEA Wow.exe      <unknown symbol>+0 (0x09391B30,0x54A925E0,0x00000000,0x094F14B8)
    008698BF Wow.exe      <unknown symbol>+0 (0x00000000,0x7C80B729,0x094F14B8,0x00000000)
    00869964 Wow.exe      <unknown symbol>+0 (0x110E0016,0x00000002,0x000014A7,0x665F0001)
    005A5A44 Wow.exe      <unknown symbol>+0 (0x00000000,0x00000000,0x00000000,0x00000000)
    
    --- Thread ID: 5420 ---
    71A55FA7 mswsock.dll  <unknown symbol>+0 (0x00000001,0x0B44FE84,0x0B44FC7C,0x0B44FD80)
    71AB314F WS2_32.dll   select+167 (0x00000001,0x0B44FE84,0x0B44FC7C,0x0B44FD80)
    3D93E9A9 WININET.dll  Ordinal346+1710 (0x0B44FFEC,0x7C80B729,0x00211518,0x0019F1A0)
    3D95DEAB WININET.dll  InternetSetStatusCallbackA+483 (0x00211518,0x0019F1A0,0x00000040,0x00211518)
    7C80B729 kernel32.dll GetModuleFileNameA+442 (0x3D95DE9E,0x00211518,0x00000000,0x00000000)
    
    --- Thread ID: 4000 ---
    7C80B729 kernel32.dll GetModuleFileNameA+442 (0x7C927EDB,0x00000000,0x00000000,0x1A531A52)
    
    --- Thread ID: 6100 ---
    0B784E45 LgLcdApi.dll GetInterface+1419 (0x0B784E26,0x0B7A2580,0x00000000,0x00000000)
    
    --- Thread ID: 4968 ---
    0B784E45 LgLcdApi.dll GetInterface+1419 (0x0B784E26,0x0B7A2288,0x00000000,0x000000C8)
    
    --- Thread ID: 4172 ---
    7C802542 kernel32.dll WaitForSingleObject+18 (0x0000264C,0xFFFFFFFF,0x00000000,0x044412BC)
    008E14F5 Wow.exe      <unknown symbol>+0 (0x09622DC8,0xFFFFFFFF,0x0BD5FFB4,0x008A0F70)
    008A0929 Wow.exe      <unknown symbol>+0 (0x09622DC8,0x4E554F53,0x0000104C,0x0BD5FFEC)
    008A0F70 Wow.exe      <unknown symbol>+0 (0x044412BC,0x00000000,0x4E554F53,0x044412BC)
    7C80B729 kernel32.dll GetModuleFileNameA+442 (0x008A0F30,0x044412BC,0x00000000,0x00000000)
    
    --- Thread ID: 4592 ---
    7E4195F9 USER32.dll   GetLastInputInfo+261 (0x00000002,0x0BECFF58,0xFFFFFFFF,0x00000000)
    7E4196A8 USER32.dll   MsgWaitForMultipleObjects+31 (0x00000002,0x0BECFF58,0x00000000,0xFFFFFFFF)
    00740F76 Wow.exe      <unknown symbol>+0 (0x00CD1690,0x00000000,0x09851098,0x0BECFFAC)
    00741EEA Wow.exe      <unknown symbol>+0 (0x0984FBA8,0x588025E0,0x00000000,0x09851098)
    008698BF Wow.exe      <unknown symbol>+0 (0x00000000,0x7C80B729,0x09851098,0x00000000)
    00869964 Wow.exe      <unknown symbol>+0 (0x008698E5,0x09851098,0x00000000,0x00010000)
    
    --- Thread ID: 3288 ---
    7C802542 kernel32.dll WaitForSingleObject+18 (0x00002674,0xFFFFFFFF,0x00000000,0x09858D34)
    008E14F5 Wow.exe      <unknown symbol>+0 (0x095B10B0,0xFFFFFFFF,0x0C05FFB4,0x008A0F70)
    008A0929 Wow.exe      <unknown symbol>+0 (0x095B10B0,0x00000000,0x00000CD8,0x0C05FFEC)
    008A0F70 Wow.exe      <unknown symbol>+0 (0x09858D34,0x00000000,0x00000000,0x09858D34)
    7C80B729 kernel32.dll GetModuleFileNameA+442 (0x008A0F30,0x09858D34,0x00000000,0x0000C000)
    
    --- Thread ID: 2716 ---
    7E4195F9 USER32.dll   GetLastInputInfo+261 (0x00000002,0x0E34FF58,0xFFFFFFFF,0x00000000)
    7E4196A8 USER32.dll   MsgWaitForMultipleObjects+31 (0x00000002,0x0E34FF58,0x00000000,0xFFFFFFFF)
    00740F76 Wow.exe      <unknown symbol>+0 (0x00CD16F0,0x001C0178,0x0981B9A0,0x0E34FFAC)
    00741EEA Wow.exe      <unknown symbol>+0 (0x097F5CE0,0x5D5825E0,0x001C0178,0x0981B9A0)
    008698BF Wow.exe      <unknown symbol>+0 (0x00000449,0x7C80B729,0x0981B9A0,0x001C0178)
    00869964 Wow.exe      <unknown symbol>+0 (0x008698E5,0x0981B9A0,0x00000000,0x00000000)
    
    --- Thread ID: 5824 ---
    7C80B729 kernel32.dll GetModuleFileNameA+442 (0x71A5D2C6,0x0D459508,0x00000000,0x44D34300)
    
    --- Thread ID: 2008 ---
    7C802542 kernel32.dll WaitForSingleObject+18 (0x000025A0,0xFFFFFFFF,0x00000000,0x00000000)
    4FEDBA1F d3d9.dll     PSGPError+407663 (0x27971F70,0x00000000,0x2FEEF198,0x27971F70)
    7C80B729 kernel32.dll GetModuleFileNameA+442 (0x4FEDB9C0,0x27971F70,0x00000000,0x00905A4D)
    
    
    ----------------------------------------
        Loaded Modules
    ----------------------------------------
    
    0x003B0000 - 0x003B9000  C:\WINDOWS\system32\Normaliz.dll
    0x00400000 - 0x011CD000  D:\Program Files\World of Warcraft\Wow.exe
    0x02A40000 - 0x02AAA000  C:\WINDOWS\system32\nvapi.dll
    0x0B780000 - 0x0B79E000  C:\Program Files\Logitech\GamePanel Software\LCD Manager\LgLcdApi.dll
    0x0EA40000 - 0x0EADB000  C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.4053_x-ww_e6967989\MSVCR80.dll
    0x10000000 - 0x10069000  D:\Program Files\World of Warcraft\DivxDecoder.dll
    0x16080000 - 0x160A5000  C:\Program Files\Bonjour\mdnsNSP.dll
    0x27C80000 - 0x27C9C000  C:\Documents and Settings\User\Desktop\Snausages\Detours_Tutorial\Binary\SnausLib.dll
    0x30160000 - 0x30275000  D:\Program Files\World of Warcraft\dbghelp.dll
    0x3C910000 - 0x3C984000  D:\Program Files\World of Warcraft\Battle.net.dll
    0x3D930000 - 0x3DA16000  C:\WINDOWS\system32\WININET.dll
    0x3DFD0000 - 0x3E1B8000  C:\WINDOWS\system32\iertutil.dll
    0x4FDD0000 - 0x4FF76000  C:\WINDOWS\system32\d3d9.dll
    0x5AD70000 - 0x5ADA8000  C:\WINDOWS\system32\uxtheme.dll
    0x5B860000 - 0x5B8B5000  C:\WINDOWS\system32\NETAPI32.dll
    0x5D090000 - 0x5D12A000  C:\WINDOWS\system32\comctl32.dll
    0x5ED00000 - 0x5EDCC000  C:\WINDOWS\system32\OPENGL32.dll
    0x662B0000 - 0x66308000  C:\WINDOWS\system32\hnetcfg.dll
    0x68000000 - 0x68036000  C:\WINDOWS\system32\rsaenh.dll
    0x688F0000 - 0x688F9000  C:\WINDOWS\system32\HID.DLL
    0x68B20000 - 0x68B40000  C:\WINDOWS\system32\GLU32.dll
    0x6CE10000 - 0x6CE48000  C:\WINDOWS\system32\DINPUT8.dll
    0x6D990000 - 0x6D996000  C:\WINDOWS\system32\d3d8thk.dll
    0x71A50000 - 0x71A8F000  C:\WINDOWS\system32\mswsock.dll
    0x71A90000 - 0x71A98000  C:\WINDOWS\System32\wshtcpip.dll
    0x71AA0000 - 0x71AA8000  C:\WINDOWS\system32\WS2HELP.dll
    0x71AB0000 - 0x71AC7000  C:\WINDOWS\system32\WS2_32.dll
    0x71BF0000 - 0x71C03000  C:\WINDOWS\system32\SAMLIB.dll
    0x722B0000 - 0x722B5000  C:\WINDOWS\system32\sensapi.dll
    0x72D10000 - 0x72D18000  C:\WINDOWS\system32\msacm32.drv
    0x72D20000 - 0x72D29000  C:\WINDOWS\system32\wdmaud.drv
    0x73760000 - 0x737AB000  C:\WINDOWS\system32\DDRAW.dll
    0x73BC0000 - 0x73BC6000  C:\WINDOWS\system32\DCIMAN32.dll
    0x73EE0000 - 0x73EE4000  C:\WINDOWS\system32\KsUser.dll
    0x73F10000 - 0x73F6C000  C:\WINDOWS\system32\dsound.dll
    0x74720000 - 0x7476C000  C:\WINDOWS\system32\MSCTF.dll
    0x755C0000 - 0x755EE000  C:\WINDOWS\system32\msctfime.ime
    0x76380000 - 0x76385000  C:\WINDOWS\system32\Msimg32.dll
    0x76390000 - 0x763AD000  C:\WINDOWS\system32\IMM32.dll
    0x76790000 - 0x7679C000  C:\WINDOWS\system32\cryptdll.dll
    0x769C0000 - 0x76A74000  C:\WINDOWS\system32\USERENV.dll
    0x76B40000 - 0x76B6D000  C:\WINDOWS\system32\WINMM.dll
    0x76C30000 - 0x76C5E000  C:\WINDOWS\system32\WINTRUST.dll
    0x76C90000 - 0x76CB8000  C:\WINDOWS\system32\IMAGEHLP.dll
    0x76D60000 - 0x76D79000  C:\WINDOWS\system32\iphlpapi.dll
    0x76E80000 - 0x76E8E000  C:\WINDOWS\system32\rtutils.dll
    0x76E90000 - 0x76EA2000  C:\WINDOWS\system32\rasman.dll
    0x76EB0000 - 0x76EDF000  C:\WINDOWS\system32\TAPI32.dll
    0x76EE0000 - 0x76F1C000  C:\WINDOWS\system32\RASAPI32.dll
    0x76F20000 - 0x76F47000  C:\WINDOWS\system32\DNSAPI.dll
    0x76F60000 - 0x76F8C000  C:\WINDOWS\system32\WLDAP32.dll
    0x76FB0000 - 0x76FB8000  C:\WINDOWS\System32\winrnr.dll
    0x76FC0000 - 0x76FC6000  C:\WINDOWS\system32\rasadhlp.dll
    0x77120000 - 0x771AB000  C:\WINDOWS\system32\OLEAUT32.dll
    0x773D0000 - 0x774D3000  C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\comctl32.dll
    0x774E0000 - 0x7761D000  C:\WINDOWS\system32\ole32.dll
    0x77690000 - 0x776B1000  C:\WINDOWS\system32\NTMARTA.DLL
    0x77920000 - 0x77A13000  C:\WINDOWS\system32\SETUPAPI.dll
    0x77A80000 - 0x77B15000  C:\WINDOWS\system32\CRYPT32.dll
    0x77B20000 - 0x77B32000  C:\WINDOWS\system32\MSASN1.dll
    0x77BD0000 - 0x77BD7000  C:\WINDOWS\system32\midimap.dll
    0x77BE0000 - 0x77BF5000  C:\WINDOWS\system32\MSACM32.dll
    0x77C00000 - 0x77C08000  C:\WINDOWS\system32\VERSION.dll
    0x77C10000 - 0x77C68000  C:\WINDOWS\system32\msvcrt.dll
    0x77C70000 - 0x77C95000  C:\WINDOWS\system32\msv1_0.dll
    0x77DD0000 - 0x77E6B000  C:\WINDOWS\system32\ADVAPI32.dll
    0x77E70000 - 0x77F02000  C:\WINDOWS\system32\RPCRT4.dll
    0x77F10000 - 0x77F59000  C:\WINDOWS\system32\GDI32.dll
    0x77F60000 - 0x77FD6000  C:\WINDOWS\system32\SHLWAPI.dll
    0x77FE0000 - 0x77FF1000  C:\WINDOWS\system32\Secur32.dll
    0x78130000 - 0x78262000  C:\WINDOWS\system32\urlmon.dll
    0x7C800000 - 0x7C8F6000  C:\WINDOWS\system32\kernel32.dll
    0x7C900000 - 0x7C9B2000  C:\WINDOWS\system32\ntdll.dll
    0x7C9C0000 - 0x7D1D7000  C:\WINDOWS\system32\SHELL32.dll
    0x7E410000 - 0x7E4A1000  C:\WINDOWS\system32\USER32.dll
    
    
    ----------------------------------------
        Memory Dump
    ----------------------------------------
    
    Code: 16 bytes starting at (EIP = 006BA706)
    
    006BA706: 8B 08 8B 50  04 8B 06 A3  14 98 CB 00  89 0D A8 97  ...P............
    
    
    Stack: 1024 bytes starting at (ESP = 0019FD00)
    
    * = addr  **                                                  *               
    0019FD00: F0 8F 49 02  60 9E 4A 02  CB 8F CA 44  E2 75 8A C5  ..I.`.J....D.u..
    0019FD10: FE 3B 3B 41  CB 8F CA 44  E2 75 8A C5  FE 3B 3B 41  .;;A...D.u...;;A
    0019FD20: 54 FD 19 00  D3 13 C8 27  04 00 00 00  00 00 00 00  T......'........
    0019FD30: 38 FD 19 00  00 00 00 00  3D 82 A6 44  CD 6A 89 C5  8.......=..D.j..
    0019FD40: 52 B8 DE 41  9A 99 99 3F  10 A6 6B 00  C8 F4 C3 00  R..A...?..k.....
    0019FD50: 90 97 CB 00  94 FD 19 00  4C 85 63 00  C0 42 1E 00  ........L.c..B..
    0019FD60: 91 2B A6 00  30 86 5B 02  20 00 00 00  30 86 5B 02  .+..0.[. ...0.[.
    0019FD70: 8C FD 19 00  86 79 61 00  02 00 00 00  91 2B A6 00  .....ya......+..
    0019FD80: 00 00 00 00  00 00 00 00  00 00 80 3F  A8 FD 19 00  ...........?....
    0019FD90: AC 79 61 00  A8 FD 19 00  BF 79 61 00  00 00 00 00  .ya......ya.....
    0019FDA0: 00 00 00 00  00 00 00 00  60 FE 19 00  35 F5 44 00  ........`...5.D.
    0019FDB0: 10 F7 27 02  90 F8 27 02  00 00 80 3F  00 00 00 00  ..'...'....?....
    0019FDC0: 00 00 00 00  00 00 00 00  00 00 00 00  00 00 80 3F  ...............?
    0019FDD0: 00 00 00 00  00 00 00 00  00 00 00 00  00 00 00 00  ................
    0019FDE0: 00 00 80 3F  00 00 00 00  00 00 00 00  00 00 00 00  ...?............
    0019FDF0: 00 00 00 00  00 00 80 3F  00 00 00 40  00 00 00 00  .......?...@....
    0019FE00: 00 00 00 00  00 00 00 00  00 00 00 00  00 00 00 40  ...............@
    0019FE10: 00 00 00 00  00 00 00 00  00 00 00 00  00 00 00 00  ................
    0019FE20: 6F 12 83 3B  00 00 00 00  00 00 80 BF  00 00 80 BF  o..;............
    0019FE30: 00 00 80 BF  00 00 80 3F  00 00 00 00  00 00 00 00  .......?........
    0019FE40: 00 00 80 3F  00 00 80 3F  00 00 00 00  00 00 00 00  ...?...?........
    0019FE50: 00 00 80 3F  00 00 00 00  00 00 80 3F  00 00 80 3F  ...?.......?...?
    0019FE60: 90 FE 19 00  D9 7A 42 00  00 00 00 00  00 00 00 00  .....zB.........
    0019FE70: BF 56 59 1E  10 F7 27 02  60 9E 4A 02  95 F8 27 02  .VY...'.`.J...'.
    0019FE80: 2D 4B 42 00  10 F7 27 02  06 00 00 00  01 00 00 00  -KB...'.........
    0019FE90: B8 FE 19 00  A9 4B 42 00  10 F7 27 02  17 00 00 00  .....KB...'.....
    0019FEA0: 00 00 00 00  88 60 42 00  28 0A 00 00  00 00 00 00  .....`B.(.......
    0019FEB0: 01 00 00 00  00 00 00 00  0C FF 19 00  BA 61 42 00  .............aB.
    0019FEC0: 00 00 00 00  50 8D 97 3D  02 00 00 00  45 6E 67 69  ....P..=....Engi
    0019FED0: 6E 65 20 31  31 62 38 00  00 00 00 00  00 00 1C 00  ne 11b8.........
    0019FEE0: D8 FC 19 00  2C 16 91 7C  B0 FF 19 00  28 0A 00 00  ....,..|....(...
    0019FEF0: 10 51 1D 00  00 00 00 00  1A DC 90 7C  C7 A0 80 7C  .Q.........|...|
    0019FF00: F4 20 00 00  00 00 00 00  24 FF 19 00  24 FF 19 00  . ......$...$...
    0019FF10: 01 62 42 00  00 00 00 00  72 6D 40 00  01 00 00 00  .bB.....rm@.....
    0019FF20: 01 00 00 00  C0 FF 19 00  ED 6D 40 00  F9 B9 40 00  .........m@...@.
    0019FF30: 00 00 40 00  00 00 00 00  3D 23 1C 00  01 00 00 00  ..@.....=#......
    0019FF40: 8C 25 75 53  01 00 00 80  74 D3 FE 00  00 F0 FD 7F  .%uS....t.......
    0019FF50: 44 00 00 00  40 32 1C 00  A0 32 1C 00  B8 32 1C 00  [email protected]..
    0019FF60: 00 00 00 00  00 00 00 00  00 00 00 00  00 00 00 00  ................
    0019FF70: 00 00 00 00  00 00 00 00  00 00 00 00  01 0C 00 00  ................
    0019FF80: 01 00 00 00  00 00 00 00  00 00 00 00  01 00 01 00  ................
    0019FF90: 00 00 00 00  05 00 00 C0  01 00 00 00  05 00 00 00  ................
    0019FFA0: 00 00 00 00  01 00 00 80  40 FF 19 00  28 F9 19 00  ........@...(...
    0019FFB0: E0 FF 19 00  A0 E3 40 00  14 42 C9 53  01 00 00 00  [email protected]....
    0019FFC0: F0 FF 19 00  77 70 81 7C  01 00 00 80  74 D3 FE 00  ....wp.|....t...
    0019FFD0: 00 F0 FD 7F  05 00 00 C0  C8 FF 19 00  24 F9 19 00  ............$...
    0019FFE0: FF FF FF FF  D8 9A 83 7C  80 70 81 7C  00 00 00 00  .......|.p.|....
    0019FFF0: 00 00 00 00  00 00 00 00  00 10 40 00  00 00 00 00  ..........@.....
    001A0000: 41 63 74 78  20 00 00 00  01 00 00 00  9C 24 00 00  Actx ........$..
    001A0010: C4 00 00 00  00 00 00 00  20 00 00 00  00 00 00 00  ........ .......
    001A0020: 14 00 00 00  01 00 00 00  06 00 00 00  34 00 00 00  ............4...
    001A0030: 14 01 00 00  01 00 00 00  00 00 00 00  00 00 00 00  ................
    001A0040: 00 00 00 00  00 00 00 00  00 00 00 00  02 00 00 00  ................
    001A0050: 00 00 00 00  00 00 00 00  00 00 00 00  14 02 00 00  ................
    001A0060: 9C 01 00 00  00 00 00 00  5B 49 59 2D  B0 03 00 00  ........[IY-....
    001A0070: 32 00 00 00  E4 03 00 00  D8 02 00 00  00 00 00 00  2...............
    001A0080: E4 02 02 83  BC 06 00 00  46 00 00 00  04 07 00 00  ........F.......
    001A0090: EA 02 00 00  00 00 00 00  D2 D5 8C D1  F0 09 00 00  ................
    001A00A0: 46 00 00 00  38 0A 00 00  EA 02 00 00  00 00 00 00  F...8...........
    001A00B0: 2E AD 6A D8  24 0D 00 00  46 00 00 00  6C 0D 00 00  ..j.$...F...l...
    001A00C0: 04 03 00 00  10 00 00 00  04 00 00 00  D4 00 00 00  ................
    001A00D0: 02 00 00 00  01 00 00 00  14 01 00 00  90 0F 00 00  ................
    001A00E0: 01 00 00 00  02 00 00 00  A4 10 00 00  2C 03 00 00  ............,...
    001A00F0: 01 00 00 00  04 00 00 00  D0 13 00 00  50 10 00 00  ............P...
    
    
    ------------------------------------------------------------------------------
    
    ======================================================================
    Hardware/Driver Information:
    Processor:              0x0
    Page Size:              4096
    Min App Address:        0x10000
    Max App Address:        0x7ffeffff
    Processor Mask:         0x3
    Number of Processors:   2
    Processor Type:         586
    Allocation Granularity: 65536
    Processor Level:        6
    Processor Revision:     3846
    Os Version:             5.1
    Os Service Pack:        3.0
    
    Percent memory used:    46
    Total physical memory:  3756437504
    Free Memory:            2003320832
    Page file:              5728894976
    Total virtual memory:   2147352576
    Clearly I am not using the function prototype correctly, if anyone can suggest as to why this is occurring that would be skippy.

    Cheers,
    Harland.
    Last edited by Harland; 01-11-2010 at 04:07 AM.

    InProcess Click To Move Call
  2. #2
    Kryso's Avatar Active Member
    Reputation
    40
    Join Date
    Jul 2009
    Posts
    97
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    In crash log you have 0x006BA61C and in post 0x006BA6C1, however both are connected to "this" pointer - so you are passing wrong pointer to player structure.

    This is how I found it:
    Code:
    .text:006BA616                 push    ebx
    .text:006BA617                 mov     ebx, ecx
    .text:006BA619                 mov     eax, [ebx+8]
    .text:006BA61C                 mov     ecx, [eax]
    This is at start of function:

    First two instructions save ebx register and then move ecx (pThis) to ebx where it remains until end of function.

    Third instruction sets eax to ebx+8 (pThis+ - thats object fields.

    And finally fourth instruction - the one where your exception pops - tries to dereference eax (object fields) - where object guid is stored - and since you have passed wrong pointer to pThis, object fields can't be correct and it explodes
    Last edited by Kryso; 01-11-2010 at 03:04 AM.

  3. #3
    Harland's Avatar Member
    Reputation
    8
    Join Date
    Oct 2007
    Posts
    50
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Apologies I got my notepad notes mixed up I updated the error I was receiving in my opening post. The previous WoW Log Crash I copy pasted was the wrong one I had saved earlier.

    Thank you though for your time spent :P

  4. #4
    Kryso's Avatar Active Member
    Reputation
    40
    Join Date
    Jul 2009
    Posts
    97
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You can't pass NULL as guid, you must pass pointer to int64 (if you don't need guid for this action type, pass pointer to int64 wich is zero)

  5. #5
    Harland's Avatar Member
    Reputation
    8
    Join Date
    Oct 2007
    Posts
    50
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    *sigh* So simple, I can't believe I overlooked that. Thank you for your help working perfectly now.

  6. #6
    lanman92's Avatar Active Member
    Reputation
    50
    Join Date
    Mar 2007
    Posts
    1,033
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah, you were passing a NULL parameter and wondered why it was throwing a null reference exception...?

Similar Threads

  1. [Hack] Guardians CTM Teleporter (Click to move)
    By The-Guardian in forum WoW EMU Programs
    Replies: 95
    Last Post: 06-09-2020, 02:50 PM
  2. Click to Move - Explained
    By Apoc in forum WoW Memory Editing
    Replies: 33
    Last Post: 01-19-2010, 07:28 AM
  3. [3.2] Click To Move
    By Kamuuk in forum WoW Memory Editing
    Replies: 25
    Last Post: 08-22-2009, 10:59 AM
  4. Click to move?
    By ashleyww in forum WoW Memory Editing
    Replies: 32
    Last Post: 07-18-2009, 08:48 PM
  5. Click to Move Problem
    By Rival-Fr in forum WoW Memory Editing
    Replies: 5
    Last Post: 07-03-2009, 09:27 AM
All times are GMT -5. The time now is 02:37 AM. 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