|
You last visited: Today at 19:42
Advertisement
Hilfe S4 Hack Script
Discussion on Hilfe S4 Hack Script within the S4 League forum part of the Shooter category.
10/31/2013, 22:46
|
#1
|
elite*gold: 0
Join Date: Aug 2012
Posts: 69
Received Thanks: 20
|
Hilfe S4 Hack Script
Hallo ich habe mir mal ein Hack gemacht aber Xtrap kommt immer.
Ich habe es mit ein Paar Bypasses versucht aber es will nicht funktionieren.
Hier einmal das Script. Kann mir jemand sagen was der fehler ist?
PHP Code:
#RequireAdmin #Region ;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_Outfile=Mein_Hack.exe #AutoIt3Wrapper_UseUpx=n #AutoIt3Wrapper_UseX64=n #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI **** #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <NomadMemory.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Hack", 393, 109, 192, 124) $wallshoot = GUICtrlCreateRadio("Wallshoot", 32, 48, 113, 17) $hitrange = GUICtrlCreateRadio("Hit Range", 32, 24, 113, 17) $start = GUICtrlCreateButton("Start", 144, 24, 89, 41) $stopp = GUICtrlCreateButton("Stopp", 240, 24, 89, 41) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ###
While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $stopp Exit Case $start start()
EndSwitch WEnd
Func Start() ToolTip("Warte auf S4Client.exe...", 0, 0) ProcessWait("S4Client.exe") $pid = ProcessExists("S4Client.exe") ToolTip("Hack gestartet!", 0, 0) Sleep(1000) $open = _memoryopen($pid) If GUICtrlRead($hitrange) = 1 Then _memorywrite(0x0120D6A8, $open, "0", "float") EndIf If GUICtrlRead($wallshoot) = 1 Then _memorywrite(0x0120D6A8, $open, "1", "float") EndIf
_memoryclose($pid)
EndFunc
|
|
|
10/31/2013, 22:54
|
#2
|
elite*gold: 0
Join Date: Aug 2013
Posts: 321
Received Thanks: 258
|
Quote:
Originally Posted by MaSteX3laSteX
Hallo ich habe mir mal ein Hack gemacht aber Xtrap kommt immer.
Ich habe es mit ein Paar Bypasses versucht aber es will nicht funktionieren.
Hier einmal das Script. Kann mir jemand sagen was der fehler ist?
PHP Code:
#RequireAdmin #Region ;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_Outfile=Mein_Hack.exe #AutoIt3Wrapper_UseUpx=n #AutoIt3Wrapper_UseX64=n #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI **** #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <NomadMemory.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Hack", 393, 109, 192, 124) $wallshoot = GUICtrlCreateRadio("Wallshoot", 32, 48, 113, 17) $hitrange = GUICtrlCreateRadio("Hit Range", 32, 24, 113, 17) $start = GUICtrlCreateButton("Start", 144, 24, 89, 41) $stopp = GUICtrlCreateButton("Stopp", 240, 24, 89, 41) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ###
While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $stopp Exit Case $start start()
EndSwitch WEnd
Func Start() ToolTip("Warte auf S4Client.exe...", 0, 0) ProcessWait("S4Client.exe") $pid = ProcessExists("S4Client.exe") ToolTip("Hack gestartet!", 0, 0) Sleep(1000) $open = _memoryopen($pid) If GUICtrlRead($hitrange) = 1 Then _memorywrite(0x0120D6A8, $open, "0", "float") EndIf If GUICtrlRead($wallshoot) = 1 Then _memorywrite(0x0120D6A8, $open, "1", "float") EndIf
_memoryclose($pid)
EndFunc
|
Wrong Section
..but here test it now
Code:
#RequireAdmin
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Outfile=Mein_Hack.exe
#AutoIt3Wrapper_UseUpx=n
#AutoIt3Wrapper_UseX64=n
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Hack", 393, 109, 192, 124)
$wallshoot = GUICtrlCreateRadio("Wallshoot", 32, 48, 113, 17)
$hitrange = GUICtrlCreateRadio("Hit Range", 32, 24, 113, 17)
$start = GUICtrlCreateButton("Start", 144, 24, 89, 41)
$stopp = GUICtrlCreateButton("Stopp", 240, 24, 89, 41)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $stopp
Exit
Case $start
start()
EndSwitch
WEnd
Func Start()
ToolTip("Warte auf S4Client.exe...", 0, 0)
ProcessWait("S4Client.exe")
$pid = ProcessExists("S4Client.exe")
ToolTip("Hack gestartet!", 0, 0)
Sleep(900)
$open = _memoryopen($pid)
If GUICtrlRead($hitrange) = 1 Then
_memorywrite(0x0120D6A8, $open, "0", "float")
EndIf
If GUICtrlRead($wallshoot) = 1 Then
_memorywrite(0x0120D6A8, $open, "1", "float")
EndIf
_memoryclose($open)
exit
|
|
|
10/31/2013, 23:10
|
#3
|
elite*gold: 0
Join Date: Aug 2012
Posts: 69
Received Thanks: 20
|
What do you have Change?
Edit: Xtrap :/
|
|
|
10/31/2013, 23:19
|
#4
|
elite*gold: 0
Join Date: Aug 2013
Posts: 321
Received Thanks: 258
|
Quote:
Originally Posted by MaSteX3laSteX
What do you have Change?
Edit: Xtrap :/
|
you use xtrap bypass from slicktor?
|
|
|
10/31/2013, 23:45
|
#5
|
elite*gold: 0
Join Date: Aug 2012
Posts: 69
Received Thanks: 20
|
Yes i did
|
|
|
10/31/2013, 23:47
|
#6
|
elite*gold: 0
Join Date: Aug 2013
Posts: 321
Received Thanks: 258
|
Quote:
Originally Posted by MaSteX3laSteX
Yes i did
|
the new? send me the xtrap screen pls
|
|
|
10/31/2013, 23:57
|
#7
|
elite*gold: 0
Join Date: Aug 2012
Posts: 69
Received Thanks: 20
|
|
|
|
11/01/2013, 00:05
|
#8
|
elite*gold: 0
Join Date: Aug 2013
Posts: 321
Received Thanks: 258
|
*** der bypass geht anscheind nicht bei dir. 32 Bit?:3
|
|
|
11/01/2013, 00:16
|
#9
|
elite*gold: 0
Join Date: Aug 2012
Posts: 69
Received Thanks: 20
|
64bit
|
|
|
11/01/2013, 09:47
|
#10
|
elite*gold: 0
Join Date: Aug 2013
Posts: 321
Received Thanks: 258
|
Quote:
Originally Posted by MaSteX3laSteX
64bit
|
change den sleeptimer mal kleiner
|
|
|
11/01/2013, 16:16
|
#11
|
elite*gold: 0
Join Date: Oct 2013
Posts: 1,372
Received Thanks: 1,362
|
Hast du die .au3 Datei mal mit Resource Hacker compiled?
Hier der Thread -->
Du darfst nicht einfach F5 drücken und ihn dann so benutzen.
|
|
|
11/01/2013, 17:39
|
#12
|
elite*gold: 0
Join Date: Aug 2013
Posts: 879
Received Thanks: 1,203
|
Quote:
Originally Posted by Sh1Rum
*** der bypass geht anscheind nicht bei dir. 32 Bit?:3
|
Der bypass umgeht einfach nicht die Memory-Change Detection
|
|
|
11/01/2013, 20:30
|
#13
|
elite*gold: 0
Join Date: Aug 2013
Posts: 321
Received Thanks: 258
|
Quote:
Originally Posted by Ragulab
Der bypass umgeht einfach nicht die Memory-Change Detection
|
ja aber diese adress braucht kein bypass..:>
|
|
|
11/03/2013, 00:25
|
#14
|
elite*gold: 0
Join Date: Oct 2013
Posts: 687
Received Thanks: 286
|
U need a bypass
|
|
|
11/03/2013, 03:08
|
#15
|
elite*gold: 0
Join Date: Aug 2012
Posts: 69
Received Thanks: 20
|
Quote:
Originally Posted by Triice
U need a bypass
|
you are a brain ^^
|
|
|
Similar Threads
|
[HILFE] Brauche Hilfe bei PHP Script für FACEBOOK APP
01/16/2012 - General Coding - 0 Replies
Gehört in eine andere Sektion -
|
Suche hilfe für Gm-hack script
07/02/2009 - Dekaron - 2 Replies
Hallo, ich brauche hilfe bei einem CE-Script an dem ich grade schreibe, es soll im Charakterbildschirm erkennen welchen Charakter ich ausgewählt habe und direkt die ersten 4 Buchstaben des Namens hernehmen und in "00A420E4" einfüllen.
Das Problem ist das das Script Dekaron zum absturz bringt.
Hier erstmal das Script:
//Startscript
alloc(newmem2,1024)
label(returnhere1)
|
All times are GMT +1. The time now is 19:42.
|
|