hey guys i am making script and all fine
and i compiled it but I cant use the icons
they dont do their func
and i compiled it but I cant use the icons
they dont do their func
Code:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
Opt("GUIOnEventMode", 1)
#Region ### START Koda GUI section ### Form=
$Hack = GUICreate("Electric Frozen By ZubZero", 534, 342, 616, 359)
GUISetBkColor(0x646464)
GUISetOnEvent($GUI_EVENT_CLOSE, "HackClose")
GUISetOnEvent($GUI_EVENT_MINIMIZE, "HackMinimize")
GUISetOnEvent($GUI_EVENT_MAXIMIZE, "HackMaximize")
GUISetOnEvent($GUI_EVENT_RESTORE, "HackRestore")
$Pic1 = GUICtrlCreatePic("C:\Users\kakado\Desktop\logo Zubzero.jpg", 280, 0, 252, 300)
GUICtrlSetOnEvent(-1, "Pic1Click")
$Checkbox1 = GUICtrlCreateCheckbox("Gode Mode", 16, 16, 97, 17)
GUICtrlSetOnEvent(-1, "Checkbox1Click")
$Checkbox2 = GUICtrlCreateCheckbox("Inf SP", 16, 64, 97, 17)
GUICtrlSetOnEvent(-1, "Checkbox2Click")
$Checkbox3 = GUICtrlCreateCheckbox("1 Hit KIll", 16, 112, 97, 17)
GUICtrlSetOnEvent(-1, "Checkbox3Click")
$Checkbox4 = GUICtrlCreateCheckbox("Fast Fire", 16, 160, 97, 17)
GUICtrlSetOnEvent(-1, "Checkbox4Click")
$Checkbox5 = GUICtrlCreateCheckbox("Multi Hit", 16, 208, 97, 17)
GUICtrlSetOnEvent(-1, "Checkbox5Click")
$Checkbox6 = GUICtrlCreateCheckbox("No Rules", 184, 16, 97, 17)
GUICtrlSetOnEvent(-1, "Checkbox6Click")
$Checkbox7 = GUICtrlCreateCheckbox("Dodge Range", 184, 64, 97, 17)
GUICtrlSetOnEvent(-1, "Checkbox7Click")
$Checkbox8 = GUICtrlCreateCheckbox("Drug Efffect", 184, 112, 97, 17)
GUICtrlSetOnEvent(-1, "Checkbox8Click")
$Checkbox9 = GUICtrlCreateCheckbox("Female To Male", 184, 160, 97, 17)
GUICtrlSetOnEvent(-1, "Checkbox9Click")
$Checkbox10 = GUICtrlCreateCheckbox("Hit 3 Times", 184, 208, 97, 17)
GUICtrlSetOnEvent(-1, "Checkbox10Click")
$Button1 = GUICtrlCreateButton("Start", 0, 304, 91, 33)
GUICtrlSetOnEvent(-1, "Button1Click")
$Button2 = GUICtrlCreateButton("Exit", 104, 304, 91, 33)
GUICtrlSetOnEvent(-1, "Button2Click")
$Button3 = GUICtrlCreateButton("Credits", 208, 304, 91, 33)
GUICtrlSetOnEvent(-1, "Button3Click")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nmsg = GUIGetMsg()
Switch $nmsg
Case - 3
Exit
Case $button1
_start()
Case $button2
Exit
Case $button3
MsgBox(0,"Credits", "By ZUbZero And Special Thanks for Zero0o")
EndSwitch
WEnd
Func _start()
ToolTip("Waiting S4 League !", 0, 0)
$pid = ProcessWait("S4Client.exe")
$open = _memoryopen($pid)
If GUICtrlRead($checkbox1) = 1 Then
_memorywrite(0x004E0703, $open, "1301094506", "Long")
EndIf
If GUICtrlRead($checkbox2) = 1 Then
_memorywrite(0x004E0703, $open, "9999999", "dword")
EndIf
If GUICtrlRead($checkbox3) = 1 Then
_memorywrite(8020651, $open, "1300957546", "Long")
EndIf
If GUICtrlRead($checkbox4) = 1 Then
_memorywrite(5478105, $open, "990399115", "long")
EndIf
If GUICtrlRead($checkbox5) = 1 Then
_memorywrite(386339968, $open, "99999999", "Float")
EndIf
If GUICtrlRead($checkbox6) = 1 Then
_memorywrite(17117191, $open, "0", "char[8]")
_memorywrite(17119200, $open, "0", "char[8]")
_memorywrite(17126906, $open, "0", "char[8]")
_memorywrite(17784575, $open, "0", "char[8]")
_memorywrite(17784667, $open, "0", "char[8]")
_memorywrite(17784845, $open, "0", "char[8]")
_memorywrite(17785061, $open, "0", "char[8]")
EndIf
If GUICtrlRead($checkbox7) = 1 Then
_memorywrite(5948513, $open, "3024981254", "long")
EndIf
If GUICtrlRead($checkbox8) = 1 Then
_memorywrite(17108044, $open, "1500", "Float")
EndIf
If GUICtrlRead($checkbox9) = 1 Then
_memorywrite(17132474, $open, "male_bip.scn", "char[14]")
EndIf
If GUICtrlRead($checkbox10) = 1 Then
_memorywrite(5948237, $open, "3427634576", "long")
EndIf
Exit 0
EndFunc