|
You last visited: Today at 20:34
Advertisement
free- Green Macro that bypass X-trap
Discussion on free- Green Macro that bypass X-trap within the Cabal Hacks, Bots, Cheats, Exploits & Macros forum part of the Cabal Online category.
08/16/2012, 08:34
|
#16
|
elite*gold: 370
Join Date: May 2011
Posts: 453
Received Thanks: 149
|
Quote:
Originally Posted by Kuroi★Mato
Can I use Cheat Engine with this?
|
Nop, just can do simple macro's for bm3 or etc.
it just fade x-trap keypress defense against other macro's!
|
|
|
08/16/2012, 10:25
|
#17
|
elite*gold: 0
Join Date: Jul 2012
Posts: 172
Received Thanks: 5
|
lol.. ive downloaded it run it and log in... but i dont know whats next... ive waited a bypass for xtrap for so long, but its here... i dont know how to use it
please can someone post some tutorial on how to use it... i really dont know whats is the next thing to do...
thanks
|
|
|
08/16/2012, 10:57
|
#18
|
elite*gold: 0
Join Date: Oct 2009
Posts: 21
Received Thanks: 0
|
How to use this?
|
|
|
08/16/2012, 16:04
|
#19
|
elite*gold: 0
Join Date: Jul 2011
Posts: 796
Received Thanks: 434
|
sir is can we nest the codes in these program?
Edit:
i think the TS is not the real owner of the program .....
|
|
|
08/23/2012, 05:04
|
#20
|
elite*gold: 0
Join Date: Dec 2011
Posts: 7
Received Thanks: 2
|
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.
|
|
|
08/23/2012, 05:15
|
#21
|
elite*gold: 0
Join Date: Jul 2011
Posts: 796
Received Thanks: 434
|
@TS so now we can select a autoit script ? or we nid to code it in a way the program can read it?
|
|
|
08/23/2012, 05:26
|
#22
|
elite*gold: 0
Join Date: Dec 2011
Posts: 7
Received Thanks: 2
|
sample AutoIT calling Green Macro-updated
AUTOIT script example to call keyboardINput:
Local $dll = DllOpen("GreenMacroDLL.dll")
Local $result1 = DllCall($dll, "int", "KeyboardInput", "int", 55, "int", 1);//key 7 down
Sleep(50);
Local $result2 = DllCall($dll, "int", "KeyboardInput", "int", 55, "int", 0);//key 7 up
DllClose($dll)
...check for function list in DLL
edit: please go to for updated Sample Scripts and updated version v4, updated v4 DLL interface. sorry for the inconvenience caused:
Run("calc.exe")
WinWaitActive("Calculator")
Sleep(1000);
Local $dll = DllOpen("GreenMacroDLL.dll")
if $dll <> -1 Then
$v_key=55; virtual key for key 7 : 55 (0x37)
$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
|
|
|
08/23/2012, 05:32
|
#23
|
elite*gold: 0
Join Date: Jul 2011
Posts: 796
Received Thanks: 434
|
Quote:
Originally Posted by geplayer99
AUTOIT script example to call keyboardINput:
Local $dll = DllOpen("GreenMacroDLL.dll")
Local $result1 = DllCall($dll, "int", "KeyboardInput", "int", 55, "int", 1);//key 7 down
Sleep(50);
Local $result2 = DllCall($dll, "int", "KeyboardInput", "int", 55, "int", 0);//key 7 up
DllClose($dll)
...check  for function list in DLL
|
ok ty so we use greenmacrodll to send keypresses and use autoit/ahk to operate it ...
oh 1 more how about pixel search in autoit?
|
|
|
08/23/2012, 06:38
|
#24
|
elite*gold: 0
Join Date: Feb 2009
Posts: 5
Received Thanks: 0
|
the method invocation is causing an error in AutoIT
|
|
|
08/23/2012, 11:16
|
#25
|
elite*gold: 0
Join Date: Jul 2011
Posts: 796
Received Thanks: 434
|
now my autoit crashes when i start the keypresser any solution ?
|
|
|
08/25/2012, 13:42
|
#26
|
elite*gold: 0
Join Date: Dec 2011
Posts: 7
Received Thanks: 2
|
visit geafktools.appsot.com for updated DLL interface, and sample script.
the v3 DLL was using __cdcel conversion that caused crash...
keyboard:-----------------
Run("calc.exe")
WinWaitActive("Calculator")
Sleep(1000);
Local $dll = DllOpen("GreenMacroDLL.dll")
if $dll <> -1 Then
$v_key=55; virtual key for key 7 : 55 (0x37)
$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
----------------------------------------------
mouse:----------
Run("calc.exe")
WinWaitActive("Calculator")
Sleep(5000);
Local $dll = DllOpen("GreenMacroDLL.dll")
if $dll <> -1 Then
$leftclick=1;
$rightclick=0;
$mousedown=1;
$mouseup=0;
$mx=300;
$my=200;
$absolute=1;
$relative=0;
$maxRes=65535;
;Sleep(5000);
;mouse move demo
$result1=DllCall($dll, "int", "SendMouseMove", "int", $mx * $maxRes/@DesktopWidth, "int", $my * $maxRes/@DesktopHeight, "int", $absolute); move to pixel 300, 200
Sleep(100);
;left click demo
$result1 = DllCall($dll, "int", "SendMouseClick", "int", $leftclick, "int", $mousedown);//mouse left click down
Sleep(50);
$result2 = DllCall($dll, "int", "SendMouseClick", "int", $leftclick, "int", $mouseup);/mouse left click up
Sleep(1000);
;right click demo
$result3 = DllCall($dll, "int", "SendMouseClick", "int", $rightclick, "int", $mousedown);//mouse right click down
Sleep(50);
$result4 = DllCall($dll, "int", "SendMouseClick", "int", $rightclick, "int", $mouseup);/mouse right click up
Sleep(50);
DllClose($dll)
;MsgBox(0, " l d", $result1[0]);
;MsgBox(0, " l u", $result2[0]);
endif
-------------
pixel------------
Sleep(5000);
Local $dll = DllOpen("GreenMacroDLL.dll")
if $dll <> -1 Then
;read pixel at screen resolution position 100, 100; returned result is a color 0x00BBGGRR
$screenX=100;
$screenY=100;
$resultColor= DllCall($dll, "int", "GetScreenPixel", "int", $screenX, "int", $screenY);
;MsgBox(0, "find color code at positon 100, 100: ", $resultColor[0]);
;pixel search demo; return value is a structure POINT{x,y}; return value {-1, -1} mean not found
;define the color to search
$colorToSearch=Dec("FF0000");
;define search range from point(x1,y1) to pint(x2,y2)
$x1=100
$y1=100
$x2=200
$y2=200
;define search accuracy
$accuracy=1; accuracy is a float value between 0 to 1; 1 means 100% accuracy color matching
$maxRes=65535;
$absolute=1;
;define the point structure to receive the search result
$tagPoint = DllStructCreate('int x;int y');define a point structure
$found= DllCall($dll, "int", "ScreenPixelSearch", "UINT", $colorToSearch, "int", $x1, "int", $y1, "int", $x2, "int", $y2, "double", $accuracy, "ptr", DllStructGetPtr($tagPoint));ScreenPixelSearch
;MsgBox(0, "found?", $found[0]);
if $found[0]>0 Then
;MsgBox(0, "found color blue at point (x:y)", "(" & DllStructGetData($tagPoint,"x") & ":" & DllStructGetData($tagPoint,"y") & ")" ) ;
;move to the found pixel position
$result1=DllCall($dll, "int", "SendMouseMove", "int", DllStructGetData($tagPoint,"x") * $maxRes/@DesktopWidth, "int", DllStructGetData($tagPoint,"y") * $maxRes/@DesktopHeight, "int", $absolute); move to pixel 300, 200
Sleep(50);
endif
;MsgBox(0, "found color blue at point y:", $tagPoint[1] ) ;
DllClose($dll)
EndIf
------------
|
|
|
08/25/2012, 18:28
|
#27
|
elite*gold: 0
Join Date: Jul 2011
Posts: 796
Received Thanks: 434
|
sir pixel search dont work properly .....specify what pixel code will we use?
in the autoit window info or the result color on the script ?
pls give more specific info about pixel search
BTW keypress and mouse move works fine ...
|
|
|
08/26/2012, 05:07
|
#28
|
elite*gold: 0
Join Date: Feb 2009
Posts: 5
Received Thanks: 0
|
hmmm.. I need the windows 7 version.
|
|
|
08/27/2012, 02:12
|
#29
|
elite*gold: 0
Join Date: Sep 2009
Posts: 27
Received Thanks: 0
|
please... need guide for user Green Macro Tool... >_>!!!!
|
|
|
08/27/2012, 02:26
|
#30
|
elite*gold: 0
Join Date: Jun 2012
Posts: 8
Received Thanks: 0
|
Quote:
Originally Posted by hotkey
CABAL PH can we use this?
|
it works in Band master dude..
|
|
|
 |
|
Similar Threads
|
X-trap bypass - Green Macro
08/15/2012 - General Gaming Discussion - 0 Replies
a free Macro that by pass x-trap:
https://geafktools.appspot.com/
worth a try, a simple macro tool :rtfm:
EDIT:
version 2 updated: fixed the statartup bug
https://geafktools.appspot.com/download/GreenMacr o_Release2.zip
|
(Question) x-trap bypass question x-trap merderer
03/13/2008 - Cabal Online - 0 Replies
I use thai cabalmain xtrap merdrere login the game 5 sec it is discon how to modify xtrap merderer or who have a bypass to use bot autoit it can't be detected thx a lot Bro.
|
Great Natures -> Green Lives Macro
09/29/2006 - Ragnarok Online - 6 Replies
Hallo erstmal,
bin brandneu hier, habe mich vorher auch nie in dieser szene bewegt da ich eigentlich ein ehrlicher spieler bin der auf exploits und hacks verzichtet.. aber das intressiert hier ja eh keine sau ;)
also folgenes: ich spiele auf euRo Chaos. da man auf der sleeper map ja viele great natures findet, die man zu green lives machen kann, habe ich mich nach einer möglichkeit umgesehen diesen aufwendigen prozess zu umgehen. ich habe ein tool auf openkore basis "zugespielt" bekommen,...
|
All times are GMT +1. The time now is 20:35.
|
|