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.
Friday, 19 October 2012
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.
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~
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 :)
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
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 :) ]
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
GREEN MACRO
Give it a try and you will be supprised :)
a simple but powerful tool.
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:
- 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 - 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
- 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).
- 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).
- 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
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
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! :)
Happy new year! :)
Subscribe to:
Posts (Atom)