Login Register






Thread Rating:
  • 0 Vote(s) - 0 Average


How to make a skype spammer filter_list
Author
Message
How to make a skype spammer #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:
Code:
Imports Skype4COMLib
Then go right under Form1 and add this:
Code:
dim skype as new skype
Now double click your form to go to the form_load event and add this code:

Code:
skype.attach()

Now go outside of a sub and add this code:
Code:
Public Sub spammed()
Then double click your button, to open up the button_clicked event and add this:
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.

Reply

RE: How to make a skype spammer #2
Really nice Tutorials sir!, I use atm. Clownfish.

Reply

RE: How to make a skype spammer #3
(03-24-2013, 02:54 PM)Google Wrote: Really nice Tutorials sir!, I use atm. Clownfish.

I did not know that Clownfish has a spammer lul.
I'm gonna make a broadcaster tutorial in just a sec.

Reply

RE: How to make a skype spammer #4
(03-24-2013, 02:57 PM)Sunlight Wrote: I did not know that Clownfish has a spammer lul.
I'm gonna make a broadcaster tutorial in just a sec.

Now I teached you smth. Biggrin, proud ftw. I want to do the Tut muh nigguh!

Reply

RE: How to make a skype spammer #5
@Sunlight are you a coder or just know a little about coding? : )
[Image: dHJ4Beo.gif]
Hidden Lesson: Reactions are always instinctive whereas responses are always well thought of.

Reply

RE: How to make a skype spammer #6
Thanks for the share, though I don't see why anyone would possibly want to use a spammer for Skype.

Reply

RE: How to make a skype spammer #7
(03-26-2013, 11:46 AM)OversouL Wrote: @Sunlight are you a coder or just know a little about coding? : )

I'm a coder. I know a lot about coding.

Reply

RE: How to make a skype spammer #8
(03-26-2013, 11:47 AM)Plunder Wrote: Thanks for the share, though I don't see why anyone would possibly want to use a spammer for Skype.

Maybe for trolling friends I guess or piss of anybody they don't like : $
[Image: dHJ4Beo.gif]
Hidden Lesson: Reactions are always instinctive whereas responses are always well thought of.

Reply

RE: How to make a skype spammer #9
(03-26-2013, 02:01 PM)OversouL Wrote: Maybe for trolling friends I guess or piss of anybody they don't like : $

Exactly. Skype spammers are used for pissing people off, or having a spam war. I will release the message that will crash your friends skype soon.

Reply

RE: How to make a skype spammer #10
(03-26-2013, 02:05 PM)Sunlight Wrote: Exactly. Skype spammers are used for pissing people off, or having a spam war. I will release the message that will crash your friends skype soon.

What do you mean by message that will crash their skype? sounds interesting. : D
[Image: dHJ4Beo.gif]
Hidden Lesson: Reactions are always instinctive whereas responses are always well thought of.

Reply







Users browsing this thread: 1 Guest(s)