![]() |
|
How to make a skype spammer - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Visual Basic & .NET Framework (https://sinister.ly/Forum-Visual-Basic-NET-Framework) +--- Thread: How to make a skype spammer (/Thread-How-to-make-a-skype-spammer) Pages:
1
2
|
How to make a skype spammer - Sunlight - 03-24-2013 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 Skype4COMLibCode: dim skype as new skypeCode: 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 WhileNow your done. RE: How to make a skype spammer - Google - 03-24-2013 Really nice Tutorials sir!, I use atm. Clownfish. RE: How to make a skype spammer - Sunlight - 03-24-2013 (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. RE: How to make a skype spammer - Google - 03-24-2013 (03-24-2013, 02:57 PM)Sunlight Wrote: I did not know that Clownfish has a spammer lul. Now I teached you smth. , proud ftw. I want to do the Tut muh nigguh!
RE: How to make a skype spammer - OversouL - 03-26-2013 @Sunlight are you a coder or just know a little about coding? : ) RE: How to make a skype spammer - Mod Mark - 03-26-2013 Thanks for the share, though I don't see why anyone would possibly want to use a spammer for Skype. RE: How to make a skype spammer - Sunlight - 03-26-2013 (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. RE: How to make a skype spammer - OversouL - 03-26-2013 (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 : $ RE: How to make a skype spammer - Sunlight - 03-26-2013 (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. RE: How to make a skype spammer - OversouL - 03-26-2013 (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 |