#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <NomadMemory.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 331, 225, 497, 195)
$Label1 = GUICtrlCreateLabel("sl1q^", 144, 8, 53, 41)
GUICtrlSetFont(-1, 22, 800, 0, "Candara")
GUICtrlSetColor(-1, 0xFFFF00)
$Label2 = GUICtrlCreateLabel("sv_cheats Bypass", 8, 104, 106, 17)
GUICtrlSetFont(-1, 8, 800, 0, "MS Sans Serif")
GUICtrlSetColor(-1, 0xFF0000)
$Label3 = GUICtrlCreateLabel("Wallhack", 8, 136, 57, 17)
GUICtrlSetFont(-1, 8, 800, 0, "MS Sans Serif")
GUICtrlSetColor(-1, 0x00FFFF)
$Label4 = GUICtrlCreateLabel("Playerbox", 8, 168, 59, 17)
GUICtrlSetFont(-1, 8, 800, 0, "MS Sans Serif")
GUICtrlSetColor(-1, 0xFF00FF)
$Button1 = GUICtrlCreateButton("Aktiv", 128, 96, 73, 25, $WS_GROUP)
$Button2 = GUICtrlCreateButton("Inaktiv", 216, 96, 73, 25, $WS_GROUP)
$Button3 = GUICtrlCreateButton("Aktiv", 128, 128, 73, 25, $WS_GROUP)
$Button4 = GUICtrlCreateButton("Inaktiv", 216, 128, 73, 25, $WS_GROUP)
$Button5 = GUICtrlCreateButton("Aktiv", 128, 160, 73, 25, $WS_GROUP)
$Button6 = GUICtrlCreateButton("Inaktiv", 216, 160, 73, 25, $WS_GROUP)
$Graphic1 = GUICtrlCreateGraphic(296, 96, 25, 25)
GUICTRLSETBKCOLOR(-1,16711680)
$Graphic2 = GUICtrlCreateGraphic(296, 128, 25, 25)
GUICTRLSETBKCOLOR(-1,16711680)
$Graphic3 = GUICtrlCreateGraphic(296, 160, 25, 25)
GUICTRLSETBKCOLOR(-1,16711680)
$Label5 = GUICtrlCreateLabel("First CSS Hack v 0.1", 104, 40, 131, 23)
GUICtrlSetFont(-1, 12, 800, 0, "Candara")
GUICtrlSetColor(-1, 0x000000)
$Label6 = GUICtrlCreateLabel("Counter Strike Source läuft nicht", 32, 64, 269, 27)
GUICtrlSetFont(-1, 14, 800, 0, "Candara")
GUICtrlSetColor(-1, 0x000000)
$Label7 = GUICtrlCreateLabel("www.***********", 104, 192, 128, 27)
GUICtrlSetFont(-1, 14, 800, 0, "Candara")
GUICtrlSetColor(-1, 0x800080)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
while ProcessExists("hl2.exe") = False
sleep ( 700 )
WEnd
GUICtrlSetColor($Label6,0x00FF00)
GUICtrlSetData($Label6," Counterstrike Source läuft!")
$open = _MemoryOpen(ProcessExists("hl2.exe"))
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1;sv_cheats ON
_MemoryWrite (0x0F3E4768,$open,1,"dword")
GUICTRLSETBKCOLOR($Graphic1,65280)
Case $Button2
_MemoryWrite (0x0F3E4768,$open,0,"dword")
GUICTRLSETBKCOLOR($Graphic1,16711680)
Case $Button3;Wallhack ON
_MemoryWrite (0x15CFC388,$open,2,"dword")
GUICTRLSETBKCOLOR($Graphic2,65280)
Case $Button4
_MemoryWrite (0x15CFC388,$open,1,"dword")
GUICTRLSETBKCOLOR($Graphic2,16711680)
Case $Button5;PlayerBox ON
_MemoryWrite (0x15CFD170,$open,1,"dword")
GUICTRLSETBKCOLOR($Graphic3,65280)
Case $Button6
_MemoryWrite (0x15CFD170,$open,0,"dword")
GUICTRLSETBKCOLOR($Graphic3,16711680)
EndSwitch
WEnd
|