Posted 11 years ago
·
Author
The VIP Chat Spammer can be found here: viewtopic.php?f=173&t=10865
This is a simple chat spammer I made last night to block people from chatting in a room. Mostly to combat other spammers that come in the room to advertise websites and shit. This makes their chat get pushed up the chat really fast so no one has any time to read what they say or click it which usually pisses them off. Thought I'd share it.
I set it up to use hotkeys so you hit F1 to start it and then F2 to stop it. F3 allows you to set an interval in between messages. You can set it to anything between 0.1 and infinity. Default speed is 1 second. Hitting the escape button will close the script.
Please don't be a fucktard and use this spam people. Just learn from the script or use it only when necessary.
Click here to download a pre compiled exe
To change what the spammer says or how much it says just edit this part of the code:
[code=autoit file=Untitled.txt]Send("you")
Send("{ENTER}")
Send("may")
Send("{ENTER}")
Send("not")
Send("{ENTER}")
Send("chat")
Send("{ENTER}")
Send("HAHAHAHA")
Send("{ENTER}")
Send("----------------------")
Send("{ENTER}")[/code]
You can add more sends. Make sure you have a [code=autoit file=Untitled.txt]Send("{ENTER}")[/code] after each line you want to type.
This is a simple chat spammer I made last night to block people from chatting in a room. Mostly to combat other spammers that come in the room to advertise websites and shit. This makes their chat get pushed up the chat really fast so no one has any time to read what they say or click it which usually pisses them off. Thought I'd share it.
I set it up to use hotkeys so you hit F1 to start it and then F2 to stop it. F3 allows you to set an interval in between messages. You can set it to anything between 0.1 and infinity. Default speed is 1 second. Hitting the escape button will close the script.
Please don't be a fucktard and use this spam people. Just learn from the script or use it only when necessary.
Click here to download a pre compiled exe
HotKeySet("{F1}", "Spam")
HotKeySet("{F2}", "Stop")
HotKeySet("{F3}", "Interval")
HotKeySet("{ESC}", "Terminate")
;Set global variables
Global $sleep = 0
Global $stop = False
while 1
sleep(100)
wend
Func Spam()
If ProcessExists("IMVUClient.exe") OR ("IMVUQualityAgent.exe") Then
Opt("WinTitleMatchMode", 4)
;Get the Window Handle for IMVU
$hICWindow = WinGetHandle("[CLASS:ImvuNativeWindow]")
;Bring IMVU to the front so we don't accidently type into something else
WinActivate($hICWindow)
WinWait($hICWindow)
If $stop = True Then
$stop = False
EndIf
while $stop = False
Send("you")
Send("{ENTER}")
Send("may")
Send("{ENTER}")
Send("not")
Send("{ENTER}")
Send("chat")
Send("{ENTER}")
Send("HAHAHAHA")
Send("{ENTER}")
Send("----------------------")
Send("{ENTER}")
Sleep($sleep)
wend
EndIf
EndFunc
Func Stop()
$stop = True
EndFunc
Func Interval()
;Create a dialog box for sleep time input
$sleep = InputBox("Capture Interval", "Please Type In The Amount Of Time To Wait Inbetween Taking Pictures")
$sleep = $sleep * 1000
EndFunc
Func Terminate()
Exit 0
EndFunc
To change what the spammer says or how much it says just edit this part of the code:
[code=autoit file=Untitled.txt]Send("you")
Send("{ENTER}")
Send("may")
Send("{ENTER}")
Send("not")
Send("{ENTER}")
Send("chat")
Send("{ENTER}")
Send("HAHAHAHA")
Send("{ENTER}")
Send("----------------------")
Send("{ENTER}")[/code]
You can add more sends. Make sure you have a [code=autoit file=Untitled.txt]Send("{ENTER}")[/code] after each line you want to type.