Results 1 to 1 of 1
  1. #1
    phuongpm
    phuongpm is offline
    Guest
    Join Date
    2014 Mar
    Posts
    1
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    The way to call a function in Game

    This is an example of the calling function in Game, if we know the address and the number of function parameters. This function is code in InjectDLL file, you can customize the parameters depend on the quantity and type of content being detect in the game.
    Call_func_asm elephant (int func, int p1, int p2, int p3)
    {
    __asm ​​{
    push p3
    push p2
    push p1
    mov eax, func
    call eax
    / / add esp, 0x0c => activate this code if necessary
    }
    }

Similar Threads

  1. Allow a game to use hooked function
    By samuelrizzo in forum Anti-Cheat Systems
    Replies: 0
    Last Post: 2014-03-01, 08:38 PM
  2. [C#] DLL Injection ( Using Export Function Call)
    By emoisback in forum VB, .NET Framework
    Replies: 15
    Last Post: 2013-04-10, 02:20 AM
  3. [Tutorial] How to get better hit registration in Call of Duty 4
    By hexag0n in forum Call of Duty
    Replies: 1
    Last Post: 2013-03-04, 01:46 AM
  4. [C++] Call of Duty Bot source
    By Dwar in forum Call of Duty
    Replies: 4
    Last Post: 2012-08-25, 03:14 AM
  5. call fo duty xbox360
    By Vercingetorix in forum Research Requests
    Replies: 0
    Last Post: 2011-11-25, 02:57 PM

Posting Permissions

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