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 :) ]
sir i just used ur program and its working
ReplyDeleteonly fallback is ... its only limited on keypress
but if u could update it in much better version w/ pixel search it would be great ...
and 1 question :
is nesting codes supported by the program?
hope u rely soon ^_^
thanks for using it :) and glad to hear that it is working.
ReplyDeleteYes I will update it with new functions including pixel search. I have made the harder part to bypass, the rest is only do basic programming to add new features...
what you mean by "nesting codes"? currently it does not support nested loops yet...
yah thats what i mean like cr8ting a function and call it on another function ....
ReplyDeleteeg.
func Autoloot()
send
sleep
endfunc
loop(-1)
call(Autoloot)
sleep
loopend()
sir 1 more thing do u have 1 for 64bit OS?
ReplyDeleteNow you can use any scripting language like AUTOIT, AutoHotKey to call GreenMacro functions. So you can create your own functions and do any nestling coding. Pixel reading/search functions are included in GreenMacro. thanks.
ReplyDeleteits working sir thank you i'm playing ran online that this program bypass GG. but its limited keypress... can u make unlimited keypress sir? i'm using looping statement but its stock on limited keypress.. pls its really helpful thank you sir
ReplyDeleteDo you mean the tool/script will stop working after a few minutes (let's say 5 mins)?
ReplyDeleteFf you are using AutoIT to call DLL, you need to close and re-open the dll again after a couple of DLLCALLs:
for example:
;---------------------------------
$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
;---------------------------------