Hallo könnte mir einer netter weise dieses Script:
Einen S4Client.exe starter und eine Progressbar die sich in 10 sekunden fühlt
(Progressbar am besten das wo "adressen werden in ... sek geladen)
Ich bedanke mich schon mal im vorhaus.
Ps: Den Starta für s4client auf den spambot button legen
PHP Code:
MsgBox(0,"Hallo","Hallo das ist mein neuer 18.1 Crosshair Trainer by me",5)
MsgBox(0,"Viel Spass","=)=)=)=)=)=)=)=)=)=)=)=)=)=)=)=)=)=)",2)
#RequireAdmin
#include <ButtonConstants.au3>
#Include <SendMessage.au3>
#include <ie.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>
$Crosshair = GUICreate("Crosshair", 422, 185, 192, 124)
$Start = GUICtrlCreateButton("Start", 24, 120, 123, 41)
$Close = GUICtrlCreateButton("Close", 168, 120, 123, 41)
$Crosshair = GUICtrlCreateLabel("Crosshair", 144, 16, 47, 17)
$Input1 = GUICtrlCreateInput("350", 40, 48, 249, 21)
$Input2 = GUICtrlCreateInput("130", 40, 80, 249, 21)
$Y = GUICtrlCreateLabel("X", 16, 48, 11, 17)
$X = GUICtrlCreateLabel("Y", 16, 80, 11, 17)
$Spambot = GUICtrlCreateButton("Spambot", 304, 32, 105, 129)
GUISetState(@SW_SHOW)
GUISetState (@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE ;
Exit
Case $Start ;Wenn dieser Button gedrückt wird => Funktion _Start()
$Form1 = GUICreate("Loding...", 223, 53, 192, 124)
$Label1 = GUICtrlCreateLabel("Adressen werden in ", 8, 14, 84, 17)
$Label2 = GUICtrlCreateLabel("Label2", 92, 14, 124, 17)
GUISetState(@SW_SHOW)
For $i = 10 To 0 Step -1
GUICtrlSetData($Label2, $i & " sek geladen")
If $i = 0 Then MsgBox(0, "Erfolgreich", "Die Adressen wurden erfolgreich geladen")
Sleep(1000)
Next
_Start()
Case $Close ;Wenn dieser Button gedrückt wird => Ende (Kann man sich auch sparen)
MsgBox(0,"Thx","Ich hoffe es hat Spass gemacht",5)
_Exit()
EndSwitch
(Progressbar am besten das wo "adressen werden in ... sek geladen)
Ich bedanke mich schon mal im vorhaus.
Ps: Den Starta für s4client auf den spambot button legen