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

Thursday, 16 August 2012

Green Macro - thank you for registering :)

I appreciate that you take time and effort to register with us. :) And as promised, this tool will be FREE for ever. But i do need your support to take a little bit more time to click the ADs within the blog. That may become the only source to fund the development.

But I also need comment if you can provide. I am not going to setup a forum (not now) because I need to focus on adding new functions to this tool.

BTW, this tool may also able to bypass GameGuard and/or NProtect. It does worth a try :)

New functions might include Pixcel / Picture pattern find / locate... Because this tool already have the function but not exposed yet :)

Any suggestions are welcome.

Some may also worry if this will be blocked by Xtrap, GameGuard and/or NProtect in future. The only thing I can tell is: SINCE I CAN MAKE IT to BYPASS, I WILL STILL BE ABLE TO DO IT  IN FUTURE :)

[I am not a native English speaker, please bear with me when reading my posts. ty :) ]

Monday, 13 August 2012

Bypass x-trap and possibly other protection

You want a little bit of freedom when playing games. but the X-trap sucks. Non of the macro tools can be used to automate your keyboard and mouse, but except this :
GREEN MACRO

Give it a try and you will be supprised :)

 a simple but powerful tool.

sample scripts included in the zip file: GreenMacro_Release1.zip

post your comments and technical problems in the blog, thank you :)

EDIT:
version 2 updated: fixed the statartup bug

https://geafktools.appspot.com/download/GreenMacro_Release2.zip


Thursday, 12 April 2012

VIS making guide - for new Veterans - SOLO


Daily Instanced Raids - Castilla Mines

Drops: Enchantment Chips Lv 100 and Veteran Chips, Ancient Relic Piece, Gold Relic Piece
How to get there: talk to Castilla Exploration Recruit Soldier at Port of Coimbra. Find the entry of the mine at H-3. 
Recommended level: Veteran+ 
Note: You only need to kill the first two bosses listed here. Only these two bosses drops chip lv 100 and veteran.
Tips: Bring heavy armor / high defence characters; if you are very noob new veteran, buff "Protection Field" also can work.


Bosses:
  1. Iron Ararat of Chaos (lvl100)
    lifeless / heavy / none / large
    hp: 1,531,200
    AR / ATK: 54 / 9884
    DR / DEF: 54 / 192
    RES: Fire 50, Ice 75, Lightning 79, Mental 72
  2. Phobitan General of Chaos (lvl103)
    daemon / heavy / none / medium
    hp: 2,407,218
    AR / ATK: 55 / 10371
    DR / DEF: 55 / 202
    RES: Fire 74, Ice 71, Lightning 72, Mental 73

Wednesday, 11 April 2012

EASTER Egg Event April 2012 - sGE Granado Espada

  1. Najib Sharif in Reboldeaux will ask you for 50 Eggs. Eggs are dropped by any monster across all Granado Espada World maps at a good drop rate. Return to Najib for 1 Socket Processing Tranquilizer (Event).
  2. Talk to Najib again, then buy 10 dyes (1 of each color) from Market Manager or other players, or hunt in Ustiur maps. Return to Najib to obtain one Easter Egg and 2 Socket Processing Tranquilizer (Event).
  3. Give that Easter Egg to one of the following children for reward:
    • Viki in El Tejado Verde (G3) ... 1 Ring Box (Event)
    • Ramiro in Queen's Gate ... 3-10 Soul Crystals (Event)
    • Tiburon in Port of Bahia ... 5-10 Principal Ampules (Event)
    • Ludin in Port of Bahia ... 5-20 Veteran G EXP Cards
Event will be up to april 12 or 19...
happy easter~


Friday, 6 January 2012

AFK tips 1: Add Restore HP Options to your Weapon~

Add Great Pearl - Rumin to your weapon, which gives 4% damage to enemy restore HP, will make your character to better survive in AFK~~ Works much better in splash attack style.

happy AFK

AFK tool version 3 under way

Noticed the tool may not work on everybody's GE setting. A new version (version 3) is under way to tackle the different settings. Stay tuned...

Happy new year! :)

Monday, 5 December 2011

GEAFKTOOL version 2 available for download now

version 2 updated to geafktools.appspot.com

version 1 will be decommissioned soon. please get your latest version now. thank you!

geafktool: for a green afk in GE granado espada

Thursday, 1 December 2011

your ways to prevent keylogging software

Note: In a bid to tackle tampered software package, GEAFKTOOL recommend that:

* You do virus scan before you actually run the software.
* You login into game first, then run this software.
* Check the MD5 of the .exe file.

xtrap bypass macro - granado espada

tested...this tool can bypass xtrap. feel free to test it out!

have to mention another thing: to prevent keyloging software, please login into game first, then use the tool. actually this tool is designed in a way that if the game is not running, you can not even start this tool! thanks.

Wednesday, 30 November 2011

GE AFK Tool User Guide Updated

Please visit http://geafktools.appspot.com/userguide.html

thank you!

Monday, 28 November 2011

GE Green AFK Tools: A Great AFK Monitoring Tool (available now)

GE Green AFK Tools: A Great AFK Monitoring Tool (: GE AFK tool Register Now Download GE AFK tool Monitor, alarm, shutdown...for a green GE environment Support All GE version...

A Great AFK Monitoring Tool






GE AFK tool
Register Now
Download

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


GE AFK Tool Description

GEAFKTool is a AFK tool that is to help you AFK in a more environment friendly style: GREEN. GEAFKTOOL will monitor the AFK status of your characters (one char, two chars, or three chars, configurable), alarm you when dead (configurable), end GE game (configurable), and shutdown/standby your computer(configurable). Legal and compliance with GE terms and conditions. No unfair competition. Enjoy your AFK, no worries about AFK dead while computer burning for nothing but wasting power. Have fun!

getool1_small.jpg

Download your GE AFK Tool here: GEAFKTOOL

Terms and Use

By using the software, you automatically agree with the general software terms and conditions under domestic and international laws. The software supplier is not responsible for any loss or damage incurred while directly or indirectly using the software.

Any improper use or modification to this software is prohibited under domestic and international laws.