#include <ButtonConstants.au3>
#NoTrayIcon
#RequireAdmin
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Multi-Tool", 311, 250, 192, 124)
$menu = GUICtrlCreateMenu("Help")
$item = GUICtrlCreateMenuItem("Credits", $menu)
$Group1 = GUICtrlCreateGroup("WinKiller", 16, 144, 145, 73)
$Input3 = GUICtrlCreateInput("", 32, 160, 113, 21)
$Button2 = GUICtrlCreateButton("Kill", 56, 192, 65, 17, $WS_GROUP)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$Group2 = GUICtrlCreateGroup("KD-Rechner", 16, 16, 145, 113)
$input1 = GUICtrlCreateInput("", 32, 40, 113, 21)
$Input2 = GUICtrlCreateInput("", 32, 64, 113, 21)
$Button1 = GUICtrlCreateButton("Rechne", 48, 96, 73, 25, $WS_GROUP)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$Group3 = GUICtrlCreateGroup("Spambot", 168, 16, 129, 201)
$Input4 = GUICtrlCreateInput("Text eingeben", 184, 40, 97, 21)
$Input5 = GUICtrlCreateInput("Wie oft?", 184, 73, 97, 21)
$Input6 = GUICtrlCreateInput("Wie lange warten?", 184, 107, 97, 21)
$Button3 = GUICtrlCreateButton("Spam", 184, 144, 97, 49, $WS_GROUP)
GUICtrlCreateGroup("", -99, -99, 1, 1)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
case $item
msgbox (0, "Credits", "Von Matrix1997/Idee von Simfy")
Case $button1
$zahl1 = guictrlread ($input1)
$Zahl2 = guictrlread ($input2)
$zahl3 = $zahl1 / $Zahl2
msgbox ( 0 , "KD-Rechner", $zahl3)
Case $Button3
msgbox (0, "Info", "Du hast 5 Sekunden Zeit um auf dein Chat/Editor zu klicken")
sleep(5000)
$text = guictrlread ($Input4)
$anzahl = guictrlread ($input5)
$wartezeit =guictrlread ($input6)
for $i = 1 to $anzahl
sleep ($wartezeit)
send ($text)
send ("{Enter}")
Next
msgbox (0 , "Credits","Von Zoker2010")
exit
Case $Button2
$read = guictrlread ($input3)
winkill ($read)
EndSwitch
WEnd