Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > AutoIt
You last visited: Today at 18:05

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

Advertisement



Was ist daran Falsch?

Discussion on Was ist daran Falsch? within the AutoIt forum part of the Coders Den category.

Reply
 
Old   #1
 
IchHabeNichts's Avatar
 
elite*gold: 0
Join Date: Jul 2013
Posts: 271
Received Thanks: 52
Was ist daran Falsch?

So wollte S4 Hack machen blabla Xtrap crasht. Könntet ihr mir helfen?

Code:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>
#Region ### START Koda GUI section ### Form=
$S4LeagueHack = GUICreate("S4LeagueHack", 205, 114, 192, 125)
$InfSp = GUICtrlCreateCheckbox("InfSp", 8, 8, 97, 17)
$InfAmmo = GUICtrlCreateCheckbox("InfAmmo", 8, 32, 97, 17)
$CardHack = GUICtrlCreateCheckbox("CardHack", 8, 56, 97, 17)
$HP200 = GUICtrlCreateCheckbox("HP200", 8, 80, 97, 17)
$Start = GUICtrlCreateButton("Start", 112, 8, 75, 25)
$Exit = GUICtrlCreateButton("Exit", 112, 72, 75, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Exit
Exit
Case $CardHack
Case $HP200
Case $Start
_Hack()
EndSwitch
WEnd

Func _Hack()
   GuiSetState(@SW_HIDE)
   ToolTip("Start S4 League!",0,0)
   $Wait = ProcessWait("S4Client.exe")
   $PID = ProcessExists("S4Client.exe")
   Sleep(500)
   $OPEN = _MemoryOpen($PID)
   If GUICtrlRead($InfSp) = 1 Then
   _MemoryWrite(0x004835B2,$OPEN,"1","long")
   EndIf
   If GUICtrlRead($InfAmmo) = 1 Then
   _MemoryWrite(0x00769A71,$OPEN,"1","long")
   EndIf
   If GUICtrlRead($CardHack) = 1 Then
   _MemoryWrite(0x0128CDC4,"0","char[2]")
   EndIf
   If GUICtrlRead($HP200) = 1 Then
   _MemoryWrite(0x0051E144,"1","long")
   EndIf
   Exit
   EndFunc
IchHabeNichts is offline  
Old 07/19/2013, 14:47   #2

 
elite*gold: 64
Join Date: May 2011
Posts: 1,229
Received Thanks: 854
Wenn XTrap crasht, können nur deine Adressen die du mit MemoryWrite änderst falsch sein.
BladeTiger12 is offline  
Old 07/19/2013, 14:47   #3
 
IchHabeNichts's Avatar
 
elite*gold: 0
Join Date: Jul 2013
Posts: 271
Received Thanks: 52
Quote:
Originally Posted by BladeTiger12 View Post
Wenn XTrap crasht, können nur deine Adressen die du mit MemoryWrite änderst falsch sein.
Lol. Aber die Adressen sind von Dark Adress Searcher?
IchHabeNichts is offline  
Old 07/19/2013, 14:55   #4

 
elite*gold: 64
Join Date: May 2011
Posts: 1,229
Received Thanks: 854
Ja, vllt. hatte S4league ein Update, und die Adressen gehen nicht mehr o.o?
Sind das überhaupt Adressen die sich nie ändern?

#Edit:

Änder mal das:

Code:
If GUICtrlRead($CardHack) = 1 Then
   _MemoryWrite(0x0128CDC4,"0","char[2]")
   EndIf
   If GUICtrlRead($HP200) = 1 Then
   _MemoryWrite(0x0051E144,"1","long")
   EndIf
Zu das:
Code:
If GUICtrlRead($CardHack) = 1 Then
   _MemoryWrite(0x0128CDC4,$OPEN, "1","char[2]")
   EndIf
   If GUICtrlRead($HP200) = 1 Then
   _MemoryWrite(0x0051E144,$OPEN, "1","long")
   EndIf
BladeTiger12 is offline  
Old 07/19/2013, 17:12   #5
 
IchHabeNichts's Avatar
 
elite*gold: 0
Join Date: Jul 2013
Posts: 271
Received Thanks: 52
Quote:
Originally Posted by BladeTiger12 View Post
Ja, vllt. hatte S4league ein Update, und die Adressen gehen nicht mehr o.o?
Sind das überhaupt Adressen die sich nie ändern?

#Edit:

Änder mal das:

Code:
If GUICtrlRead($CardHack) = 1 Then
   _MemoryWrite(0x0128CDC4,"0","char[2]")
   EndIf
   If GUICtrlRead($HP200) = 1 Then
   _MemoryWrite(0x0051E144,"1","long")
   EndIf
Zu das:
Code:
If GUICtrlRead($CardHack) = 1 Then
   _MemoryWrite(0x0128CDC4,$OPEN, "1","char[2]")
   EndIf
   If GUICtrlRead($HP200) = 1 Then
   _MemoryWrite(0x0051E144,$OPEN, "1","long")
   EndIf
Funktioniert nicht. Kommt die Fehler Meldung das S4 Projekt blabla bla und S4 Client nicht mehr funktionieren.
IchHabeNichts is offline  
Old 07/19/2013, 17:32   #6
 
IchHabeNichts's Avatar
 
elite*gold: 0
Join Date: Jul 2013
Posts: 271
Received Thanks: 52
Quote:
Ja, vllt. hatte S4league ein Update, und die Adressen gehen nicht mehr o.o?
Sind das überhaupt Adressen die sich nie ändern?
So neu gesucht, sind die gleichen Adressen.
IchHabeNichts is offline  
Old 07/19/2013, 17:50   #7
 
elite*gold: 159
Join Date: Jun 2013
Posts: 1,776
Received Thanks: 2,004
PHP Code:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>

#Region ### START Koda GUI section ### Form=
GUICreate("S4LeagueHack"205114192125)
$InfSp GUICtrlCreateCheckbox("InfSp"889717)
$InfAmmo GUICtrlCreateCheckbox("InfAmmo"8329717)
$CardHack GUICtrlCreateCheckbox("CardHack"8569717)
$HP200 GUICtrlCreateCheckbox("HP200"8809717)
$Start GUICtrlCreateButton("Start"11287525)
$Exit GUICtrlCreateButton("Exit"112727525)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
    $nMsg 
GUIGetMsg()
    Switch 
$nMsg
        
Case $GUI_EVENT_CLOSE
            
Exit
        Case 
$Exit
            
Exit
        ;Case 
$CardHack
        
;Case $HP200
        
Case $Start
            _Hack
()
    EndSwitch
WEnd

Func _Hack
()
    
GuiSetState(@SW_HIDE)
    
ToolTip("Start S4 League!",0,0)
    
    While 
1
        
If ProcessExists("S4Client.exe") = 1 Then
            $PID 
ProcessExists("S4Client.exe")
            
ExitLoop
        
EndIf
        
Sleep(200)
    
WEnd
    Sleep
(500)
    
$OPEN _MemoryOpen($PID)
    If 
GUICtrlRead($InfSp) = 1 Then
        _MemoryWrite
(0x004835B2,$OPEN,"1","long")
    EndIf
    If 
GUICtrlRead($InfAmmo) = 1 Then
        _MemoryWrite
(0x00769A71,$OPEN,"1","long")
    EndIf
    If 
GUICtrlRead($CardHack) = 1 Then
        _MemoryWrite
(0x0128CDC4,"0","char[2]")
    EndIf
    If 
GUICtrlRead($HP200) = 1 Then
        _MemoryWrite
(0x0051E144,"1","long")
    EndIf
    Exit
EndFunc 
Brendan Jordan is offline  
Old 07/19/2013, 17:55   #8
 
IchHabeNichts's Avatar
 
elite*gold: 0
Join Date: Jul 2013
Posts: 271
Received Thanks: 52
Quote:
Originally Posted by M3BF05B View Post
PHP Code:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>

#Region ### START Koda GUI section ### Form=
GUICreate("S4LeagueHack"205114192125)
$InfSp GUICtrlCreateCheckbox("InfSp"889717)
$InfAmmo GUICtrlCreateCheckbox("InfAmmo"8329717)
$CardHack GUICtrlCreateCheckbox("CardHack"8569717)
$HP200 GUICtrlCreateCheckbox("HP200"8809717)
$Start GUICtrlCreateButton("Start"11287525)
$Exit GUICtrlCreateButton("Exit"112727525)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
    $nMsg 
GUIGetMsg()
    Switch 
$nMsg
        
Case $GUI_EVENT_CLOSE
            
Exit
        Case 
$Exit
            
Exit
        ;Case 
$CardHack
        
;Case $HP200
        
Case $Start
            _Hack
()
    EndSwitch
WEnd

Func _Hack
()
    
GuiSetState(@SW_HIDE)
    
ToolTip("Start S4 League!",0,0)
    
    While 
1
        
If ProcessExists("S4Client.exe") = 1 Then
            $PID 
ProcessExists("S4Client.exe")
            
ExitLoop
        
EndIf
        
Sleep(200)
    
WEnd
    Sleep
(500)
    
$OPEN _MemoryOpen($PID)
    If 
GUICtrlRead($InfSp) = 1 Then
        _MemoryWrite
(0x004835B2,$OPEN,"1","long")
    EndIf
    If 
GUICtrlRead($InfAmmo) = 1 Then
        _MemoryWrite
(0x00769A71,$OPEN,"1","long")
    EndIf
    If 
GUICtrlRead($CardHack) = 1 Then
        _MemoryWrite
(0x0128CDC4,"0","char[2]")
    EndIf
    If 
GUICtrlRead($HP200) = 1 Then
        _MemoryWrite
(0x0051E144,"1","long")
    EndIf
    Exit
EndFunc 
1. Wann schließt sich der Hack?
2. Wird dadurch erkannt.
IchHabeNichts is offline  
Old 07/19/2013, 18:11   #9
 
elite*gold: 159
Join Date: Jun 2013
Posts: 1,776
Received Thanks: 2,004
Quote:
Originally Posted by IchHabeNichts View Post
1. Wann schließt sich der Hack?
2. Wird dadurch erkannt.
1. Wenn die Funktion ausgeführt wurde, so wie du es wohl beabsichtigt hast
2. Ja, es gibt sowas wie Anticheat
Brendan Jordan is offline  
Thanks
2 Users
Old 07/19/2013, 18:45   #10
 
IchHabeNichts's Avatar
 
elite*gold: 0
Join Date: Jul 2013
Posts: 271
Received Thanks: 52
Quote:
Originally Posted by M3BF05B View Post
1. Wenn die Funktion ausgeführt wurde, so wie du es wohl beabsichtigt hast
2. Ja, es gibt sowas wie Anticheat
Ja aber es wird erkannt. Deswegen funktioniert das nicht, selbst mit einem Bypass. Willst du mich rollen? Es soll so gehen: Warte auf S4
so danach wenn anfängt XTRap zu starten soll der Hack sich schließen, und es soll funktionieren.
IchHabeNichts is offline  
Old 07/19/2013, 18:50   #11
 
elite*gold: 159
Join Date: Jun 2013
Posts: 1,776
Received Thanks: 2,004
Also willst du, dass wir alles für dich machen? Pls
Brendan Jordan is offline  
Thanks
2 Users
Old 07/19/2013, 19:58   #12
 
IchHabeNichts's Avatar
 
elite*gold: 0
Join Date: Jul 2013
Posts: 271
Received Thanks: 52
Quote:
Originally Posted by M3BF05B View Post
Also willst du, dass wir alles für dich machen? Pls
Lol, ne ich meinte was war an den Code falsch?
IchHabeNichts is offline  
Old 07/19/2013, 20:05   #13
 
elite*gold: 159
Join Date: Jun 2013
Posts: 1,776
Received Thanks: 2,004
Vergleich doch mal beide sachen
Brendan Jordan is offline  
Thanks
1 User
Old 07/25/2013, 17:18   #14
 
elite*gold: 0
Join Date: Apr 2013
Posts: 980
Received Thanks: 734
Code:
Func _Hack()
   $OPEN = _MemoryOpen($PID)
   If GUICtrlRead($InfSp) = 1 Then _MemoryWrite(0x004835B2,$OPEN,"1","long")
   EndIf
Wrong Value..
Code:
   If GUICtrlRead($CardHack) = 1 Then
   _MemoryWrite(0x0128CDC4,"0","char[2]")
   EndIf
   If GUICtrlRead($HP200) = 1 Then
   _MemoryWrite(0x0051E144,"1","long")
   EndIf
   Exit
   EndFunc
Where is here " _MemoryOpen("S4Client.exe")"
Make more Sleeptime and other Hacked Values ;o

Here a little source code what work :
Code:
#INCLUDE
#requireadmin
Processwait ("S4Client.exe")
$P = ProcessExistens ("S4Client.exe")
Sleep(900)
$o = _MemoryOpen($P)
_MemoryWrite(0xAdresse,$o,"Value","Type")
_MemoryClose($P)
Exit
Virus.bat is offline  
Reply


Similar Threads Similar Threads
Was ist daran Falsch ?
01/12/2013 - Metin2 Private Server - 6 Replies
Ich klicke auf die 2 Buttons aber nichts öffnet sich quest Cube begin state start begin when 20091.chat."Ich möchte etwas craften" begin say("Hallo") say("Zieh einfach die benötigten Crafting Gegenstände in das Fenster") say("Hier die Formeln") say("5 Craft Sand's = 1 Rohdiamant")
Was ist daran Falsch?
01/09/2011 - Metin2 Private Server - 7 Replies
Hier habe ich mal ein Starter Set gemacht das irgend wie nicht geht was ist daran Falsch?
Was ist daran falsch?
10/12/2010 - Metin2 Private Server - 4 Replies
Was ist an meiner regen.txt oder group.txt falsch (Da kommt immer core fehler -.-) Regen.txt : g 196 82 10 10 0 0 10s 100 1 9527g 197 65 10 10 0 0 10s 100 1 9527 g 178 65 10 10 0 0 10s 100 1 9527 g 165 69 10 10 0 0 10s 100 1 9527g 171 88 10 10 0 0 10s 100 1 9527 g 188 109 10 10 0 0 10s 100 1 9527 g 187 127...
Was ist daran falsch?
07/13/2010 - Metin2 Private Server - 0 Replies
Hallo Leute, habe eine eigene Quest geschrieben. Sie sieht wie folgt aus: quest drogendealerin begin state run begin when login with pc.level<=1 begin set_state(information) end end
Was ist falsch daran?
06/03/2010 - Metin2 Private Server - 8 Replies
Hallo, wollte gestern den Dropp der Eishexe einstellen, habe mir dann ein HowTo angschaut wo es recht gut drinne beschrieben ist. Jedoch zeigt mir mein Server bei meiner mob_drop_item.txt immer Fehler an bzw. folgendes: 'Core dumped' (Abort trap)' wenn ich rebootet habe, ungefähr nach dem 6. mal "Connection timed out" :-( Jedenfall wollte ich mal fragen was daran falsch ist, hier dann der ausschnitt: Group ÁøÃµÀÇÀå¼ö



All times are GMT +1. The time now is 18:06.


Powered by vBulletin®
Copyright ©2000 - 2025, 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 ©2025 elitepvpers All Rights Reserved.