Hello People,
Today im realase an "Newbie Spammer", the Script is OpenSource.
This is an Script for Nobbys.
Thanks.
Today im realase an "Newbie Spammer", the Script is OpenSource.
This is an Script for Nobbys.
Thanks.
PHP Code:
#RequireAdmin
Global $Timer = TimerInit()
HotKeySet("{ESC}","_Exit")
HotKeySet("{F5}","_Pause")
HotKeySet("{F6}","_Start")
HotKeySet("{F9}","_Reset")
ToolTip("HotKey_Exit: {ESC}" & @CRLF & "HotKey_Pause: {F5}" & @CRLF & "HotKey_Start: {F6}" & @CRLF & "HotKey_Reset: {F9} ", 0, 0, "HotKeys")
Sleep(5000)
ToolTip("")
_Start()
Func _Exit()
Exit
EndFunc
Func _Pause()
ToolTip("")
While 1
If TimerDiff($Timer) > 50 Then
EndIf
WEnd
EndFunc;==>_Pause
Func _Start()
ToolTip("")
$Spamtext = InputBox("Spam Text...","Please give me your spam text...:")
$Window = InputBox("Spam Window...", "Want to give me the window to the spammed...:")
$Time = InputBox("Spam Time...", "Please give me at, intervals in which time is to be noted here that you spammed it enter in milliseconds!" &@CRLF& "(1 second = 1000milliseconds)...:")
While 2
ControlSend($Window, "", 0, $Spamtext)
Sleep($Time)
WEnd
EndFunc;==>_Start
Func _Reset()
ToolTip("")
$Spamtext = InputBox("Spam Text...","Please give me your spam text...:")
$Window = InputBox("Spam Window...", "Want to give me the window to the spammed...:")
$Time = InputBox("Spam Time...", "Please give me at, intervals in which time is to be noted here that you spammed it enter in milliseconds!" &@CRLF& "(1 second = 1000milliseconds)...:")
While 2
ControlSend($Window, "", 0, $Spamtext)
Sleep($Time)
WEnd
EndFunc ;==>_Reset