Have received some questions from some users. Here are my answers to your questions. So sorry if it's coming a bit late :)
1. Glad to hear that this tool also bypass GameGuard :)
2. keyboard/mouse action blocked by XTrap/GameGuard every 3-5 minutes:
Solutions: You need to open, close DLL after a couple of DLLCALLs, because the xtrap and gameguard will actively monitor and trap the keyboard and mouse actions, >_<
for example, the following code [written in AUTOIT v3, not tested, but to show you the idea] is a infinite loop that keeps open DLL, send keyboard actions, then close DLL; then open DLL again and send keyboard actions then close....
;--------------------------------
$v_key_7=55; virtual key for key 7 : 55 (0x37)
;key input loop: infinite loop for keyboard input
while 1==1
Sleep(2000);
WinActivate("my game");
Sleep(100);
EnterKey($v_key_7);
wend
;*****remember to close dll and open dll again and again...if xtrap and GameGuard blocks it every 3-5 mins.****
Func EnterKey($v_key)
Local $dll = DllOpen("GreenMacroDLL.dll")
if $dll <> -1 Then
$keydown=1;
$keyup=0;
$result1 = DllCall($dll, "int", "KeyboardInput", "int", $v_key, "int", $keydown);//key down;
Sleep(50);
$result2 = DllCall($dll, "int", "KeyboardInput", "int", $v_key, "int", $keyup);//key up
DllClose($dll)
;MsgBox(0,"keydown succeed?", $result1[0]);
;MsgBox(0,"keyup succeed?", $result2[0]);
endif
EndFunc
;--------------------------------
3. the Pixel/ ImageSearch is not working on DirectX Games.
Yes I acknowledge that. these two functions not working on DirectX.
A new function for DirectX Image Search is finished development and now in the testing stage. It's WORKING :) will be released soon
4. Win7 version release date
Facing technical issues and still under the testing.
If you are waiting for win7 64 bit version, what I tell is: all drivers under 64 bit will need to purchase certificate to sign the drivers. And that is NOT on my TO DO list...
So... Getting a free/cheap XP (32 bit) will be quick solution to you :) XD
Thank you for using Green Macro~
Hi,
ReplyDeleteI can't start green macro, kept getting error " cannot find dll2. exit".
I'm using Vista.
Vista is not supported by GreenMacro now, sorry...
ReplyDeletethe quickest solution (seriously) is...getting a xp, XD
Sir i'm implementing application with your tool sir. i just want to create application without accessing login in greenmacro.exe. but instead i just want to replace in my application accessing greenmacrodll.dll sir
ReplyDeleteI use this tool to let keyboard input the up/right/left/down arrow key.
ReplyDeleteHowever, the output result is always the number 8/6/4/2.
How can I solve this problem?