Results 1 to 5 of 5
  1. #1
    FelipeTskill
    FelipeTskill is offline
    New member FelipeTskill's Avatar
    Join Date
    2012 Feb
    Posts
    5
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    Exclamation [HELP] Xtrap is detecting GetAsyncKeyState

    The Xtrap began to detect the GetAsyncKeyState, tried another method with RegisterHotKey and did not work, I wonder if there is some other method? Xtrap for game Priston Tale.

  2. #2
    The_USDL
    The_USDL is offline
    Senior Member The_USDL's Avatar
    Join Date
    2011 Oct
    Posts
    201
    Thanks Thanks Given 
    24
    Thanks Thanks Received 
    538
    Thanked in
    47 Posts
    Rep Power
    0
    Code:
    BOOL WINAPI RegisterHotKey(
      __in_opt  HWND hWnd,
      __in      int id,
      __in      UINT fsModifiers,
      __in      UINT vk
    );


    Code:
    #include "stdafx.h"
    
    int _cdecl _tmain (
        int argc, 
        TCHAR *argv[])
    {           
        if (RegisterHotKey(
            NULL,
            1,
            MOD_ALT | MOD_NOREPEAT,
            0x42))  //0x42 is 'b'
        {
            _tprintf(_T("Hotkey 'ALT+b' registered, using MOD_NOREPEAT flag\n"));
        }
     
        MSG msg = {0};
        while (GetMessage(&msg, NULL, 0, 0) != 0)
        {
            if (msg.message == WM_HOTKEY)
            {
                _tprintf(_T("WM_HOTKEY received\n"));            
            }
        } 
     
        return 0;
    }


    ---------- Post added at 06:07 AM ---------- Previous post was at 06:07 AM ----------

    Try This, if dont work, let me know.

  3. #3
    FelipeTskill
    FelipeTskill is offline
    New member FelipeTskill's Avatar
    Join Date
    2012 Feb
    Posts
    5
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0
    I tried and also failed... =X

  4. #4
    DarkSider
    DarkSider is offline
    New member DarkSider's Avatar
    Join Date
    2012 Feb
    Location
    Fortaleza,Brazil
    Posts
    9
    Thanks Thanks Given 
    1
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0
    Well i tried it too,i think xtrap isn´t detecting the hotkeys,because i used a old bypass and the RegisterHotkey code worked,message pops up in the chat screeen,but, without the bypass nothing works,what xtrap is doing to our dll?

    Thank you THE_USDL

  5. #5
    liteshield
    liteshield is offline
    New member
    Join Date
    2013 Aug
    Posts
    6
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0
    Try DynamicWrapper it should work.

Similar Threads

  1. Xtrap
    By bhebhe in forum Aika Online
    Replies: 1
    Last Post: 2010-12-03, 09:44 PM

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
  •