Analyze
Members-
Posts
15 -
Joined
-
Last visited
Analyze's Achievements
Seeker (1/7)
0
Reputation
-
Anybody can help me with this Proplem i want to connect to my server over SSl and see the log in a window like this tool. Gui+Bottons i can make fuktion for button too but i dont know how to add a ftp.exe like putty or other into a GUI. Please help me im a nooby ^^
-
I hope now understand it better. IF the game.exe updatet then the game change the most offsets.And i need to serach again with CE to get the new Adressse. Instructions: * The HEX Value Need to Array of Bytes Scan: Auto Pots Hack->->83 78 08 13 0F 84 Non Agro Hack->->0F B7 86 54 01 00 Vac Hack->->8B 50 1C 89 51 20 Speed Hack->->D9 40 08 5F 5E C3 Range Hack->->8A 44 24 04 88 81 Map Hack->->0F B7 98 04 01 00 GM Hack->->8B 80 A8 00 00 00 Zoom Hack->->F3 0F 10 47 04 EB Detect Script Hack->->C7 46 0C 00 00 00 00 89 47 04 Far Eye Hack->->8B 48 08 8B 50 04 51 8B 4C 24 Store Hack->->8A 41 08 C3 CC CC CC CC CC CC CC CC CC CC CC CC 8B 0D Elusive Hack->->8B 08 8B 50 04 89 4C 24 20 Or The 2 Way to get the new Adresss Instructions: * The Codes Need to Assemble Scan: Auto Pots Hack->->cmp dword ptr [eax+08],13 Non Agro Hack->->movzx eax,word ptr [esi+00000154] Vac Hack->->mov edx,[eax+1c] Speed Hack->->fld dword ptr [eax+08] Range Hack->->mov [ecx+000000a8],al Map Hack->->movzx ebx,word ptr [eax+00000104] GM Hack->->mov eax,[eax+000000a8] Zoom Hack->->movss xmm0,[edi+04] Detect Script Hack->->mov [esi+0c],00000000 Far Eye Hack->->mov ecx,[eax+08] Store Hack->->mov al,[ecx+08] Elusive Hack->->mov ecx,[eax] Is there a way to Dump the New adresss with autoit ?
-
Big Thx Perfect The Rest i hope i can do by myself you are The Best Thx Thx Thx Thx
-
Big Thx But i dont understand it to 100 % can you help me again ? Anything i make wrong. I want to convert the link when i press "Get it" and then i want thats autoit open it in IE window. #include <IE.au3> $gui = GUICreate("Internet", 800, 600, 195, 127) $String = GUICtrlCreateInput("http://www.google.com/?d=GVOMXHQ2", 5, 355, 440, 21) $GoogleString = "http://www.google.com/" $myVar = StringRight($String, 8) $Result = $GoogleString & "mgr_dl.php?d=" & $myVar $button_url = GUICtrlCreateButton("Get It", 456, 352, 129, 25, 0) $oIE = _IECreateEmbedded() $oIE_ctrl = GUICtrlCreateObj($oIE, 0, 0, 800, 300) GUISetState(@SW_SHOW) _IENavigate($oIE, "http://www.google.com/?") While 1 $nMsg = GUIGetMsg() Switch $nMsg Case -3 Exit Case $String _IENavigate($oIE,$Result) EndSwitch WEnd
-
Here My Input http://www.google.com/?d=GVOMXHQ2 Output i want to change url to this http://www.google.com/mgr_dl.php?d=GVOMXHQ2 I need to change /?d to /mgr_dl.php?d How i can write it on Autoit ?
-
Push -.-
-
#include <NomadMemory.au3> $progname = "Memory reading" $ah_Handle = "0xC7 46 0C 00 00 00 00 89 47 04" $sv_Type = "char[20]" $target_pid = ProcessExists ( "Game.exe" ) If $target_pid=0 Then MsgBox (16, $progname, "Process not found !") Exit EndIf $Nomad_struct = _MemoryOpen($target_pid) If Not @error=0 Then MsgBox (16, $progname, "Process could not be opened !") Exit EndIf MsgBox(4096, $progname, Hex(_MemoryRead($iv_Address, $ah_Handle[, $sv_Type]) I dont unterstand it -.- !°°°°
-
push
-
Hallo All short Proplem again with MemoryRead I want to write a Offset dumper but dont know how to start.Because after a Update Offset are patched or changed. I only want to read the new Offset from hex. Here is a Example Ce Scripts i used.. [ENABLE] alloc(DetectGM,512) label(ReturnName) registersymbol(DetectGM) DetectGM: cmp [eax+70],5D4D475B //[GM] je 00000000 mov [esi+0c],00000000 jmp ReturnName 00553763: //C7 46 0C 00 00 00 00 89 47 04 jmp DetectGM nop nop ReturnName: [DISABLE] dealloc(DetectGM) unregistersymbol(DetectGM) 00553763: mov [esi+0c],00000000 Here are the Offset+Hex 00553763: //C7 46 0C 00 00 00 00 89 47 04 I need to serach the hex code ine the .exe to get the new Valve but how i can write a script for it anybody can write a Example Script. Big thx if you can help me out. EDIT: Push I found a script but how to Scan Array of Bytes Valve ? Here are a example The HEX Value Need to Array of Bytes Scan: Auto Pots Hack->->83 78 08 13 0F 84 Speed Hack->->D9 40 08 5F 5E C3 GM Found->-> C7 46 0C 00 00 00 00 89 47 04 My Error (17) : ==> Unable to parse line.: MsgBox(4096, $progname, Hex(_MemoryRead(0xC7 46 0C 00 00 00 00 89 47 04,$Nomad_struct))) MsgBox(4096, $progname, Hex(_MemoryRead(0xC7 46 ^ ERROR >Exit code: 1 Time: 0.221 #include <NomadMemory.au3> $progname = "Memory reading" $target_pid = ProcessExists ( "Game.exe" ) If $target_pid=0 Then MsgBox (16, $progname, "Process not found !") Exit EndIf $Nomad_struct = _MemoryOpen($target_pid) If Not @error=0 Then MsgBox (16, $progname, "Process could not be opened !") Exit EndIf MsgBox(4096, $progname, Hex(_MemoryRead(0xC7 46 0C 00 00 00 00 89 47 04,$Nomad_struct)))
-
Big thx now i learn much more about this fuktion.How to use it.
-
Can you tell me please how to use Combox i understand how to creat but how i can make if item2 select then do msg Hallo World. #include <GUIConstants.au3> GUICreate("My GUI combo") ; will create a dialog box that when displayed is centered. GUICtrlCreateCombo ("item1", 10,10) ; creates the first item in a, combo box. GUICtrlSetData(-1,"item2|item3","item3") ; add other items, and set a new default to display item 3. GUISetState () ; make the GUI visible. ; Run the GUI until the dialog is closed. While 1 $msg = GUIGetMsg() ; check for an input/message. If $msg = $GUI_EVENT_CLOSE Then ExitLoop ; on a close event, exit the loop. Wend
-
Have found it by my self thx #include <GuiConstants.au3> #include <WindowsConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> $Main_Gui = GUICreate("", 800, 600, 20, 20, $WS_POPUP, $WS_EX_TOOLWINDOW + $WS_EX_TOPMOST) $Graphic1 = GUICtrlCreateGraphic(80, 56, 33, 393) GUICtrlSetColor(-1, 0x000000) GUICtrlSetBkColor(-1, 0x000000) $Graphic2 = GUICtrlCreateGraphic(80, 56, 377, 41) GUICtrlSetColor(-1, 0x000000) GUICtrlSetBkColor(-1, 0x000000) $Graphic3 = GUICtrlCreateGraphic(424, 56, 33, 393) GUICtrlSetColor(-1, 0x000000) GUICtrlSetBkColor(-1, 0x000000) $Graphic4 = GUICtrlCreateGraphic(80, 424, 377, 25) GUICtrlSetColor(-1, 0x000000) GUICtrlSetBkColor(-1, 0x000000) GUISetControlsVisible($Main_Gui) GUISetState() While 1 Sleep(1000) WEnd Func GUISetControlsVisible($hWnd) Local $aM_Mask, $aCtrlPos, $aMask $aM_Mask = DllCall("gdi32.dll", "long", "CreateRectRgn", "long", 0, "long", 0, "long", 0, "long", 0) $aLastID = DllCall("user32.dll", "int", "GetDlgCtrlID", "hwnd", GUICtrlGetHandle(-1)) For $i = 3 To $aLastID[0] $aCtrlPos = ControlGetPos($hWnd, '', $i) If Not IsArray($aCtrlPos) Then ContinueLoop $aMask = DllCall("gdi32.dll", "long", "CreateRectRgn", _ "long", $aCtrlPos[0], _ "long", $aCtrlPos[1], _ "long", $aCtrlPos[0] + $aCtrlPos[2], _ "long", $aCtrlPos[1] + $aCtrlPos[3]) DllCall("gdi32.dll", "long", "CombineRgn", "long", $aM_Mask[0], "long", $aMask[0], "long", $aM_Mask[0], "int", 2) Next DllCall("user32.dll", "long", "SetWindowRgn", "hwnd", $hWnd, "long", $aM_Mask[0], "int", 1) EndFunc
-
Hi all i need short help with a transparenz background for my Form i only want to see the Graphic layer. Hi have tested so much but dont work and im not a Pro in autoit ^^ Thx if you can help me out #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form2 = GUICreate("Form2", 808, 516, 302, 218, $WS_POPUP,BitOR($WS_EX_TOPMOST,$WS_EX_TOOLWINDOW)) $Graphic1 = GUICtrlCreateGraphic(80, 56, 33, 393) GUICtrlSetColor(-1, 0x000000) GUICtrlSetBkColor(-1, 0x000000) $Graphic2 = GUICtrlCreateGraphic(80, 56, 377, 41) GUICtrlSetColor(-1, 0x000000) GUICtrlSetBkColor(-1, 0x000000) $Graphic3 = GUICtrlCreateGraphic(424, 56, 33, 393) GUICtrlSetColor(-1, 0x000000) GUICtrlSetBkColor(-1, 0x000000) $Graphic4 = GUICtrlCreateGraphic(80, 424, 377, 25) GUICtrlSetColor(-1, 0x000000) GUICtrlSetBkColor(-1, 0x000000) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd
-
Thx its work .
-
Hi all i need short help with the script when i press Start Bot the bot start but when i click on pause the bot dont stop same with exit -.-. i dont understand what i need to change -.- not a pro in autoit i know the bot will hang in the While loop of the start Function but i dont know how to fix it.Anybody can help me out ? #include-once #include <GUIConstants.au3> #include <TabConstants.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #include <UpdownConstants.au3> #include <EditConstants.au3> #include <ButtonConstants.au3> #include <ComboConstants.au3> ;- Get image Inetget("http://gamer.siammaster.com/images/dekaron-logo.gif", @TempDir & "\dekaron-logo.gif",0,0) ;- Done $BotGui = GUICreate("Dekaron Spambot v1", 400,400,300,250, $WS_POPUP,BitOR($WS_EX_TOPMOST,$WS_EX_TOOLWINDOW)) WinActivate("Dekaron") WinWaitActive ("Dekaron") GUISetBkColor(0x140000) GUISetFont(11,400,0,"Constantia",$BotGui) $GUI_Pic_Map = GUICtrlCreatePic(@TempDir & "\dekaron-logo.gif", 0, 0, 400, 150,0) Winsettrans("dekaron Spambot v1","",180) GUICtrlCreateLabel("Dekaron Spam Bot v1",110,150,200,25) GUICtrlSetColor(-1,0xFF0000) GUICtrlSetFont(-1,14,500, 0,"Constantia") GUICtrlCreateGroup("",0,60,200,10) GUICtrlSetColor(-1,0xFF0000) GUISetState(@SW_SHOW) $Button1 = GUICtrlCreateButton("Start Bot", 50,350,60,20) $Button2 = GUICtrlCreateButton("Pause Bot", 120,350,60,20) $Button3 = GUICtrlCreateButton("Exit Bot", 220,350,60,20) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button1 _Start() Case $Button2 _Pause() Case $Button3 _Ende() EndSwitch WEnd Func _Start() While 1 ControlSend ( "Dekaron", "", "", "1") sleep(1000) ControlSend ( "Dekaron", "", "", "2") sleep(1000) ControlSend ( "Dekaron", "", "", "3") sleep(1000) ControlSend ( "Dekaron", "", "", "4") sleep(1000) ControlSend ( "Dekaron", "", "", "5") sleep(1000) ControlSend ( "Dekaron", "", "", "6") sleep(1000) WEnd EndFunc Func _Pause() While 1 Sleep(3000) WEnd EndFunc Func _Ende() MsgBox(0, "© by Black", "Dekaron Spambot v1", 10000) Exit EndFunc