Green Flyff - PostMessage

10/02/2018 04:12 CoOLz1ne#1
Hello every1, I would like to ask how to bypass or can you me give a hint on how to bypass PostMessage on GreenFlyff.

Range/collision/admin mode/other entities etc. almost working

But my program are unable to press any f-keys.

[Only registered and activated users can see links. Click Here To Register...]
10/02/2018 06:09 forger123#2
try f1 as attack

PostMessage(hwnd, WM_KEYDOWN, 0x70, MapVirtualKey(0x70, MAPVK_VK_TO_VSC));
10/02/2018 06:34 CoOLz1ne#3
Quote:
Originally Posted by forger123 View Post
try f1 as attack

PostMessage(hwnd, WM_KEYDOWN, 0x70, MapVirtualKey(0x70, MAPVK_VK_TO_VSC));
Thanks for reply.
Already tried that sir. Nothing happens.
10/02/2018 14:08 cookie69#4
As this may help you and other people to bypass the PostMessage() blocking, the "smart" devs forgot about the virtual keyboard which is available on Windows "osk.exe".
You just need to run osk.exe, put the game window on foreground
Code:
SetForegroundWindow(hwnd);
and click on the virtual keyboard.
Clicking on the virt. keyboard could be done manually using the mouse move and the left-click but this will require to know the position of every button on the virt. keyboard window, but I am pretty sure it can be reversed and you will be able to call the virt. keyboard buttons from your c++ code ;)

10/03/2018 03:51 CoOLz1ne#5
Quote:
Originally Posted by cookie69 View Post
As this may help you and other people to bypass the PostMessage() blocking, the "smart" devs forgot about the virtual keyboard which is available on Windows "osk.exe".
You just need to run osk.exe, put the game window on foreground
Code:
SetForegroundWindow(hwnd);
and click on the virtual keyboard.
Clicking on the virt. keyboard could be done manually using the mouse move and the left-click but this will require to know the position of every button on the virt. keyboard window, but I am pretty sure it can be reversed and you will be able to call the virt. keyboard buttons from your c++ code ;)

Thank you sir cookie! as always :)
10/04/2018 23:04 Nick#6
#moved