You last visited: Today at 02:53
Advertisement
Client Suspender Source Code[Autoit]
Discussion on Client Suspender Source Code[Autoit] within the General Gaming Discussion forum part of the General Gaming category.
06/07/2011, 13:20
#1
elite*gold: 0
Join Date: Jul 2010
Posts: 63
Received Thanks: 64
Client Suspender Source Code[Autoit]
Note: This script for autoit. Download autoit and scite editor.
Note 2 : Write to input : FT_Client.exe and Click to Freeze when showed banner.
Code:
Func _ProcessSuspend($process)
$processid = ProcessExists($process)
If $processid Then
$ai_Handle = DllCall("kernel32.dll", 'int', 'OpenProcess', 'int', 0x1f0fff, 'int', False, 'int', $processid)
$i_sucess = DllCall("ntdll.dll","int","NtSuspendProcess","int",$ai_Handle[0])
DllCall('kernel32.dll', 'ptr', 'CloseHandle', 'ptr', $ai_Handle)
If IsArray($i_sucess) Then
Return 1
Else
SetError(1)
Return 0
Endif
Else
SetError(2)
Return 0
Endif
EndFunc
Func _ProcessResume($process)
$processid = ProcessExists($process)
If $processid Then
$ai_Handle = DllCall("kernel32.dll", 'int', 'OpenProcess', 'int', 0x1f0fff, 'int', False, 'int', $processid)
$i_sucess = DllCall("ntdll.dll","int","NtResumeProcess","int",$ai_Handle[0])
DllCall('kernel32.dll', 'ptr', 'CloseHandle', 'ptr', $ai_Handle)
If IsArray($i_sucess) Then
Return 1
Else
SetError(1)
Return 0
Endif
Else
SetError(2)
Return 0
Endif
EndFunc
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("App Freezer", 400, 201, 272, 247)
$freeze = GUICtrlCreateButton("Freeze", 40, 88, 145, 57)
GUICtrlSetFont(-1, 12, 800, 0, "Calibri")
$Defreeze = GUICtrlCreateButton("Defreeze", 217, 88, 137, 57)
GUICtrlSetFont(-1, 12, 800, 0, "Calibri")
$Input1 = GUICtrlCreateInput("******.exe", 208, 32, 121, 26)
GUICtrlSetFont(-1, 11, 800, 0, "Calibri")
$Label1 = GUICtrlCreateLabel("Process Name : ", 71, 33, 129, 27)
GUICtrlSetFont(-1, 14, 800, 0, "Calibri")
$Label2 = GUICtrlCreateLabel("Created by Slaeghtor", 16, 160, 148, 23)
GUICtrlSetFont(-1, 12, 800, 0, "Calibri")
$Label3 = GUICtrlCreateLabel(" ", 233, 157, 152, 23)
GUICtrlSetFont(-1, 12, 800, 0, "Calibri")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $freeze
$process = GUICtrlRead($Input1)
_ProcessSuspend($process)
Case $Defreeze
_ProcessResume($process)
EndSwitch
WEnd
08/30/2012, 21:06
#2
elite*gold: 0
Join Date: May 2012
Posts: 13
Received Thanks: 2
Lol copy and paste
08/31/2012, 16:13
#3
elite*gold: 12
Join Date: Aug 2011
Posts: 455
Received Thanks: 418
Lolll??
Similar Threads
[Source] SRO BOT Source Code(AutoIt)
09/16/2011 - SRO Hacks, Bots, Cheats & Exploits - 34 Replies
I am finally going to release the source code to srobot.. it is a autoit bot.. ( befor you flame on auto it... check it out ) this is a very very advanced autoit script with read/write memory options. all this bot needs is to be updated with the new offsets and such. so please do not update this and just put your name on it.. as iv seen someone else in this forum has did.. not saying any names he knows who he is... after we spent a get bit of time on this script he wants to rip the source and...
[RELEASE] [OPEN SOURCE] CE 5.5 Pointer to AutoIt Source-Code
02/13/2011 - AutoIt - 6 Replies
Habe heute erst gemerkt, dass es hier eine AutoIt Sektion gibt xD also poste ich mal mein Programm mit rein.
Funktionsweise:
1. in CE Rechtsklick auf den Pointer und auf "Copy" klicken
2. in meinem Programm auf "Code generieren" klicken
3. In euer Scite gehen und einfügen
Hier ist der Source Code vom Programm:
12sky2 bot source code in autoit
06/10/2010 - 12Sky2 Hacks, Bots, Cheats & Exploits - 3 Replies
12Sky2botz
#include <ComboConstants.au3>
#include <EditConstants.au3>
#include <GUIListBox.au3>
#include <Memory.au3>
#RequireAdmin
#NoTrayIcon
$ShowLvlAdd = "0x"
All times are GMT +2. The time now is 02:54 .