S4League hack erstellen

06/17/2012 19:54 Ruffу#1
hallo E*pvp ich hab kp ob es hier rein gehört aber wollte mal fragen was ich falsch mache den bin noch amateur
PHP Code:
#include <GUIConstants.au3>
#include<NomadMemory.au3>
#RequireAdmin
#Region ### START Koda GUI section ### Form=
$Form1 GUICreate("hack"24280232166)
$Button1 GUICtrlCreateButton("Start"881612957)
$Checkbox1 GUICtrlCreateCheckbox("200hp"8167325)
$Slider1 GUICtrlCreateSlider(1123215045)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
    $nMsg 
GUIGetMsg() 
    Switch 
$nMsg
        
Case $GUI_EVENT_CLOSE
            
Exit
        Case 
$Button1
            _hack
()
    EndSwitch
WEnd
Func  _hack
()
    
ToolTip("Warte Auf S4Client.exe",0,0)
$PID ProcessExists ("S4Client.exe")
ProcessWait($PID)
ToolTip("Wait...",0,0)
$OPEN _MemoryOpen($PID)
If 
GUICtrlRead ($Checkbox1) = 1 Then
_MemoryWrite 
(100,$OPEN,"400"byte[4]) 
ElseIf
EndFunc 
06/17/2012 20:01 !llu#2
[Only registered and activated users can see links. Click Here To Register...]

06/17/2012 20:03 Der-Eddy#3
[Only registered and activated users can see links. Click Here To Register...]/moved

Code:
$PID ProcessExists ("S4Client.exe")
Da fehlt ein Gleichzeichen
06/17/2012 20:06 irrenhaus#4
Code:
_MemoryWrite($Address,$Handle,$Value,$Type);
You're writting the Value 400 ( DWORD/Float whatever ) into the Address 100.
I think you tried to hack your HP but it wont work this way.
the type is also not byte. Please read some AutoIt Tutorials from the Section which
Azrail linked here.
06/17/2012 20:52 Ruffу#5
kann mir es dan richtig schriben pls wegen ich check die Tut'S net so
06/17/2012 21:57 Lawliet#6
Wir wissen nicht, was du mit dem "Hack" erreichen willst?
Außerdem sind wir hier da um zu helfen, nicht fertiges zu liefern.
06/17/2012 23:15 Der-Eddy#7
[Only registered and activated users can see links. Click Here To Register...]
da steht wie man an die Adressen kommt
06/17/2012 23:42 butter123#8
Deutsche Grammatik
da steht wie man vernünftig deutsch schreibt...
06/22/2012 18:41 Cashblood#9
Quote:
Originally Posted by Der-Eddy View Post
[Only registered and activated users can see links. Click Here To Register...]
da steht wie man an die Adressen kommt
Geht auch viel schneller,
Einfach einen Downloaden und decompilen, da es über 5 leeches grad releaset gibt und keiner schlau genug ist themida zzu benutzen.. Die meisten machen alles richtig, und dann heulen sie rum odermachen ihre handshow zeichen wegen Values..
06/23/2012 09:58 Hybrid~#10
It's gonna be this way:
Code:
#include <GUIConstants.au3> 
#include <NomadMemory.au3> 
#RequireAdmin 
#Region ### START Koda GUI section ### Form= 
$Form1 = GUICreate("Hack", 242, 80, 232, 166) 
$Button1 = GUICtrlCreateButton("Start", 88, 16, 129, 57) 
$Checkbox1 = GUICtrlCreateCheckbox("200hp", 8, 16, 73, 25) 
$Slider1 = GUICtrlCreateSlider(112, 32, 150, 45) 
GUISetState(@SW_SHOW) 
#EndRegion ### END Koda GUI section ### 

While 1 
    $nMsg = GUIGetMsg()  
    Switch $nMsg 
        Case $GUI_EVENT_CLOSE 
            Exit 
        Case $Button1 
            _Hack() 
    EndSwitch 
WEnd 
Func  _Hack() 
    ToolTip("Warte Auf S4Client.exe",0,0) 
$PID= ProcessWait ("S4Client.exe") 
ToolTip("Wait...",0,0) 
$OPEN = _MemoryOpen($PID)  
If GUICTRLREAD($CheckBox1)=1 Then
_MemoryWrite(#####,$OPEN,"#######","long")
EndIf
EndFunc
This is my base, Hope I helped ya