Register for your free account! | Forgot your password?

Go Back   elitepvpers > Shooter > S4 League > S4 League Hacks, Bots, Cheats & Exploits
You last visited: Today at 15:42

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Realese] Tutorial über AutoIt und Hacks erstellen !

Discussion on [Realese] Tutorial über AutoIt und Hacks erstellen ! within the S4 League Hacks, Bots, Cheats & Exploits forum part of the S4 League category.

Closed Thread
 
Old   #1
 
elite*gold: 0
Join Date: Jan 2011
Posts: 637
Received Thanks: 382
Thumbs up [Realese] Tutorial über AutoIt und Hacks erstellen !

Hi,
Ich möchte heute ein kleines Codetutorial zeigen.
Ich habe nähmlich gehört dass manche Blödmänner sagen , es sei leicht hacks zu pogrammieren .
Wer immernoch probleme hat , soll den HackCreator von JakeFrost77 benutzten !

PHP Code:
#include <NomadMemory.au3>
#include <GUIConstantsEx.au3>
#Include <Constants.au3>

Opt('TrayMenuMode'1+2); in der Taskleiste wird ein AutoIt symbol angezeigtUnd da gibt es folgende Befehle :
$startitem TrayCreateItem('Start Hack')
$exititem    TrayCreateItem('Exit')
TraySetState()

$Form1 GUICreate('',184,164) ; Hier den Namen des Hacks eingeben !




$CheckBox1 GUICtrlCreateCheckbox('',21,38) ;Name der 1 Checkbox
GUICtrlSetColor   
($CheckBox1,  0x000000)
GUICtrlSetBkColor(-1$GUI_BKCOLOR_TRANSPARENT)
Global 
$Value1 '' ;Value eingeben und bedenken das der valuetype float ist.
$CheckBox2 GUICtrlCreateCheckbox('',21,61) ;Name der 2.Checkbox
GUICtrlSetColor   
($CheckBox2,  0x000000)
GUICtrlSetBkColor(-1$GUI_BKCOLOR_TRANSPARENT)
Global 
$Value2 '' ;Value eingeben und bedenken das der valuetype String ist.
Global 
$Value3 ''
Global $Value4 ''
Global $Value5 ''
Global $Value6 ''
Global $Value7 ''

$Button1 GUICtrlCreateButton('Start',12,118,75,23) ; Startbutton
$Button2 
GUICtrlCreateButton('Close',95,118,75,23) ; Closebutton

GUISetState
(@SW_SHOW)
#EndRegion ### GUI section ###


While 1
    $nMsg 
GUIGetMsg()
    Switch 
$nMsg
        
Case $GUI_EVENT_CLOSE
            
Exit
        Case 
$Button1
            _Start
()
        Case 
$Button2
            
Exit
    EndSwitch
    
$tMsg TrayGetMsg()
    Switch 
$tMsg
      
Case $exititem
          
Exit

      Case 
$startitem
          _Start
()


EndSwitch
WEnd


Func _Start
()

ToolTip('Waiting for S4Client.exe...',0,0) ; Tooltip

ProcessWait
('S4Client.exe') ; Process
$PID 
ProcessExists('S4Client.exe') ; Process
ToolTip
('Hack the Game !!!',0,0) ; Tooltip
Sleep
(500)
$open _MemoryOpen($PID)

If 
GUICtrlRead($CheckBox1) = 1 Then


EndIf
If 
GUICtrlRead($CheckBox2) = 1 Then


EndIf
ToolTip('Done',0,0) ; Tooltip
ToolTip
('',0,0)
_MemoryClose($open)

Exit

EndFunc 
xSnake is offline  
Thanks
1 User
Old 01/27/2011, 14:58   #2
 
-AlbTr4um's Avatar
 
elite*gold: 1
Join Date: Jul 2010
Posts: 458
Received Thanks: 309
Ich finde ja das hat eher weniger mit einem TuT zu tuen.
-AlbTr4um is offline  
Old 01/27/2011, 15:10   #3
 
rapier3's Avatar
 
elite*gold: 0
Join Date: May 2010
Posts: 24
Received Thanks: 4
Das hat wenig mit einem tut zu tun du hast einfach einen autoit code reingeschrieben. Jemand der Anfänger ist hätte bei diesem tut keine chance.
rapier3 is offline  
Old 01/27/2011, 16:14   #4

 
FichteFoll's Avatar
 
elite*gold: 237
Join Date: Sep 2008
Posts: 4,476
Received Thanks: 4,587
Code:
#include <NomadMemory.au3> [COLOR="Red"]Fehlt einem Anfänger[/COLOR]
#include <GUIConstantsEx.au3>
#Include <Constants.au3>

Opt('[B]Tray[/B]MenuMode', 1+2); in der [COLOR="Red"]Task[/COLOR]leiste wird ein AutoIt symbol angezeigt. Und da gibt es folgende Befehle : [COLOR="Red"]Und was machen die nun? ...[/COLOR]
$startitem = TrayCreateItem('Start Hack')
$exititem	= TrayCreateItem('Exit')
TraySetState()

$Form1 = GUICreate('',184,164) ; Hier den Namen des Hacks eingeben ! [COLOR="Red"]Den Fenstertitel[/COLOR]




$CheckBox1 = GUICtrlCreateCheckbox('',21,38) ;Name der 1 . Checkbox [COLOR="Red"]Beschriftung ;_;[/COLOR]
GUICtrlSetColor   ($CheckBox1,  0x000000)
GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT)
Global $Value1 = '' ;Value eingeben und bedenken das der valuetype float ist. [COLOR="Red"]Warum das? Das ganze Grundgerüst ist schrott[/COLOR]
$CheckBox2 = GUICtrlCreateCheckbox('',21,61) ;Name der 2.Checkbox
GUICtrlSetColor   ($CheckBox2,  0x000000)
GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT)
Global $Value2 = '' ;Value eingeben und bedenken das der valuetype String ist. [COLOR="Red"]s.o.[/COLOR]
Global $Value3 = ''
Global $Value4 = ''
Global $Value5 = ''
Global $Value6 = ''
Global $Value7 = ''

$Button1 = GUICtrlCreateButton('Start',12,118,75,23) ; Startbutton
$Button2 = GUICtrlCreateButton('Close',95,118,75,23) ; Closebutton

GUISetState(@SW_SHOW)
#EndRegion ### GUI section ###


While 1 [COLOR="Red"]20 Zeilen Kauderwelsch, nichts erklärt[/COLOR]
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit
        Case $Button1
            _Start()
        Case $Button2
            Exit
    EndSwitch
    $tMsg = TrayGetMsg()
    Switch $tMsg
      Case $exititem
          Exit

      Case $startitem
          _Start()


EndSwitch
WEnd


Func _Start()

ToolTip('Waiting for S4Client.exe...',0,0) ; Tooltip

ProcessWait('S4Client.exe') ; Process [COLOR="Red"]Geilster Kommentar[/COLOR]
$PID = ProcessExists('S4Client.exe') ; Process[COLOR="Red"]²[/COLOR]
ToolTip('Hack the Game !!!',0,0) ; Tooltip
Sleep(500)
$open = _MemoryOpen($PID)

If GUICtrlRead($CheckBox1) = 1 Then
[COLOR="Red"]Und jetzt?[/COLOR]

EndIf
If GUICtrlRead($CheckBox2) = 1 Then


EndIf
ToolTip('Done',0,0) ; Tooltip [COLOR="Red"]Man kann dieses Tooltip nicht mal sehen, weil es kein Sleep gibt[/COLOR]
ToolTip('',0,0)
_MemoryClose($open)

Exit

EndFunc
Nahezu nichts erklärt, dieses "Tutorial" ist vollkommen unbrauchbar.
Der Programmierstil ist schlecht, das Grundgerüst mit den Variablen unausgereift, das eigentlich "Hacken" fehlt im Source komplett - von "Adressen" ist keine Rede.

Wer keine Ahnung hat, sollte keine Trainer erstellen.
Wer nicht kochen kann, sollte schließlich auch kein Koch werden.


#closed
FichteFoll is offline  
Thanks
12 Users
Closed Thread




All times are GMT +2. The time now is 15:42.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.