Results 1 to 2 of 2
  1. #1
    asunabr
    asunabr is offline
    Inactive
    Join Date
    2018 Apr
    Posts
    1
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    1
    Thanked in
    1 Post
    Rep Power
    0

    Post Source Send Packet DLL Delphi

    Code:
    Procedure SendPacketDLL(Packet: Array of Byte; Size: Integer);
    asm
      PUSH SIZE
      PUSH PACKET
      CALL  ADDR_SENDPACKET
      ADD  ESP, 08H
    end;
    Original Packet:

    Code:
    18 00 2D 32 7E 01 0F 03 02 B3 01 02 15 08 00 00 EA 02 00 00 F9 0B 00 00
    Decrypted by Analiser2

    Code:
     18 00 2D 32 8D 01 0F 03 12 B2 01 02 31 08 00 00 0E 00 00 00 6D 0C 00 00
    18 00 //Size
    8D 01 //Player ID,the send packet fills this automatically;
    0F 03 //Opcode
    31 08 //Npc ID


    Code:
    procedure TForm2.btnClick(Sender: TObject);
    begin
      SetLength(Buffer, $18);//Put the Size
      PWORD(Integer(Buffer) + 00)^ := $18;//SIZE
      PWORD(Integer(Buffer) + 06)^ := $30F; //OPCODE
      PWORD(Integer(Buffer) + 12)^ := $831;//Npc ID
      PWORD(Integer(Buffer) + 16)^ := $0E; //This byte is for evolution the pran, I don't know what to call it.
      SendPacketDll(Buffer, $18);//Put the size
    end;

  2. The Following User Says Thank You to asunabr For This Useful Post:


  3. #2
    clold15
    clold15 is offline
    Inactive
    Join Date
    2018 Apr
    Posts
    3
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0
    That's it?
    Does copy and paste work? I mean just add the buttons with the functions that will work according to my creativity?
    Thanks

Similar Threads

  1. Replies: 1
    Last Post: 2013-10-23, 07:09 PM
  2. [Release] Fusion Trainer [Delphi Source]
    By topera in forum Aika Bots, Hacks, Cheats
    Replies: 26
    Last Post: 2012-11-10, 07:10 AM
  3. [Hack] WYD BR Trainner + Delphi Source
    By ]'LyNxy~' in forum Other MMO
    Replies: 1
    Last Post: 2012-11-02, 05:30 PM
  4. [Source] Aika jit to dds Converter Full Delphi source.
    By Dwar in forum Delphi
    Replies: 1
    Last Post: 2012-07-23, 02:21 PM
  5. [C++] Problem with Send packet at hooked recv/send
    By Vitalka in forum C/C++
    Replies: 6
    Last Post: 2012-01-25, 05:56 AM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •