und ändert
(werte hab ich bereits)
Er soll die Originalwerte eines spieles in das was in der Inputbox steht verändern
Code:
GuiCreate("Speed hack",461,429,372,2)
$button1=GuiCtrlCreateButton("On",15,106,27,17)
$button2=GuiCtrlCreateButton("Off",14,174,90,73)
$button3=GuiCtrlCreateButton("Exit Speedhack",162,339,27,17)
$button4=GuiCtrlCreateButton("Exit and go to Homepage",29,404,384,26)
$L1=GUICtrlCreateLabel("SpeeD Hack",-3,70,275,63)
GuiSetState()
While 1
$msg=GuiGetMsg()
If $msg=-3 Then Exit
If $msg=$button1 Then button1()
If $msg=$button2 Then button2()
If $msg=$button3 Then button3()
If $msg=$button4 Then button4()
Wend
$OnOff = 0
$Pause = 0
While 1
Check()
WEnd
Func button1()
if $OnOff == 0 then
$OnOff = 1
Check()
else
EndIf
EndFunc
Func button2()
$Pause = 0
While $Pause == 0
$msg=guiGetMsg()
If $msg=$button1 Then $Pause = 1
If $msg=$button2 Then $Pause = 1
If $msg=$button3 Then Exit
Wend
EndFunc
Func button3()
Exit
EndFunc
Func button4()
ShellExecute ("http://
Exit
EndFunc






