How to make a skype spammer 03-24-2013, 02:46 PM
#1
In this tutorial I will show you how to make a Skype spammer. This does not use a timer, it uses threading and loops, which makes it very fast. Just follow this carefully, and you'll learn how to do it without reading this tutorial everytime.
Add 4 labels = label1 = To, label2 = amount of times, label3 = message, label4 = 0
Add 3 textboxes = textbox1 = to, textbox2 = amount of times, textbox3 = msg to be spammed
Add 1 button = Start Spam
Add Skype4Com.dll as a reference to your project.
Then go on the very top of your code, and import:
Then go right under Form1 and add this:
Now double click your form to go to the form_load event and add this code:
Now go outside of a sub and add this code:
Then double click your button, to open up the button_clicked event and add this:
Now go back to the Public Sub spammed() sub and add this code:
Now your done.
Add 4 labels = label1 = To, label2 = amount of times, label3 = message, label4 = 0
Add 3 textboxes = textbox1 = to, textbox2 = amount of times, textbox3 = msg to be spammed
Add 1 button = Start Spam
Add Skype4Com.dll as a reference to your project.
Then go on the very top of your code, and import:
Code:
Imports Skype4COMLib
Code:
dim skype as new skype
Code:
skype.attach()
Now go outside of a sub and add this code:
Code:
Public Sub spammed()
Code:
spammed()
Now go back to the Public Sub spammed() sub and add this code:
Code:
Dim sent As Integer = Label4.Text
Dim times As Integer = TextBox2.Text
sent = sent + 1
While sent < times
Dim victim = skype.CreateChatWith(TextBox1.Text)
victim.OpenWindow()
victim.SendMessage(TextBox3.Text)
End While
Now your done.