Hi, das habe ich vor ein paar Tagen als Tutorial geschrieben und dachte poste mal hier rein. Das ist ein CSS Hack. Evenuell müsst ihr Pointer anpassen. Bei mir hat sich das einmal verändert. Statt Array byte hab ich hier 4byte genenommen. Weil memory include das nicht untestützt(glaub ich).
Hi, I've wrote this few days - one week ago as Tutorial and would show you it's possible for CSS too :D. May you have to search yourself for the pointer. One time I got changes in same day. This is not with array byte it's in
4byte. Because the memory include does not support it (i think, but i tried it).
You can remove my name ofcourse
Hi, I've wrote this few days - one week ago as Tutorial and would show you it's possible for CSS too :D. May you have to search yourself for the pointer. One time I got changes in same day. This is not with array byte it's in
4byte. Because the memory include does not support it (i think, but i tried it).
PHP Code:
#RequireAdmin
#include <GUIConstants.au3>
#include <WindowsConstants.au3>
#include <GUIConstantsEx.au3>
#include <Misc.au3>
#include <String.au3>
#include <Array.au3>
#include <NomadMemory.au3>
SetPrivilege("SeDebugPrivilege", 1)
Opt("TrayMenuMode",1)
$Form1 = GUICreate("CSS sv_cheats bypass by NixIs alias MaZy", 130, 108, 203, 124)
;////$Label1 = GUICtrlCreateLabel("", 25, 33, 100, 28)
GUISetBkColor(0x9DB9EB)
$cb1 = GUICtrlCreateCheckbox("sv_cheat bypass", 10, 10, 100, 18)
$cb2 = GUICtrlCreateCheckbox("r_drawothermodels", 10, 50, 100, 18)
GUICtrlSetState(-1, $GUI_DISABLE)
$cb3 = GUICtrlCreateCheckbox("mat_wireframe", 10, 70, 100, 18)
GUICtrlSetState(-1, $GUI_DISABLE)
GUISetState(@SW_SHOW)
TraySetClick("9")
TrayCreateItem("Made by NixIs aka MaZy")
TrayCreateItem("")
$tbeenden = TrayCreateItem("Beenden")
Opt("TrayMenuMode",1)
;////Variable setzen für adresse $cb1 = checbox _ma = memory adress
Global $cb1_ma = 0x2051F724 ;//sv_cheats
Global $cb2_ma = 0x243AEC3C ;//r_drawothermodels
Global $cb3_ma = 0x204F035C ;//mat_wireframe
;//Memory Editing TEIL als Funktion
func setmemory($adresse, $value)
$window = "hl2.exe"
$Open = _memoryopen(ProcessExists($window))
$write = _MemoryWrite($Adresse, $Open, $value, 'dword')
EndFunc
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Msgbox(0,"Made by NixIs aka MaZy", " CSS sv_cheats bypass" & @CRLF & " Made by NixIs aka MaZy")
Exit
Case $cb1 ;//Ist sv_cheats aktiv?
If BitAND(GUICtrlRead($cb1), $GUI_CHECKED) Then
setmemory($cb1_ma, 1)
GUICtrlSetState($cb2, $GUI_ENABLE)
GUICtrlSetState($cb3, $GUI_ENABLE)
Else ;//wenn nicht aktiv werden alle hacken rausgenommen und alles auf standard gesetzt.
setmemory($cb1_ma, 0)
setmemory($cb2_ma, 1)
setmemory($cb3_ma, 0)
GUICtrlSetState($cb2, $GUI_UNCHECKED)
GUICtrlSetState($cb3, $GUI_UNCHECKED)
GUICtrlSetState($cb2, $GUI_DISABLE)
GUICtrlSetState($cb3, $GUI_DISABLE)
EndIf
Case $cb2
If BitAND(GUICtrlRead($cb2), $GUI_CHECKED) Then
setmemory($cb2_ma, 2)
Else
setmemory($cb2_ma, 1)
EndIf
Case $cb3
If BitAND(GUICtrlRead($cb3), $GUI_CHECKED) Then
setmemory($cb3_ma, 2)
Else
setmemory($cb3_ma, 0)
EndIf
EndSwitch
$tmsg = TrayGetMsg() ;// ist der befehl für das traymenü
Switch $tmsg
Case $tbeenden
Msgbox(0,"Made by NixIs aka MaZy", " CSS sv_cheats bypass" & @CRLF & " Made by NixIs aka MaZy")
Exit
EndSwitch
WEnd