Granado Espada,bot,bypass,x-trap,XTrap,Sword2,AFK,macro, autokeep,loot,tool, alarm, shutdown

Friday, 28 September 2012

Green Macro (Xtrap/GameGuard bypass) Q & A Update

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~

4 comments:

  1. Hi,

    I can't start green macro, kept getting error " cannot find dll2. exit".

    I'm using Vista.


    ReplyDelete
  2. Vista is not supported by GreenMacro now, sorry...
    the quickest solution (seriously) is...getting a xp, XD

    ReplyDelete
  3. 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

    ReplyDelete
  4. I use this tool to let keyboard input the up/right/left/down arrow key.
    However, the output result is always the number 8/6/4/2.
    How can I solve this problem?

    ReplyDelete