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

Sunday 29 September 2013

Green Macro version 20 released

Now support native scripts. You no longer  need Auto IT or AutoHotKey scripts, but you can code native green macro scripts easily.

please visit https://geafktools.appspot.com/index.html for tutorial, sample scripts, library, function list etc.

a sample script here:


var y=0x1c;
var  fx=0;
var fy=0;
var sx=0;
var sy=0;
var fnd;
function x(param1,param2)
{
    //your own function here
    return true;
}
function main(){ //always have a main function
    //WriteLogFile("log1.txt", "activetate...");
   
    RunApp("calc.exe", "");
   
    Delay(1000);
    if(ActiveWindow("calc.exe"))
    {
        x(9,18);
       
        Delay(1000);
            var v1=SKeyDown(0x08);//send a scan key 0x08 down
        WriteLogFile("log1.txt",v1);
        Delay(50);
        var v2=SKeyUp(0x08);    //send a scan key 0x08 up
        WriteLogFile("log1.txt",v2);
       
        Delay(50);
        v1=VKeyDown(0x37);    //send a scan virtual key 0x37 down
        WriteLogFile("log1.txt",v1);
        Delay(50);
        var v2=VKeyUp(0x37);    //send a scan virtual key 0x37 up
        WriteLogFile("log1.txt",v2);
        Delay(500);
        var m1=MouseMoveTo(0,0);    //mouse move to top left coroner of screen
        WriteLogFile("log1.txt","move:"+ m1);

       
    }
   
}

Thursday 22 August 2013

New version coming soon...old version disabled for now...

The new version of the green macro tool will support a native script similar to javascript.
This way you will not need to make DLL call or any third party scripting tool like AutoIT3 or AutoHotkey...
*and* Xtrap/GG/NP will not able to intercept your DLL calls...
But... the new version will backward compatible with old version and third party scripts like AutoIT3 or AutoHotkey... DLL calls still there and no change.


Window 7&8 version still NOTunder development yet due to the lack of such operation system. I am still stick to XP and no budget to upgrade yet.

Btw the old version is disabled and off the shelf now...any one who still need it in the mean time, please let me know by leaving a comment or request thru email.

Thank you.

Friday 19 October 2012

Green Macro v5 update-support DirectX image search

Green Macro v5 has been released for a few weeks. Now you can search images on DirectX game with new fucntions/interface in the DLL.
Download v5 at:

http://geafktools.appspot.com/download/GreenMacro_Release5.zip

Sample code (AutoIT v3) for calling the DLL to search image and send mouse click on the searched image is also available at:

geafktools.appspot.com


thanks for using Green Macro

----
note:
I was thinking of developing a version for Windows 7(64 bit), which should not be harder than the XP version, because the Win7 Version x-trap/gameguard no longer able to hook kernel functions. So developing at user mode level ought be enough to bypass it. I already have the idea but the BIG thing is I do not have a Windows 7 64 bit operation system, >_<

Will keep you posed.

Still, the quickest solution for you is...Getting a XP now, XD

thanks.

Monday 1 October 2012

Trainer for Granado Espada / Sword 2 /GE Russia/PH/Veitnam/Korea/Japan/Singapore

A simple trainer for free download (Windows XP) at:

http://geafktools.appspot.com/download/GETrainer_release1.zip


This Trainer is mainly do the looting, and stay in keep mode. More functions may be added later. Thanks.

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~

Saturday 25 August 2012

Green Macro vs x-trap, GameGuard, NProtect

We know that Green Macro can bypass x-trap, so no question for this :)

But for GameGuard/Nprotect, if by chance your are playing any game with these, please update us whether Green Macro can bypass it or not,  thank you for your input :)

Green Macro v4 released

Now you can use any scripting language (AutoIT, AutoHotKey, VBS, C++/C#/VB ...) to do your own script to call Green Macro keyboard / mouse service interface. This allow you the maximum flexibility to do nestling coding, user defined functions, pixel search, application control, HotKey, etc.

Please visit geafktools.appspot.com for the most updated version, script samples and Green Macro v4 DLL interface.

So far I have received a lot of response and comments regarding Green Macro. I may not have time to response each & every one individually, but here's the summary of my response to common questions.

1. WIN7 Support: Windows 7 (32bit) is on the way. It's going to be finalized and released soon with version v4 interface. stay tuned :)

2. Nestling code: Yes now you can use AutoIT/AutoHotKey to call it. Samples codes are provided at geafktools.appspot.com for calling keyboard / mouse / pixel functions from Green Macro.

Please keep visiting geafktools.appspot.com for most updated versions and information. thank you.

----------------------

v4 update: update the DLL interface and pixel search function; added AUTOIT script samples
v3 update: added two pixel functions to DLL: pixel reading and pixel search
v3 update: added dll export functions, now you can use AUTOIT, AUTOHOTKEY or any programming language to do scripting.
v2 update: fixed the startup error