Send packet ,No response to the game menu

User Tag List

Results 1 to 6 of 6
  1. #1
    metalqiang's Avatar Member
    Reputation
    1
    Join Date
    Jul 2008
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Send packet ,No response to the game

    Send packet ,No response to the game

    DWORD g_55F8A6 = 0x55F8A6;
    void __declspec (naked) Old55F8A0(char *arg)
    {
    __asm
    {
    push ebp;
    mov ebp,esp;
    push esi;
    mov esi,ecx;
    jmp g_55F8A6;
    }
    }
    void sendpkt()
    {
    //build packet

    PARAM Param = BuildParam((DWORD)&myPacket);

    DWORD dwClassPt = GetClassPointer();

    __asm
    {
    mov ecx,dwClassPt;
    lea eax,Param;
    push eax;
    call Old55F8A0;
    }



    }
    No response to the game,why?
    how to fix it.

    Send packet ,No response to the game
  2. #2
    galpha's Avatar Member
    Reputation
    5
    Join Date
    Nov 2007
    Posts
    48
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You seems to not be using the right function and you aren't even encrypting your packet before sending it.

  3. #3
    kynox's Avatar Account not activated by Email
    Reputation
    830
    Join Date
    Dec 2006
    Posts
    888
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What the hell? You're calling the wrong function.
    Code:
    void SendPacket( CDataStore* pDataStore )
    {
        __asm
        {
            MOV EDX, pDataStore
            PUSH EDX
    
            MOV EAX, CurrentConnection__GetConnection
            CALL EAX
            MOV ECX, EAX
    
            MOV EAX, CurrentConnection__SendPacket
            CALL EAX
        }
    }
    
    #define CurrentConnection__SendPacket        0x0055F8A0
    #define CurrentConnection__ReceivePacket    0x0055F440
    #define CurrentConnection__GetConnection    0x005B3B80

  4. #4
    metalqiang's Avatar Member
    Reputation
    1
    Join Date
    Jul 2008
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i send myPacket with SetClientTime 0E1F814h
    so i code like this
    [code]
    //////////////////////// 0055F8A0-/////=Send packets ////////////////////////////////
    0055F8A0 /$ 55 push ebp
    0055F8A1 |. 8BEC mov ebp, esp
    0055F8A3 |. 56 push esi
    0055F8A4 |. 8BF1 mov esi, ecx
    0055F8A6 |. 837E 70 06 cmp dword ptr [esi+70], 6
    0055F8AA |. 75 68 jnz short 0055F914
    0055F8AC |. 8B45 08 mov eax, dword ptr [ebp+8]
    0055F8AF |. 57 push edi
    0055F8B0 |. 8B78 10 mov edi, dword ptr [eax+10]
    0055F8B3 |. 2B78 14 sub edi, dword ptr [eax+14]
    0055F8B6 |. 74 5B je short 0055F913
    0055F8B8 |. 8B8E 98210000 mov ecx, dword ptr [esi+2198]
    0055F8BE |. 6A 00 push 0
    0055F8C0 |. 50 push eax
    0055F8C1 |. E8 EA0AECFF call 004203B0
    0055F8C6 |. 8B96 98210000 mov edx, dword ptr [esi+2198]
    0055F8CC |. 013D A898D200 add dword ptr [D298A8], edi
    0055F8D2 |. 01BE F4210000 add dword ptr [esi+21F4], edi
    0055F8D8 |. 80BA 20010000>cmp byte ptr [edx+120], 0
    0055F8DF |. 75 32 jnz short 0055F913
    0055F8E1 |. 6A 28 push 28
    0055F8E3 |. 8BCE mov ecx, esi
    0055F8E5 |. E8 06FBFFFF call 0055F3F0
    0055F8EA |. 50 push eax
    0055F8EB |. 8BCA mov ecx, edx
    0055F8ED |. E8 FE01ECFF call 0041FAF0
    0055F8F2 |. 8B86 98210000 mov eax, dword ptr [esi+2198]
    0055F8F8 |. C680 23010000>mov byte ptr [eax+123], 4
    0055F8FF |. C680 26010000>mov byte ptr [eax+126], 2
    0055F906 |. 8B8E 98210000 mov ecx, dword ptr [esi+2198]
    0055F90C |. 6A 01 push 1
    0055F90E |. E8 CDFEEBFF call 0041F7E0
    0055F913 |> 5F pop edi
    0055F914 |> 5E pop esi
    0055F915 |. 5D pop ebp
    0055F916 \. C2 0400 retn 4

    but this code,Send packet ,No response to the game
    Last edited by metalqiang; 10-04-2008 at 10:39 AM.

  5. #5
    metalqiang's Avatar Member
    Reputation
    1
    Join Date
    Jul 2008
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kynox View Post
    What the hell? You're calling the wrong function.
    Code:
    void SendPacket( CDataStore* pDataStore )
    {
        __asm
        {
            MOV EDX, pDataStore
            PUSH EDX
    
            MOV EAX, CurrentConnection__GetConnection
            CALL EAX
            MOV ECX, EAX
    
            MOV EAX, CurrentConnection__SendPacket
            CALL EAX
        }
    }
    
    #define CurrentConnection__SendPacket        0x0055F8A0
    #define CurrentConnection__ReceivePacket    0x0055F440
    #define CurrentConnection__GetConnection    0x005B3B80
    i use this code
    also Send packet ,No response to the game

  6. #6
    kynox's Avatar Account not activated by Email
    Reputation
    830
    Join Date
    Dec 2006
    Posts
    888
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Then you're sending the wrong packet. What are you trying to send exactly?

Similar Threads

  1. Replies: 1
    Last Post: 12-14-2015, 01:24 PM
  2. Get the best pet in the game...FEL REAVER (any class)
    By Paperboi in forum World of Warcraft Exploits
    Replies: 38
    Last Post: 03-29-2007, 11:10 PM
  3. Removing night from the game?
    By Nidhogg in forum WoW ME Questions and Requests
    Replies: 7
    Last Post: 01-05-2007, 04:55 PM
  4. Leave AB gates before the game starts. (1.12)
    By Demise in forum World of Warcraft Exploits
    Replies: 21
    Last Post: 09-23-2006, 12:30 AM
  5. How do you find memory offsets in the game?
    By koalaz2004 in forum World of Warcraft General
    Replies: 0
    Last Post: 08-18-2006, 09:40 PM
All times are GMT -5. The time now is 03:06 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