<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[(wL) Forums - War-Lords Production]]></title>
		<link>https://war-lords.net/forum/</link>
		<description><![CDATA[(wL) Forums - https://war-lords.net/forum]]></description>
		<pubDate>Wed, 02 Sep 2026 08:50:14 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Mass Email Spammer - Open Source]]></title>
			<link>https://war-lords.net/forum/thread-14704.html</link>
			<pubDate>Thu, 06 Nov 2014 20:46:23 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=350">PaSS</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-14704.html</guid>
			<description><![CDATA[<span style="font-weight: bold;" class="mycode_b"><span style="color: red;" class="mycode_color">I AM NOT RESPONSIBLE FOR WHAT HAPPENS TO YOUR EMAIL ACCOUNTS IF YOU USE THIS. THIS IS FOR EDUCATIONAL PURPOSES ONLY</span></span><br />
<span style="color: red;" class="mycode_color">This program may be flagged as a virus. This is because it opens the sender.exe program. As well it modifies files with in its current folder. if you are still worried take a look at the source code below.</span><br />
<span style="font-weight: bold;" class="mycode_b">Features</span><br />
- Multiple Emails to send from<br />
- Multiple Emails to send to<br />
- Multiple Messages<br />
- Random Messages<br />
- MPS (Messages Sent Per Second) Meter<br />
- MPS Peak Meter<br />
- Message Sende Rate<br />
- Sent Message Limiter<br />
- Emails sent count<br />
- Stores previous entrys for Your Emails, Email List, and Messages<br />
- Easy Entry. You only have to hit enter to add new entrys to listboxes<br />
- Logs. This will tell you where the emails have been sent in a text box<br />
- Delay Meter. This will tell you in milliseconds how fast the messages are being sent.<br />
- Custom Your Emails. The ability to choose between smtp server, Ports, And any email accounts.<br />
<span style="font-weight: bold;" class="mycode_b">Screen Shots</span><br />
The Program:<br />
<img src="http://s16.postimg.org/smym63tkl/massemail.png" loading="lazy"  alt="[Image: massemail.png]" class="mycode_img" /><br />
Messagess Sent:<br />
<img src="http://s12.postimg.org/87hs8fha5/emails_sent.png" loading="lazy"  alt="[Image: emails_sent.png]" class="mycode_img" /><br />
<span style="font-weight: bold;" class="mycode_b">Downloads</span><br />
Mediafire: <a href="https://www.mediafire.com/?pm9bdnd57txk2z5" target="_blank" rel="noopener" class="mycode_url">https://www.mediafire.com/?pm9bdnd57txk2z5</a><br />
<span style="font-weight: bold;" class="mycode_b">Virus Scan</span><br />
Scan: <a href="https://www.virustotal.com/en/file/c3f06f1eca1e6d1168ac36652ba8997c7d61114a350df826f27de78b90c9715e/analysis/1415484082/" target="_blank" rel="noopener" class="mycode_url">https://www.virustotal.com/en/file/c3f06...415484082/</a><br />
<span style="font-weight: bold;" class="mycode_b">Mass Email Spammer - Coded By Pass (Jeremy).exe - Source</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>Public Class Form1
   Dim AppPath As String = New System.IO.FileInfo(Application.ExecutablePath).DirectoryName
   Dim ol_count = 0
   Dim new_count = 0
   Dim mps_peak = 0
   Private Sub tmrLogs_Tick(sender As Object, e As EventArgs) Handles tmrLogs.Tick
       ol_count = new_count
       If System.IO.File.Exists(AppPath &amp; "&#92;0.txt") Or _
          System.IO.File.Exists(AppPath &amp; "&#92;1.txt") Or _
          System.IO.File.Exists(AppPath &amp; "&#92;2.txt") Or _
          System.IO.File.Exists(AppPath &amp; "&#92;3.txt") Or _
          System.IO.File.Exists(AppPath &amp; "&#92;4.txt") Then
           Try
               txtLogs.Text = ""
               txtLogs.Text = System.IO.File.ReadAllText(AppPath &amp; "&#92;0.txt") &amp; vbCrLf &amp; txtLogs.Text
               txtLogs.Text = System.IO.File.ReadAllText(AppPath &amp; "&#92;1.txt") &amp; vbCrLf &amp; txtLogs.Text
               txtLogs.Text = System.IO.File.ReadAllText(AppPath &amp; "&#92;2.txt") &amp; vbCrLf &amp; txtLogs.Text
               txtLogs.Text = System.IO.File.ReadAllText(AppPath &amp; "&#92;3.txt") &amp; txtLogs.Text
               lblSent.Text = txtLogs.Lines.Length
           Catch ex As Exception
           End Try
       Else
           txtLogs.Text = "No Logs Have Been Generated?"
       End If
       new_count = txtLogs.Lines.Length
       lblMPScount.Text = new_count - ol_count
       If new_count - ol_count &gt; mps_peak Then
           lblMPSpeak.Text = new_count - ol_count
           mps_peak = new_count - ol_count
       End If
   End Sub
   Private Sub Form1_Disposed(sender As Object, e As EventArgs) Handles Me.Disposed
       Try
           System.IO.File.Delete(AppPath &amp; "&#92;0.txt")
           System.IO.File.Delete(AppPath &amp; "&#92;1.txt")
           System.IO.File.Delete(AppPath &amp; "&#92;2.txt")
           System.IO.File.Delete(AppPath &amp; "&#92;3.txt")
           System.IO.File.Delete(AppPath &amp; "&#92;4.txt")
       Catch ex As Exception
       End Try
       
   End Sub
   Private Sub btnYEserverhelp_Click(sender As Object, e As EventArgs) Handles btnYEserverhelp.Click
       MsgBox("" &amp; _
              "Gmail Server: smtp.gmail.com | Port: 465" &amp; vbCrLf &amp; _
              "Yahoo Server: .mail.yahoo.com | Port: 465" &amp; vbCrLf &amp; _
              "Hotmail Server: smtp.live.com | Port: 465" &amp; vbCrLf &amp; _
              "AOL Server: smtp.aol.com | Port: 465", , "Help Please!!!!")
   End Sub
   Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
       txtLogs.ReadOnly = True
       load_file("email list")
       load_file("your email list")
       load_file("messages")
   End Sub
   Function load_file(where)
       If where = "email list" Then
           Dim lines() = System.IO.File.ReadAllLines(AppPath &amp; "&#92;emails")
           lbEmailList.Items.AddRange(lines)
       ElseIf where = "your email list" Then
           Dim linesa() = System.IO.File.ReadAllLines(AppPath &amp; "&#92;myemailsnp")
           lbYourEmails.Items.AddRange(linesa)
           Dim linesb() = System.IO.File.ReadAllLines(AppPath &amp; "&#92;myemails")
           lbYE.Items.AddRange(linesb)
       ElseIf where = "messages" Then
           Dim lines() = System.IO.File.ReadAllLines(AppPath &amp; "&#92;messages")
           lbMessages.Items.AddRange(lines)
       End If
   End Function
   Private Sub btnELclear_Click(sender As Object, e As EventArgs) Handles btnELclear.Click
       lbEmailList.Items.Clear()
   End Sub
   Private Sub btnMclear_Click(sender As Object, e As EventArgs) Handles btnMclear.Click
       lbMessages.Items.Clear()
   End Sub
   Private Sub btnYEclear_Click(sender As Object, e As EventArgs) Handles btnYEclear.Click
       lbYourEmails.Items.Clear()
       lbYE.Items.Clear()
   End Sub
   Private Sub btnELdelete_Click(sender As Object, e As EventArgs) Handles btnELdelete.Click
       lbEmailList.Items.RemoveAt(lbEmailList.SelectedIndex)
       Try
           Dim i = 0
           Do Until i = -1
               If i = 0 Then
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;emails", lbEmailList.Items.Item(0))
               Else
                   Dim emails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;emails")
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;emails", emails_text &amp; vbCrLf &amp; lbEmailList.Items.Item(i))
               End If
               i += 1
           Loop
       Catch ex As Exception
       End Try
   End Sub
   Private Sub btnMdelete_Click(sender As Object, e As EventArgs) Handles btnMdelete.Click
       lbMessages.Items.RemoveAt(lbMessages.SelectedIndex)
       Try
           Dim i = 0
           Do Until i = -1
               If i = 0 Then
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", lbMessages.Items.Item(0))
               Else
                   Dim messages_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;messages")
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", messages_text &amp; vbCrLf &amp; lbMessages.Items.Item(i))
               End If
               i += 1
           Loop
       Catch ex As Exception
       End Try
   End Sub
   Private Sub btnYEdelete_Click(sender As Object, e As EventArgs) Handles btnYEdelete.Click
       lbYE.Items.RemoveAt(lbYourEmails.SelectedIndex)
       lbYourEmails.Items.RemoveAt(lbYourEmails.SelectedIndex)
       Try
           Dim i = 0
           Do Until i = -1
               If i = 0 Then
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", lbYE.Items.Item(0))
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", lbYourEmails.Items.Item(0))
               Else
                   Dim myemails_texta = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemails")
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", myemails_texta &amp; vbCrLf &amp; lbYE.Items.Item(i))
                   Dim myemails_textb = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemailsnp")
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", myemails_textb &amp; vbCrLf &amp; lbYourEmails.Items.Item(i))
               End If
               i += 1
           Loop
       Catch ex As Exception
       End Try
   End Sub
   Private Sub btnELadd_Click(sender As Object, e As EventArgs) Handles btnELadd.Click
       If txtETBA.Text = "" Then
           MsgBox("You are missing information could not complete the adding of this email.", MsgBoxStyle.Exclamation, "ERROR")
       Else
           lbEmailList.Items.Add(txtETBA.Text)
           txtETBA.Text = ""
           Try
               Dim i = 0
               Do Until i = -1
                   If i = 0 Then
                       System.IO.File.WriteAllText(AppPath &amp; "&#92;emails", lbEmailList.Items.Item(0))
                   Else
                       Dim emails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;emails")
                       System.IO.File.WriteAllText(AppPath &amp; "&#92;emails", emails_text &amp; vbCrLf &amp; lbEmailList.Items.Item(i))
                   End If
                   i += 1
               Loop
           Catch ex As Exception
           End Try
       End If
   End Sub
   Private Sub lbEmailList_SelectedIndexChanged(sender As Object, e As EventArgs) Handles lbEmailList.SelectedIndexChanged
       txtETBA.Text = lbEmailList.SelectedItem()
   End Sub
   Private Sub btnYEadd_Click(sender As Object, e As EventArgs) Handles btnYEadd.Click
       If txtYEaccount.Text = "" Or txtYEpassword.Text = "" Or txtYEport.Text = "" Or txtYEserver.Text = "" Then
           MsgBox("You are missing information could not complete the adding of account.", MsgBoxStyle.Exclamation, "ERROR")
       Else
           If Not lbYourEmails.Items.Contains(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text) Then
               lbYE.Items.Add(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text &amp; ";" &amp; txtYEpassword.Text)
                lbYourEmails.Items.Add(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text)
                Try
                    Dim i = 0
                    Do Until i = -1
                        If i = 0 Then
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", lbYE.Items.Item(0))
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", lbYourEmails.Items.Item(0))
                        Else
                            Dim YEemails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemails")
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", YEemails_text &amp; vbCrLf &amp; lbYE.Items.Item(i))
                            Dim Youremails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemailsnp")
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", Youremails_text &amp; vbCrLf &amp; lbYourEmails.Items.Item(i))
                        End If
                        i += 1
                    Loop
                Catch ex As Exception
                End Try
            Else
                MsgBox("You have already added this account. Duplicated account was not added!", , "Duplicate Found")
            End If
            

        End If
        
    End Sub

    Private Sub btnMadd_Click(sender As Object, e As EventArgs) Handles btnMadd.Click
        If txtMmessage.Text = "" Or txtMsubject.Text = "" Then
            MsgBox("You are missing information could not complete the adding of this email.", MsgBoxStyle.Exclamation, "ERROR")
        Else
            lbMessages.Items.Add(txtMsubject.Text &amp; "=+=" &amp; txtMmessage.Text)
            Try
                Dim i = 0
                Do Until i = -1
                    If i = 0 Then
                        System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", lbMessages.Items.Item(0))
                    Else
                        Dim messages_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;messages")
                        System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", messages_text &amp; vbCrLf &amp; lbMessages.Items.Item(i))
                    End If
                    i += 1
                Loop
            Catch ex As Exception
            End Try
            

        End If
    End Sub

#Region "Hot Keys"
    Private Sub txtETBA_HotKey(ByVal Sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtETBA.KeyDown, MyBase.KeyDown
        If e.KeyValue = Keys.Enter Then
            If txtETBA.Text = "" Then
                MsgBox("You are missing information could not complete the adding of this email.", MsgBoxStyle.Exclamation, "ERROR")
            Else
                lbEmailList.Items.Add(txtETBA.Text)
                txtETBA.Text = ""
                Try
                    Dim i = 0
                    Do Until i = -1
                        If i = 0 Then
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;emails", lbEmailList.Items.Item(0))
                        Else
                            Dim emails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;emails")
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;emails", emails_text &amp; vbCrLf &amp; lbEmailList.Items.Item(i))
                        End If
                        i += 1
                    Loop
                Catch ex As Exception
                End Try
            End If
        End If
    End Sub

    Private Sub txtYEaccount_HotKey(ByVal Sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtYEaccount.KeyDown, MyBase.KeyDown
        If e.KeyValue = Keys.Enter Then
            If txtYEaccount.Text = "" Or txtYEpassword.Text = "" Or txtYEport.Text = "" Or txtYEserver.Text = "" Then
                MsgBox("You are missing information could not complete the adding of account.", MsgBoxStyle.Exclamation, "ERROR")
            Else
                If Not lbYourEmails.Items.Contains(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text) Then
                    lbYE.Items.Add(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text &amp; ";" &amp; txtYEpassword.Text)
                    lbYourEmails.Items.Add(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text)
                    Try
                        Dim i = 0
                        Do Until i = -1
                            If i = 0 Then
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", lbYE.Items.Item(0))
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", lbYourEmails.Items.Item(0))
                            Else
                                Dim YEemails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemails")
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", YEemails_text &amp; vbCrLf &amp; lbYE.Items.Item(i))
                                Dim Youremails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemailsnp")
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", Youremails_text &amp; vbCrLf &amp; lbYourEmails.Items.Item(i))
                            End If
                            i += 1
                        Loop
                    Catch ex As Exception
                    End Try
                Else
                    MsgBox("You have already added this account. Duplicated account was not added!", , "Duplicate Found")
                End If


            End If
        End If
    End Sub

    Private Sub txtYEpassword_HotKey(ByVal Sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtYEpassword.KeyDown, MyBase.KeyDown
        If e.KeyValue = Keys.Enter Then
            If txtYEaccount.Text = "" Or txtYEpassword.Text = "" Or txtYEport.Text = "" Or txtYEserver.Text = "" Then
                MsgBox("You are missing information could not complete the adding of account.", MsgBoxStyle.Exclamation, "ERROR")
            Else
                If Not lbYourEmails.Items.Contains(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text) Then
                    lbYE.Items.Add(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text &amp; ";" &amp; txtYEpassword.Text)
                    lbYourEmails.Items.Add(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text)
                    Try
                        Dim i = 0
                        Do Until i = -1
                            If i = 0 Then
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", lbYE.Items.Item(0))
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", lbYourEmails.Items.Item(0))
                            Else
                                Dim YEemails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemails")
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", YEemails_text &amp; vbCrLf &amp; lbYE.Items.Item(i))
                                Dim Youremails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemailsnp")
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", Youremails_text &amp; vbCrLf &amp; lbYourEmails.Items.Item(i))
                            End If
                            i += 1
                        Loop
                    Catch ex As Exception
                    End Try
                Else
                    MsgBox("You have already added this account. Duplicated account was not added!", , "Duplicate Found")
                End If


            End If
        End If
    End Sub

    Private Sub txtMmessages_HotKey(ByVal Sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtMmessage.KeyDown, MyBase.KeyDown
        If e.KeyValue = Keys.Enter Then
            If txtMmessage.Text = "" Or txtMsubject.Text = "" Then
                MsgBox("You are missing information could not complete the adding of this email.", MsgBoxStyle.Exclamation, "ERROR")
            Else
                lbMessages.Items.Add(txtMsubject.Text &amp; "=+=" &amp; txtMmessage.Text)
                Try
                    Dim i = 0
                    Do Until i = -1
                        If i = 0 Then
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", lbMessages.Items.Item(0))
                        Else
                            Dim messages_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;messages")
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", messages_text &amp; vbCrLf &amp; lbMessages.Items.Item(i))
                        End If
                        i += 1
                    Loop
                Catch ex As Exception
                End Try
            End If
        End If
    End Sub

    Private Sub txtMsubject_HotKey(ByVal Sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtMsubject.KeyDown, MyBase.KeyDown
        If e.KeyValue = Keys.Enter Then
            If txtMmessage.Text = "" Or txtMsubject.Text = "" Then
                MsgBox("You are missing information could not complete the adding of this email.", MsgBoxStyle.Exclamation, "ERROR")
            Else
                lbMessages.Items.Add(txtMsubject.Text &amp; "=+=" &amp; txtMmessage.Text)
                Try
                    Dim i = 0
                    Do Until i = -1
                        If i = 0 Then
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", lbMessages.Items.Item(0))
                        Else
                            Dim messages_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;messages")
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", messages_text &amp; vbCrLf &amp; lbMessages.Items.Item(i))
                        End If
                        i += 1
                    Loop
                Catch ex As Exception
                End Try
            End If
        End If
    End Sub
#End Region



    Private Sub txtCPmsgpersec_TextChanged(sender As Object, e As EventArgs) Handles txtCPmsgpersec.TextChanged
        txtCPmsgpersec.ReadOnly = True
        Try
            If txtCPmsgpersec.Text &lt;= 0 Then
                txtCPmsgpersec.Text = 0.01
            ElseIf txtCPmsgpersec.Text &gt;= 11 Then
                txtCPmsgpersec.Text = 10
            End If
        Catch ex As Exception

        End Try
        

        Select Case txtCPmsgpersec.Text
            Case 0.01
                tmrAction.Interval = 2000
                lblDelay.Text = 2000
            Case 0.75
                tmrAction.Interval = 1750
                lblDelay.Text = 1750
            Case 0.5
                tmrAction.Interval = 1500
                lblDelay.Text = 1500
            Case 0.25
                tmrAction.Interval = 1250
                lblDelay.Text = 1250
            Case 1
                tmrAction.Interval = 1000
                lblDelay.Text = 1000
            Case 2
                tmrAction.Interval = 500
                lblDelay.Text = 500
            Case 3
                tmrAction.Interval = 333
                lblDelay.Text = 333
            Case 4
                tmrAction.Interval = 250
                lblDelay.Text = 250
            Case 5
                tmrAction.Interval = 200
                lblDelay.Text = 200
            Case 6
                tmrAction.Interval = 167
                lblDelay.Text = 167
            Case 7
                tmrAction.Interval = 142
                lblDelay.Text = 142
            Case 8
                tmrAction.Interval = 125
                lblDelay.Text = 125
            Case 9
                tmrAction.Interval = 112
                lblDelay.Text = 122
            Case 10
                tmrAction.Interval = 100
                lblDelay.Text = 100
            Case Else
                tmrAction.Interval = 100
                lblDelay.Text = 100

        End Select


    End Sub

    Private Sub txtCPmsgtosend_TextChanged(sender As Object, e As EventArgs) Handles txtCPmsgtosend.TextChanged
        Dim checkNumber As Integer
        If Integer.TryParse(txtCPmsgtosend.Text, checkNumber) = False Then
            txtCPmsgtosend.Text = 0
        Else
            If txtCPmsgtosend.Text &lt;= -1 Then
                txtCPmsgtosend.Text = 0
            End If
        End If

    End Sub

    Private Sub Button2_Click(sender As Object, e As EventArgs) Handles btnCPmsgpersecondUP.Click
        If txtCPmsgpersec.Text &gt;= 0 Or txtCPmsgpersec.Text &lt; 1 Then
            If txtCPmsgpersec.Text = 0.01 Then
                txtCPmsgpersec.Text += 0.24
            Else
                If Not txtCPmsgpersec.Text &gt; 0.99 Then
                    txtCPmsgpersec.Text += 0.25
                Else
                    txtCPmsgpersec.Text += 1
                End If

            End If
        Else

        End If

    End Sub

    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles btnCPmsgpersecondDOWN.Click
        If txtCPmsgpersec.Text &lt;= 1 Then
            txtCPmsgpersec.Text -= 0.25
        Else
            txtCPmsgpersec.Text -= 1
        End If
    End Sub

    Private Sub btnCPmsgtosendUP_Click(sender As Object, e As EventArgs) Handles btnCPmsgtosendUP.Click
        txtCPmsgtosend.Text += 1
    End Sub

    Private Sub btnCPmsgtosendDOWN_Click(sender As Object, e As EventArgs) Handles btnCPmsgtosendDOWN.Click
        txtCPmsgtosend.Text -= 1
    End Sub

    Private Sub tmrAction_Tick(sender As Object, e As EventArgs) Handles tmrAction.Tick
        Dim to_send As Integer = txtCPmsgtosend.Text
        Dim sent As Integer = lblSent.Text
        If to_send &lt;= sent Then
            tmrAction.Enabled = False
            MsgBox("Mail Spam Completed! Sent - " &amp; lblSent.Text &amp; " To Send - " &amp; txtCPmsgtosend.Text, , "Finished")
        Else
            Dim YE() = Split(lbYE.Items.Item(0), ";")
            Dim M() = Split(lbMessages.Items.Item(0), "=+=")
            Dim subject = M(0)
            Dim Message = M(1)
            If CheckBox1.CheckState = CheckState.Checked Then
                Randomize()
                Dim rand As New Random
                Dim intLowNumber = "1000"
                Dim intUpperNumber = "9999"
                subject = rand.Next(intLowNumber, intUpperNumber + 1) &amp; rand.Next(intLowNumber, intUpperNumber + 1) &amp; rand.Next(intLowNumber, intUpperNumber + 1)
                Message = rand.Next(intLowNumber, intUpperNumber + 1) &amp; rand.Next(intLowNumber, intUpperNumber + 1) &amp; rand.Next(intLowNumber, intUpperNumber + 1)

            End If
            System.IO.File.WriteAllText(AppPath &amp; "&#92;info.txt",
                                        "Email To=" &amp; lbEmailList.Items.Item(0) &amp; vbCrLf &amp; _
                                        "Email Server=" &amp; YE(0) &amp; vbCrLf &amp; _
                                        "Email From=random@gmail.com" &amp; vbCrLf &amp; _
                                        "Account=" &amp; YE(2) &amp; vbCrLf &amp; _
                                        "Passowrd=" &amp; YE(3) &amp; vbCrLf &amp; _
                                        "Subject=" &amp; subject &amp; vbCrLf &amp; _
                                        "Message=" &amp; Message &amp; vbCrLf &amp; _
                                        "Port=" &amp; YE(1) &amp; vbCrLf)
            lbEmailList.Items.Add(lbEmailList.Items.Item(0))
            lbYE.Items.Add(lbYE.Items.Item(0))
            lbMessages.Items.Add(lbMessages.Items.Item(0))
            lbYE.Items.RemoveAt(0)
            lbMessages.Items.RemoveAt(0)
            lbEmailList.Items.RemoveAt(0)
            Process.Start(AppPath &amp; "&#92;sender.exe")
        End If





    End Sub

    Private Sub btnStart_Click(sender As Object, e As EventArgs) Handles btnStart.Click
        lblSent.Text = 0
        tmrAction.Enabled = True
        btnStart.Enabled = False
        btnStop.Enabled = True
    End Sub

    Private Sub btnStop_Click(sender As Object, e As EventArgs) Handles btnStop.Click
        tmrAction.Enabled = False
        btnStart.Enabled = True
        btnStop.Enabled = False
    End Sub

End Class</code></div></div><br />
<br />
<span style="font-weight: bold;" class="mycode_b">send.exe - Source</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>Imports System.Net.Mail
Public Class Form1
    Dim AppPath As String = New System.IO.FileInfo(Application.ExecutablePath).DirectoryName
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
        Try
            Dim file_count = System.IO.File.ReadAllText(AppPath &amp; "&#92;count") + 1
            If file_count &gt; 3 Then
                file_count = 0
                System.IO.File.WriteAllText(AppPath &amp; "&#92;count", file_count)
            Else
                System.IO.File.WriteAllText(AppPath &amp; "&#92;count", file_count)
            End If

            Try
                Dim info = System.IO.File.ReadAllText(AppPath &amp; "&#92;info.txt")
                Dim info_step_1() = Split(info, vbCrLf)
                Dim emailto() = Split(info_step_1(0), "=")
                Dim server() = Split(info_step_1(1), "=")
                Dim from() = Split(info_step_1(2), "=")
                Dim account() = Split(info_step_1(3), "=")
                Dim password() = Split(info_step_1(4), "=")
                Dim subject() = Split(info_step_1(5), "=")
                Dim message() = Split(info_step_1(6), "=")
                Dim port() = Split(info_step_1(7), "=")
                Try
                    Dim mail As New MailMessage
                    mail.Subject = subject(1)
                    mail.To.Add(emailto(1))
                    mail.From = New MailAddress(from(1))
                    mail.Body = message(1)
                    Dim SMTP As New SmtpClient(server(1))
                    SMTP.EnableSsl = True
                    SMTP.Credentials = New System.Net.NetworkCredential(account(1), password(1))
                    SMTP.Port = port(1)
                    SMTP.Send(mail)
                    Label1.Text = "Sent"
                    Dim h = DateTime.Now.Hour
                    Dim m = DateTime.Now.Minute
                    Dim s = DateTime.Now.Second
                    Select Case file_count
                        Case 0
                            If System.IO.File.Exists(AppPath &amp; "&#92;0.txt") Then
                                Dim ol_file = System.IO.File.ReadAllText(AppPath &amp; "&#92;0.txt")
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;0.txt", "[" &amp; h &amp; ":" &amp; m &amp; "." &amp; s &amp; "] - Email Sent To: " &amp; emailto(1) &amp; vbCrLf &amp; ol_file)
                            Else
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;0.txt", "[" &amp; h &amp; ":" &amp; m &amp; "." &amp; s &amp; "] - Email Sent To: " &amp; emailto(1))
                            End If
                        Case 1
                            If System.IO.File.Exists(AppPath &amp; "&#92;1.txt") Then
                                Dim ol_file = System.IO.File.ReadAllText(AppPath &amp; "&#92;1.txt")
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;1.txt", "[" &amp; h &amp; ":" &amp; m &amp; "." &amp; s &amp; "] - Email Sent To: " &amp; emailto(1) &amp; vbCrLf &amp; ol_file)
                            Else
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;1.txt", "[" &amp; h &amp; ":" &amp; m &amp; "." &amp; s &amp; "] - Email Sent To: " &amp; emailto(1))
                            End If
                        Case 2
                            If System.IO.File.Exists(AppPath &amp; "&#92;2.txt") Then
                                Dim ol_file = System.IO.File.ReadAllText(AppPath &amp; "&#92;2.txt")
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;2.txt", "[" &amp; h &amp; ":" &amp; m &amp; "." &amp; s &amp; "] - Email Sent To: " &amp; emailto(1) &amp; vbCrLf &amp; ol_file)
                            Else
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;2.txt", "[" &amp; h &amp; ":" &amp; m &amp; "." &amp; s &amp; "] - Email Sent To: " &amp; emailto(1))
                            End If
                        Case 3
                            If System.IO.File.Exists(AppPath &amp; "&#92;3.txt") Then
                                Dim ol_file = System.IO.File.ReadAllText(AppPath &amp; "&#92;3.txt")
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;3.txt", "[" &amp; h &amp; ":" &amp; m &amp; "." &amp; s &amp; "] - Email Sent To: " &amp; emailto(1) &amp; vbCrLf &amp; ol_file)
                            Else
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;3.txt", "[" &amp; h &amp; ":" &amp; m &amp; "." &amp; s &amp; "] - Email Sent To: " &amp; emailto(1))
                            End If
                    End Select
                Catch ex As Exception
                    Label1.Text = "Failed"
                End Try
            Catch ex As Exception
                MsgBox("File failed to load")
            End Try
        Catch ex As Exception

        End Try
    
        Me.Close()
    End Sub
End Class</code></div></div>]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;" class="mycode_b"><span style="color: red;" class="mycode_color">I AM NOT RESPONSIBLE FOR WHAT HAPPENS TO YOUR EMAIL ACCOUNTS IF YOU USE THIS. THIS IS FOR EDUCATIONAL PURPOSES ONLY</span></span><br />
<span style="color: red;" class="mycode_color">This program may be flagged as a virus. This is because it opens the sender.exe program. As well it modifies files with in its current folder. if you are still worried take a look at the source code below.</span><br />
<span style="font-weight: bold;" class="mycode_b">Features</span><br />
- Multiple Emails to send from<br />
- Multiple Emails to send to<br />
- Multiple Messages<br />
- Random Messages<br />
- MPS (Messages Sent Per Second) Meter<br />
- MPS Peak Meter<br />
- Message Sende Rate<br />
- Sent Message Limiter<br />
- Emails sent count<br />
- Stores previous entrys for Your Emails, Email List, and Messages<br />
- Easy Entry. You only have to hit enter to add new entrys to listboxes<br />
- Logs. This will tell you where the emails have been sent in a text box<br />
- Delay Meter. This will tell you in milliseconds how fast the messages are being sent.<br />
- Custom Your Emails. The ability to choose between smtp server, Ports, And any email accounts.<br />
<span style="font-weight: bold;" class="mycode_b">Screen Shots</span><br />
The Program:<br />
<img src="http://s16.postimg.org/smym63tkl/massemail.png" loading="lazy"  alt="[Image: massemail.png]" class="mycode_img" /><br />
Messagess Sent:<br />
<img src="http://s12.postimg.org/87hs8fha5/emails_sent.png" loading="lazy"  alt="[Image: emails_sent.png]" class="mycode_img" /><br />
<span style="font-weight: bold;" class="mycode_b">Downloads</span><br />
Mediafire: <a href="https://www.mediafire.com/?pm9bdnd57txk2z5" target="_blank" rel="noopener" class="mycode_url">https://www.mediafire.com/?pm9bdnd57txk2z5</a><br />
<span style="font-weight: bold;" class="mycode_b">Virus Scan</span><br />
Scan: <a href="https://www.virustotal.com/en/file/c3f06f1eca1e6d1168ac36652ba8997c7d61114a350df826f27de78b90c9715e/analysis/1415484082/" target="_blank" rel="noopener" class="mycode_url">https://www.virustotal.com/en/file/c3f06...415484082/</a><br />
<span style="font-weight: bold;" class="mycode_b">Mass Email Spammer - Coded By Pass (Jeremy).exe - Source</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>Public Class Form1
   Dim AppPath As String = New System.IO.FileInfo(Application.ExecutablePath).DirectoryName
   Dim ol_count = 0
   Dim new_count = 0
   Dim mps_peak = 0
   Private Sub tmrLogs_Tick(sender As Object, e As EventArgs) Handles tmrLogs.Tick
       ol_count = new_count
       If System.IO.File.Exists(AppPath &amp; "&#92;0.txt") Or _
          System.IO.File.Exists(AppPath &amp; "&#92;1.txt") Or _
          System.IO.File.Exists(AppPath &amp; "&#92;2.txt") Or _
          System.IO.File.Exists(AppPath &amp; "&#92;3.txt") Or _
          System.IO.File.Exists(AppPath &amp; "&#92;4.txt") Then
           Try
               txtLogs.Text = ""
               txtLogs.Text = System.IO.File.ReadAllText(AppPath &amp; "&#92;0.txt") &amp; vbCrLf &amp; txtLogs.Text
               txtLogs.Text = System.IO.File.ReadAllText(AppPath &amp; "&#92;1.txt") &amp; vbCrLf &amp; txtLogs.Text
               txtLogs.Text = System.IO.File.ReadAllText(AppPath &amp; "&#92;2.txt") &amp; vbCrLf &amp; txtLogs.Text
               txtLogs.Text = System.IO.File.ReadAllText(AppPath &amp; "&#92;3.txt") &amp; txtLogs.Text
               lblSent.Text = txtLogs.Lines.Length
           Catch ex As Exception
           End Try
       Else
           txtLogs.Text = "No Logs Have Been Generated?"
       End If
       new_count = txtLogs.Lines.Length
       lblMPScount.Text = new_count - ol_count
       If new_count - ol_count &gt; mps_peak Then
           lblMPSpeak.Text = new_count - ol_count
           mps_peak = new_count - ol_count
       End If
   End Sub
   Private Sub Form1_Disposed(sender As Object, e As EventArgs) Handles Me.Disposed
       Try
           System.IO.File.Delete(AppPath &amp; "&#92;0.txt")
           System.IO.File.Delete(AppPath &amp; "&#92;1.txt")
           System.IO.File.Delete(AppPath &amp; "&#92;2.txt")
           System.IO.File.Delete(AppPath &amp; "&#92;3.txt")
           System.IO.File.Delete(AppPath &amp; "&#92;4.txt")
       Catch ex As Exception
       End Try
       
   End Sub
   Private Sub btnYEserverhelp_Click(sender As Object, e As EventArgs) Handles btnYEserverhelp.Click
       MsgBox("" &amp; _
              "Gmail Server: smtp.gmail.com | Port: 465" &amp; vbCrLf &amp; _
              "Yahoo Server: .mail.yahoo.com | Port: 465" &amp; vbCrLf &amp; _
              "Hotmail Server: smtp.live.com | Port: 465" &amp; vbCrLf &amp; _
              "AOL Server: smtp.aol.com | Port: 465", , "Help Please!!!!")
   End Sub
   Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
       txtLogs.ReadOnly = True
       load_file("email list")
       load_file("your email list")
       load_file("messages")
   End Sub
   Function load_file(where)
       If where = "email list" Then
           Dim lines() = System.IO.File.ReadAllLines(AppPath &amp; "&#92;emails")
           lbEmailList.Items.AddRange(lines)
       ElseIf where = "your email list" Then
           Dim linesa() = System.IO.File.ReadAllLines(AppPath &amp; "&#92;myemailsnp")
           lbYourEmails.Items.AddRange(linesa)
           Dim linesb() = System.IO.File.ReadAllLines(AppPath &amp; "&#92;myemails")
           lbYE.Items.AddRange(linesb)
       ElseIf where = "messages" Then
           Dim lines() = System.IO.File.ReadAllLines(AppPath &amp; "&#92;messages")
           lbMessages.Items.AddRange(lines)
       End If
   End Function
   Private Sub btnELclear_Click(sender As Object, e As EventArgs) Handles btnELclear.Click
       lbEmailList.Items.Clear()
   End Sub
   Private Sub btnMclear_Click(sender As Object, e As EventArgs) Handles btnMclear.Click
       lbMessages.Items.Clear()
   End Sub
   Private Sub btnYEclear_Click(sender As Object, e As EventArgs) Handles btnYEclear.Click
       lbYourEmails.Items.Clear()
       lbYE.Items.Clear()
   End Sub
   Private Sub btnELdelete_Click(sender As Object, e As EventArgs) Handles btnELdelete.Click
       lbEmailList.Items.RemoveAt(lbEmailList.SelectedIndex)
       Try
           Dim i = 0
           Do Until i = -1
               If i = 0 Then
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;emails", lbEmailList.Items.Item(0))
               Else
                   Dim emails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;emails")
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;emails", emails_text &amp; vbCrLf &amp; lbEmailList.Items.Item(i))
               End If
               i += 1
           Loop
       Catch ex As Exception
       End Try
   End Sub
   Private Sub btnMdelete_Click(sender As Object, e As EventArgs) Handles btnMdelete.Click
       lbMessages.Items.RemoveAt(lbMessages.SelectedIndex)
       Try
           Dim i = 0
           Do Until i = -1
               If i = 0 Then
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", lbMessages.Items.Item(0))
               Else
                   Dim messages_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;messages")
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", messages_text &amp; vbCrLf &amp; lbMessages.Items.Item(i))
               End If
               i += 1
           Loop
       Catch ex As Exception
       End Try
   End Sub
   Private Sub btnYEdelete_Click(sender As Object, e As EventArgs) Handles btnYEdelete.Click
       lbYE.Items.RemoveAt(lbYourEmails.SelectedIndex)
       lbYourEmails.Items.RemoveAt(lbYourEmails.SelectedIndex)
       Try
           Dim i = 0
           Do Until i = -1
               If i = 0 Then
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", lbYE.Items.Item(0))
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", lbYourEmails.Items.Item(0))
               Else
                   Dim myemails_texta = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemails")
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", myemails_texta &amp; vbCrLf &amp; lbYE.Items.Item(i))
                   Dim myemails_textb = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemailsnp")
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", myemails_textb &amp; vbCrLf &amp; lbYourEmails.Items.Item(i))
               End If
               i += 1
           Loop
       Catch ex As Exception
       End Try
   End Sub
   Private Sub btnELadd_Click(sender As Object, e As EventArgs) Handles btnELadd.Click
       If txtETBA.Text = "" Then
           MsgBox("You are missing information could not complete the adding of this email.", MsgBoxStyle.Exclamation, "ERROR")
       Else
           lbEmailList.Items.Add(txtETBA.Text)
           txtETBA.Text = ""
           Try
               Dim i = 0
               Do Until i = -1
                   If i = 0 Then
                       System.IO.File.WriteAllText(AppPath &amp; "&#92;emails", lbEmailList.Items.Item(0))
                   Else
                       Dim emails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;emails")
                       System.IO.File.WriteAllText(AppPath &amp; "&#92;emails", emails_text &amp; vbCrLf &amp; lbEmailList.Items.Item(i))
                   End If
                   i += 1
               Loop
           Catch ex As Exception
           End Try
       End If
   End Sub
   Private Sub lbEmailList_SelectedIndexChanged(sender As Object, e As EventArgs) Handles lbEmailList.SelectedIndexChanged
       txtETBA.Text = lbEmailList.SelectedItem()
   End Sub
   Private Sub btnYEadd_Click(sender As Object, e As EventArgs) Handles btnYEadd.Click
       If txtYEaccount.Text = "" Or txtYEpassword.Text = "" Or txtYEport.Text = "" Or txtYEserver.Text = "" Then
           MsgBox("You are missing information could not complete the adding of account.", MsgBoxStyle.Exclamation, "ERROR")
       Else
           If Not lbYourEmails.Items.Contains(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text) Then
               lbYE.Items.Add(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text &amp; ";" &amp; txtYEpassword.Text)
                lbYourEmails.Items.Add(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text)
                Try
                    Dim i = 0
                    Do Until i = -1
                        If i = 0 Then
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", lbYE.Items.Item(0))
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", lbYourEmails.Items.Item(0))
                        Else
                            Dim YEemails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemails")
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", YEemails_text &amp; vbCrLf &amp; lbYE.Items.Item(i))
                            Dim Youremails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemailsnp")
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", Youremails_text &amp; vbCrLf &amp; lbYourEmails.Items.Item(i))
                        End If
                        i += 1
                    Loop
                Catch ex As Exception
                End Try
            Else
                MsgBox("You have already added this account. Duplicated account was not added!", , "Duplicate Found")
            End If
            

        End If
        
    End Sub

    Private Sub btnMadd_Click(sender As Object, e As EventArgs) Handles btnMadd.Click
        If txtMmessage.Text = "" Or txtMsubject.Text = "" Then
            MsgBox("You are missing information could not complete the adding of this email.", MsgBoxStyle.Exclamation, "ERROR")
        Else
            lbMessages.Items.Add(txtMsubject.Text &amp; "=+=" &amp; txtMmessage.Text)
            Try
                Dim i = 0
                Do Until i = -1
                    If i = 0 Then
                        System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", lbMessages.Items.Item(0))
                    Else
                        Dim messages_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;messages")
                        System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", messages_text &amp; vbCrLf &amp; lbMessages.Items.Item(i))
                    End If
                    i += 1
                Loop
            Catch ex As Exception
            End Try
            

        End If
    End Sub

#Region "Hot Keys"
    Private Sub txtETBA_HotKey(ByVal Sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtETBA.KeyDown, MyBase.KeyDown
        If e.KeyValue = Keys.Enter Then
            If txtETBA.Text = "" Then
                MsgBox("You are missing information could not complete the adding of this email.", MsgBoxStyle.Exclamation, "ERROR")
            Else
                lbEmailList.Items.Add(txtETBA.Text)
                txtETBA.Text = ""
                Try
                    Dim i = 0
                    Do Until i = -1
                        If i = 0 Then
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;emails", lbEmailList.Items.Item(0))
                        Else
                            Dim emails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;emails")
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;emails", emails_text &amp; vbCrLf &amp; lbEmailList.Items.Item(i))
                        End If
                        i += 1
                    Loop
                Catch ex As Exception
                End Try
            End If
        End If
    End Sub

    Private Sub txtYEaccount_HotKey(ByVal Sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtYEaccount.KeyDown, MyBase.KeyDown
        If e.KeyValue = Keys.Enter Then
            If txtYEaccount.Text = "" Or txtYEpassword.Text = "" Or txtYEport.Text = "" Or txtYEserver.Text = "" Then
                MsgBox("You are missing information could not complete the adding of account.", MsgBoxStyle.Exclamation, "ERROR")
            Else
                If Not lbYourEmails.Items.Contains(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text) Then
                    lbYE.Items.Add(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text &amp; ";" &amp; txtYEpassword.Text)
                    lbYourEmails.Items.Add(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text)
                    Try
                        Dim i = 0
                        Do Until i = -1
                            If i = 0 Then
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", lbYE.Items.Item(0))
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", lbYourEmails.Items.Item(0))
                            Else
                                Dim YEemails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemails")
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", YEemails_text &amp; vbCrLf &amp; lbYE.Items.Item(i))
                                Dim Youremails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemailsnp")
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", Youremails_text &amp; vbCrLf &amp; lbYourEmails.Items.Item(i))
                            End If
                            i += 1
                        Loop
                    Catch ex As Exception
                    End Try
                Else
                    MsgBox("You have already added this account. Duplicated account was not added!", , "Duplicate Found")
                End If


            End If
        End If
    End Sub

    Private Sub txtYEpassword_HotKey(ByVal Sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtYEpassword.KeyDown, MyBase.KeyDown
        If e.KeyValue = Keys.Enter Then
            If txtYEaccount.Text = "" Or txtYEpassword.Text = "" Or txtYEport.Text = "" Or txtYEserver.Text = "" Then
                MsgBox("You are missing information could not complete the adding of account.", MsgBoxStyle.Exclamation, "ERROR")
            Else
                If Not lbYourEmails.Items.Contains(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text) Then
                    lbYE.Items.Add(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text &amp; ";" &amp; txtYEpassword.Text)
                    lbYourEmails.Items.Add(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text)
                    Try
                        Dim i = 0
                        Do Until i = -1
                            If i = 0 Then
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", lbYE.Items.Item(0))
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", lbYourEmails.Items.Item(0))
                            Else
                                Dim YEemails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemails")
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", YEemails_text &amp; vbCrLf &amp; lbYE.Items.Item(i))
                                Dim Youremails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemailsnp")
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", Youremails_text &amp; vbCrLf &amp; lbYourEmails.Items.Item(i))
                            End If
                            i += 1
                        Loop
                    Catch ex As Exception
                    End Try
                Else
                    MsgBox("You have already added this account. Duplicated account was not added!", , "Duplicate Found")
                End If


            End If
        End If
    End Sub

    Private Sub txtMmessages_HotKey(ByVal Sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtMmessage.KeyDown, MyBase.KeyDown
        If e.KeyValue = Keys.Enter Then
            If txtMmessage.Text = "" Or txtMsubject.Text = "" Then
                MsgBox("You are missing information could not complete the adding of this email.", MsgBoxStyle.Exclamation, "ERROR")
            Else
                lbMessages.Items.Add(txtMsubject.Text &amp; "=+=" &amp; txtMmessage.Text)
                Try
                    Dim i = 0
                    Do Until i = -1
                        If i = 0 Then
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", lbMessages.Items.Item(0))
                        Else
                            Dim messages_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;messages")
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", messages_text &amp; vbCrLf &amp; lbMessages.Items.Item(i))
                        End If
                        i += 1
                    Loop
                Catch ex As Exception
                End Try
            End If
        End If
    End Sub

    Private Sub txtMsubject_HotKey(ByVal Sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtMsubject.KeyDown, MyBase.KeyDown
        If e.KeyValue = Keys.Enter Then
            If txtMmessage.Text = "" Or txtMsubject.Text = "" Then
                MsgBox("You are missing information could not complete the adding of this email.", MsgBoxStyle.Exclamation, "ERROR")
            Else
                lbMessages.Items.Add(txtMsubject.Text &amp; "=+=" &amp; txtMmessage.Text)
                Try
                    Dim i = 0
                    Do Until i = -1
                        If i = 0 Then
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", lbMessages.Items.Item(0))
                        Else
                            Dim messages_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;messages")
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", messages_text &amp; vbCrLf &amp; lbMessages.Items.Item(i))
                        End If
                        i += 1
                    Loop
                Catch ex As Exception
                End Try
            End If
        End If
    End Sub
#End Region



    Private Sub txtCPmsgpersec_TextChanged(sender As Object, e As EventArgs) Handles txtCPmsgpersec.TextChanged
        txtCPmsgpersec.ReadOnly = True
        Try
            If txtCPmsgpersec.Text &lt;= 0 Then
                txtCPmsgpersec.Text = 0.01
            ElseIf txtCPmsgpersec.Text &gt;= 11 Then
                txtCPmsgpersec.Text = 10
            End If
        Catch ex As Exception

        End Try
        

        Select Case txtCPmsgpersec.Text
            Case 0.01
                tmrAction.Interval = 2000
                lblDelay.Text = 2000
            Case 0.75
                tmrAction.Interval = 1750
                lblDelay.Text = 1750
            Case 0.5
                tmrAction.Interval = 1500
                lblDelay.Text = 1500
            Case 0.25
                tmrAction.Interval = 1250
                lblDelay.Text = 1250
            Case 1
                tmrAction.Interval = 1000
                lblDelay.Text = 1000
            Case 2
                tmrAction.Interval = 500
                lblDelay.Text = 500
            Case 3
                tmrAction.Interval = 333
                lblDelay.Text = 333
            Case 4
                tmrAction.Interval = 250
                lblDelay.Text = 250
            Case 5
                tmrAction.Interval = 200
                lblDelay.Text = 200
            Case 6
                tmrAction.Interval = 167
                lblDelay.Text = 167
            Case 7
                tmrAction.Interval = 142
                lblDelay.Text = 142
            Case 8
                tmrAction.Interval = 125
                lblDelay.Text = 125
            Case 9
                tmrAction.Interval = 112
                lblDelay.Text = 122
            Case 10
                tmrAction.Interval = 100
                lblDelay.Text = 100
            Case Else
                tmrAction.Interval = 100
                lblDelay.Text = 100

        End Select


    End Sub

    Private Sub txtCPmsgtosend_TextChanged(sender As Object, e As EventArgs) Handles txtCPmsgtosend.TextChanged
        Dim checkNumber As Integer
        If Integer.TryParse(txtCPmsgtosend.Text, checkNumber) = False Then
            txtCPmsgtosend.Text = 0
        Else
            If txtCPmsgtosend.Text &lt;= -1 Then
                txtCPmsgtosend.Text = 0
            End If
        End If

    End Sub

    Private Sub Button2_Click(sender As Object, e As EventArgs) Handles btnCPmsgpersecondUP.Click
        If txtCPmsgpersec.Text &gt;= 0 Or txtCPmsgpersec.Text &lt; 1 Then
            If txtCPmsgpersec.Text = 0.01 Then
                txtCPmsgpersec.Text += 0.24
            Else
                If Not txtCPmsgpersec.Text &gt; 0.99 Then
                    txtCPmsgpersec.Text += 0.25
                Else
                    txtCPmsgpersec.Text += 1
                End If

            End If
        Else

        End If

    End Sub

    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles btnCPmsgpersecondDOWN.Click
        If txtCPmsgpersec.Text &lt;= 1 Then
            txtCPmsgpersec.Text -= 0.25
        Else
            txtCPmsgpersec.Text -= 1
        End If
    End Sub

    Private Sub btnCPmsgtosendUP_Click(sender As Object, e As EventArgs) Handles btnCPmsgtosendUP.Click
        txtCPmsgtosend.Text += 1
    End Sub

    Private Sub btnCPmsgtosendDOWN_Click(sender As Object, e As EventArgs) Handles btnCPmsgtosendDOWN.Click
        txtCPmsgtosend.Text -= 1
    End Sub

    Private Sub tmrAction_Tick(sender As Object, e As EventArgs) Handles tmrAction.Tick
        Dim to_send As Integer = txtCPmsgtosend.Text
        Dim sent As Integer = lblSent.Text
        If to_send &lt;= sent Then
            tmrAction.Enabled = False
            MsgBox("Mail Spam Completed! Sent - " &amp; lblSent.Text &amp; " To Send - " &amp; txtCPmsgtosend.Text, , "Finished")
        Else
            Dim YE() = Split(lbYE.Items.Item(0), ";")
            Dim M() = Split(lbMessages.Items.Item(0), "=+=")
            Dim subject = M(0)
            Dim Message = M(1)
            If CheckBox1.CheckState = CheckState.Checked Then
                Randomize()
                Dim rand As New Random
                Dim intLowNumber = "1000"
                Dim intUpperNumber = "9999"
                subject = rand.Next(intLowNumber, intUpperNumber + 1) &amp; rand.Next(intLowNumber, intUpperNumber + 1) &amp; rand.Next(intLowNumber, intUpperNumber + 1)
                Message = rand.Next(intLowNumber, intUpperNumber + 1) &amp; rand.Next(intLowNumber, intUpperNumber + 1) &amp; rand.Next(intLowNumber, intUpperNumber + 1)

            End If
            System.IO.File.WriteAllText(AppPath &amp; "&#92;info.txt",
                                        "Email To=" &amp; lbEmailList.Items.Item(0) &amp; vbCrLf &amp; _
                                        "Email Server=" &amp; YE(0) &amp; vbCrLf &amp; _
                                        "Email From=random@gmail.com" &amp; vbCrLf &amp; _
                                        "Account=" &amp; YE(2) &amp; vbCrLf &amp; _
                                        "Passowrd=" &amp; YE(3) &amp; vbCrLf &amp; _
                                        "Subject=" &amp; subject &amp; vbCrLf &amp; _
                                        "Message=" &amp; Message &amp; vbCrLf &amp; _
                                        "Port=" &amp; YE(1) &amp; vbCrLf)
            lbEmailList.Items.Add(lbEmailList.Items.Item(0))
            lbYE.Items.Add(lbYE.Items.Item(0))
            lbMessages.Items.Add(lbMessages.Items.Item(0))
            lbYE.Items.RemoveAt(0)
            lbMessages.Items.RemoveAt(0)
            lbEmailList.Items.RemoveAt(0)
            Process.Start(AppPath &amp; "&#92;sender.exe")
        End If





    End Sub

    Private Sub btnStart_Click(sender As Object, e As EventArgs) Handles btnStart.Click
        lblSent.Text = 0
        tmrAction.Enabled = True
        btnStart.Enabled = False
        btnStop.Enabled = True
    End Sub

    Private Sub btnStop_Click(sender As Object, e As EventArgs) Handles btnStop.Click
        tmrAction.Enabled = False
        btnStart.Enabled = True
        btnStop.Enabled = False
    End Sub

End Class</code></div></div><br />
<br />
<span style="font-weight: bold;" class="mycode_b">send.exe - Source</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>Imports System.Net.Mail
Public Class Form1
    Dim AppPath As String = New System.IO.FileInfo(Application.ExecutablePath).DirectoryName
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
        Try
            Dim file_count = System.IO.File.ReadAllText(AppPath &amp; "&#92;count") + 1
            If file_count &gt; 3 Then
                file_count = 0
                System.IO.File.WriteAllText(AppPath &amp; "&#92;count", file_count)
            Else
                System.IO.File.WriteAllText(AppPath &amp; "&#92;count", file_count)
            End If

            Try
                Dim info = System.IO.File.ReadAllText(AppPath &amp; "&#92;info.txt")
                Dim info_step_1() = Split(info, vbCrLf)
                Dim emailto() = Split(info_step_1(0), "=")
                Dim server() = Split(info_step_1(1), "=")
                Dim from() = Split(info_step_1(2), "=")
                Dim account() = Split(info_step_1(3), "=")
                Dim password() = Split(info_step_1(4), "=")
                Dim subject() = Split(info_step_1(5), "=")
                Dim message() = Split(info_step_1(6), "=")
                Dim port() = Split(info_step_1(7), "=")
                Try
                    Dim mail As New MailMessage
                    mail.Subject = subject(1)
                    mail.To.Add(emailto(1))
                    mail.From = New MailAddress(from(1))
                    mail.Body = message(1)
                    Dim SMTP As New SmtpClient(server(1))
                    SMTP.EnableSsl = True
                    SMTP.Credentials = New System.Net.NetworkCredential(account(1), password(1))
                    SMTP.Port = port(1)
                    SMTP.Send(mail)
                    Label1.Text = "Sent"
                    Dim h = DateTime.Now.Hour
                    Dim m = DateTime.Now.Minute
                    Dim s = DateTime.Now.Second
                    Select Case file_count
                        Case 0
                            If System.IO.File.Exists(AppPath &amp; "&#92;0.txt") Then
                                Dim ol_file = System.IO.File.ReadAllText(AppPath &amp; "&#92;0.txt")
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;0.txt", "[" &amp; h &amp; ":" &amp; m &amp; "." &amp; s &amp; "] - Email Sent To: " &amp; emailto(1) &amp; vbCrLf &amp; ol_file)
                            Else
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;0.txt", "[" &amp; h &amp; ":" &amp; m &amp; "." &amp; s &amp; "] - Email Sent To: " &amp; emailto(1))
                            End If
                        Case 1
                            If System.IO.File.Exists(AppPath &amp; "&#92;1.txt") Then
                                Dim ol_file = System.IO.File.ReadAllText(AppPath &amp; "&#92;1.txt")
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;1.txt", "[" &amp; h &amp; ":" &amp; m &amp; "." &amp; s &amp; "] - Email Sent To: " &amp; emailto(1) &amp; vbCrLf &amp; ol_file)
                            Else
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;1.txt", "[" &amp; h &amp; ":" &amp; m &amp; "." &amp; s &amp; "] - Email Sent To: " &amp; emailto(1))
                            End If
                        Case 2
                            If System.IO.File.Exists(AppPath &amp; "&#92;2.txt") Then
                                Dim ol_file = System.IO.File.ReadAllText(AppPath &amp; "&#92;2.txt")
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;2.txt", "[" &amp; h &amp; ":" &amp; m &amp; "." &amp; s &amp; "] - Email Sent To: " &amp; emailto(1) &amp; vbCrLf &amp; ol_file)
                            Else
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;2.txt", "[" &amp; h &amp; ":" &amp; m &amp; "." &amp; s &amp; "] - Email Sent To: " &amp; emailto(1))
                            End If
                        Case 3
                            If System.IO.File.Exists(AppPath &amp; "&#92;3.txt") Then
                                Dim ol_file = System.IO.File.ReadAllText(AppPath &amp; "&#92;3.txt")
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;3.txt", "[" &amp; h &amp; ":" &amp; m &amp; "." &amp; s &amp; "] - Email Sent To: " &amp; emailto(1) &amp; vbCrLf &amp; ol_file)
                            Else
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;3.txt", "[" &amp; h &amp; ":" &amp; m &amp; "." &amp; s &amp; "] - Email Sent To: " &amp; emailto(1))
                            End If
                    End Select
                Catch ex As Exception
                    Label1.Text = "Failed"
                End Try
            Catch ex As Exception
                MsgBox("File failed to load")
            End Try
        Catch ex As Exception

        End Try
    
        Me.Close()
    End Sub
End Class</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Server Stat Collector vPreRelease]]></title>
			<link>https://war-lords.net/forum/thread-14618.html</link>
			<pubDate>Wed, 08 Oct 2014 19:53:48 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=350">PaSS</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-14618.html</guid>
			<description><![CDATA[<span style="font-weight: bold;" class="mycode_b">About</span>: The program will gather server counts from all servers you add to a list. This will then update a database (currently only updates a text file). Which will then be depicted by a php website of which you can that incorp in your website to read through the logs.<br />
<span style="font-weight: bold;" class="mycode_b">Comment</span>: I have been working on this program as a personal program but decided to code it so its more custom and can be used by any one. How ever the program is a rather long ways from being released publicly. This program is one of the most interesting programs I have developed and is using all the skills I have and enjoy using.<br />
<span style="font-weight: bold;" class="mycode_b">Current Games Supported</span>:<br />
- Minecraft<br />
(I plan on adding G-Mod, TF2, CSS, and More!)<br />
<span style="font-weight: bold;" class="mycode_b">Screen Shots</span>:<br />
These are coming once I getting a working version of this for public use. As I have not got it to the point of where a public version is fully working.<br />
<span style="font-weight: bold;" class="mycode_b">Example</span>:<br />
<a href="http://iceycraft.org/data" target="_blank" rel="noopener" class="mycode_url">http://iceycraft.org/data</a><br />
This is a example of what it will look like once it give a output.<br />
<span style="font-weight: bold;" class="mycode_b">Expected Time of Relase</span>: Unknown...<br />
<span style="font-weight: bold;" class="mycode_b">Current Requirements</span>: WinSCP (I plan on making where that is not required and will require a mysql database. How ever I may make it where it can use both!)<br />
PS<br />
This is a actual program. This program is actually working. How ever it is not modified for public use.<br />
Screen Shot<br />
<img src="http://s30.postimg.org/lytz4grgx/statcollector.png" loading="lazy"  alt="[Image: statcollector.png]" class="mycode_img" />]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;" class="mycode_b">About</span>: The program will gather server counts from all servers you add to a list. This will then update a database (currently only updates a text file). Which will then be depicted by a php website of which you can that incorp in your website to read through the logs.<br />
<span style="font-weight: bold;" class="mycode_b">Comment</span>: I have been working on this program as a personal program but decided to code it so its more custom and can be used by any one. How ever the program is a rather long ways from being released publicly. This program is one of the most interesting programs I have developed and is using all the skills I have and enjoy using.<br />
<span style="font-weight: bold;" class="mycode_b">Current Games Supported</span>:<br />
- Minecraft<br />
(I plan on adding G-Mod, TF2, CSS, and More!)<br />
<span style="font-weight: bold;" class="mycode_b">Screen Shots</span>:<br />
These are coming once I getting a working version of this for public use. As I have not got it to the point of where a public version is fully working.<br />
<span style="font-weight: bold;" class="mycode_b">Example</span>:<br />
<a href="http://iceycraft.org/data" target="_blank" rel="noopener" class="mycode_url">http://iceycraft.org/data</a><br />
This is a example of what it will look like once it give a output.<br />
<span style="font-weight: bold;" class="mycode_b">Expected Time of Relase</span>: Unknown...<br />
<span style="font-weight: bold;" class="mycode_b">Current Requirements</span>: WinSCP (I plan on making where that is not required and will require a mysql database. How ever I may make it where it can use both!)<br />
PS<br />
This is a actual program. This program is actually working. How ever it is not modified for public use.<br />
Screen Shot<br />
<img src="http://s30.postimg.org/lytz4grgx/statcollector.png" loading="lazy"  alt="[Image: statcollector.png]" class="mycode_img" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Toolbox Ip dos BETA]]></title>
			<link>https://war-lords.net/forum/thread-14346.html</link>
			<pubDate>Sat, 12 Jul 2014 18:46:46 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=1">Canister</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-14346.html</guid>
			<description><![CDATA[This is a beta release of a project I worked on but forgot about. I'm not sure where I left off and need beta testers to check this out and post any problems here.<br />
<br />
Happy hunting.<br />
<br />
<img src="http://i.imgur.com/BdUGuU7.png?1" loading="lazy"  alt="[Image: BdUGuU7.png?1]" class="mycode_img" /><br />
<br />
<img src="https://war-lords.net/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
&nbsp;&nbsp;<a href="attachment.php?aid=2493" target="_blank" title="">IP DOS BETA.zip</a> (Size: 185.41 KB / Downloads: 7)
]]></description>
			<content:encoded><![CDATA[This is a beta release of a project I worked on but forgot about. I'm not sure where I left off and need beta testers to check this out and post any problems here.<br />
<br />
Happy hunting.<br />
<br />
<img src="http://i.imgur.com/BdUGuU7.png?1" loading="lazy"  alt="[Image: BdUGuU7.png?1]" class="mycode_img" /><br />
<br />
<img src="https://war-lords.net/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
&nbsp;&nbsp;<a href="attachment.php?aid=2493" target="_blank" title="">IP DOS BETA.zip</a> (Size: 185.41 KB / Downloads: 7)
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Bind Manager]]></title>
			<link>https://war-lords.net/forum/thread-14063.html</link>
			<pubDate>Fri, 09 May 2014 03:13:07 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=350">PaSS</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-14063.html</guid>
			<description><![CDATA[<span style="text-decoration: underline;" class="mycode_u"><span style="font-weight: bold;" class="mycode_b"><span style="font-size: 7pt;" class="mycode_size"><span style="font-family: Arial;" class="mycode_font"><div style="text-align: center;" class="mycode_align">Hey Guys The Bind Manager v1.1.2 has arrived!!!!!</div></span></span></span></span><br />
<br />
[video=youtube]http://youtube.com/watch?v=6zC3covNlnU[/video]<br />
<br />
Download: <a href="https://www.mediafire.com/?c1hc0am1gce3ie8" target="_blank" rel="noopener" class="mycode_url">https://www.mediafire.com/?c1hc0am1gce3ie8</a><br />
Virus Scan: <a href="https://www.virustotal.com/en/file/f582e62f4dbbb8dfc7782748c5b73f86ce31a84f445e27435140e4ba54c7c4a7/analysis/1399604699/" target="_blank" rel="noopener" class="mycode_url">https://www.virustotal.com/en/file/f582e...399604699/</a><br />
<br />
<br />
Source Files - VB.NET - v1.0.3<br />
Download: <a href="https://www.mediafire.com/?y65kbszksxzy891" target="_blank" rel="noopener" class="mycode_url">https://www.mediafire.com/?y65kbszksxzy891</a><br />
<br />
Updates/Features List<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>v1.1.2 by: Agentsix1 5/8/2014
    - Fixed creating binds not triggering save as button to be available
    - Fixed Settings not saving updating prompt saving
v1.1.1 by: Agentsix1 5/8/2014
    - Added CSS Commands
v1.1 by: Agentsix1 5/8/2014
    - Added error protection when auto loading files on launch
    - Added folders and files generate on launch you no longer required to download all files
    - Added Model Command "equip_model Metro Cop"
    - Added Model Command "equip_model Banboard"
    - Added Model Command "equip_model Minecraft"
    - Added Model Command "equip_model Neo Combine"
    - Added Model Command "equip_model Fearbine"
    - Added Model Command "equip_model Slimer"
    - Added Counter Strike Source Commands
    - Added Titles with in the command drop boxes
    - Changed the lay out of the settings
    - Added 2 drop boxes to Settings (Currently Not Used)
    - Changed Settings files for a later update (New settings currently not used)
    - Added Settings grabber
    - Added Settings updater to update old settings file to new one
    - Added Windows XP Support
    - Added Settings File and Folder Missing protection
    - Added file creation if files are missing upon request
v1.0.4 by: Agentsix1 5/7/2014
    - Fixed program not loading off a tiny bug. (Reported By: MCgoos09) - Major Bug Fix
v1.0.3 by: Agentsix1 5/6/2014
    - Fixed when canceling Generation
    - Fixed KP_DOWNARROW (Again)
    - Fixed Error upon getting script when outputting to text
    - Fixed Having multiple scripts when outputting script
    - Enabled File Merger To Be Loaded On Launch
    - Fixed a message box on file merge
    - Changed settings actually become effective after saving them
v1.0.2 by: Agentsix1 5/6/2014
    - Fixed File Merger Edit Button
    - Fixed Basic Script Generation (again)
v1.0.1 by: Agentsix1 5/6/2014
    - Fixed Cancel Button On Settings
    - Added Clear to Non Key Bind List
    - Fixed Generation for basic scripts
    - Added KP_DOWNARROW
    - Removed Duplicated DOWNARROW
v1.0 By: Agentsix1 5/6/2014
    - Basic Key Bind Creation
    - Basic Non Key Bind Creation
    - Easy Management of Binds
    - Over 300 Commands +Custom Commands
    - Able To Modify Current cfg Files
    - Able To Create New cfg Files
    - Auto Load Your Faviorate Bind File
    - Auto Open Basic Script Creation or Settings
    - Links Redirecting Back To Lifepunch
    - Overwrite Protection When Saving Files
    - Ability To Prompt Before Saving Any Files
    - Simple Script Creation For: Trails, Models, Chat Tags, or Hats
    - Including Most All Basic Commands For Lifepunch Including: Weapons, Trails, Models, Chat Tags, Hats, Ingame Commands, etc.
    - No Internet Required Unless Using Check For Updates
    - Browse For Bind Files With Ease
        - The ability to merge 2 bind files into 1
 
Expect More Features in Version 2 and 3!!!!</code></div></div><br />
Older Versions<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>v1.1.1: Download: https://www.mediafire.com/?w7udync3aon3uyl
v1.1.1 Virus Scan: https://www.virustotal.com/en/file/3854912e38624632f8ff6bc208fb208336000473eee8ead9712434089fc3f2aa/analysis/1399603265/
v1.1 Download: https://www.mediafire.com/?00f95g3l8f6c7t2
v1.1 Virus Scan: https://www.virustotal.com/en/file/636f6e74e384682a4568a7a9e948b87bcd71a251c1e5b510e6c9274ff3034e09/analysis/1399602298/
v1.0.4 Download: https://www.mediafire.com/?npef2f1bzwtoczp
v1.0.4 Virus Scan: https://www.virustotal.com/en/file/a6e97a9594c0d998f9c44eed4aff7872b439a9346de555a221e95d4cd3e52097/analysis/1399504137/
v1.0.3 Download: https://www.mediafire.com/?zs9g3mdq8kcwuni
v1.0.3 Virus Scan: https://www.virustotal.com/en/file/de3e0b33a77543fac98ff2b6ba5eb41f95e827528b0f568d3ee2fffd9cba8edf/analysis/1399428993/
v1.0.2 Download: https://www.mediafire.com/?86x3h17unl1134a
v1.0.2 Virus Scan: https://www.virustotal.com/en/file/99f34e58427bd380d68861000c201b5bd5920a803777aa07caa7e2706e371693/analysis/1399425361/
v1.0.1 Download: https://www.mediafire.com/?c7ltq90ufhlptf8
v1.0.1 Virus Scan: https://www.virustotal.com/en/file/7df0c6a8e1a6a64c46b4a8c148ba9fd4a92bab0ca699abc9a74f39794426d6fc/analysis/1399425441/
v1.0 Download: https://www.mediafire.com/?jb9p5tuqblbf15h
v1.0 Virus Scan: https://www.virustotal.com/en/file/17da7bb41e7352c6472aa0f13b7215e5ebff7588fef142f825d088f6e32c7b1c/analysis/1399421524/</code></div></div><br /><br /><div style="text-align:right;border-top: 1px #bababa solid">Double post</div><br />Alright guys i have actually posted the download for this give it a go and let me know what you think. I still have a lot of work to go into it for css and other games its mainly for garry's mod atm but i will have larger lists for css soon <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />]]></description>
			<content:encoded><![CDATA[<span style="text-decoration: underline;" class="mycode_u"><span style="font-weight: bold;" class="mycode_b"><span style="font-size: 7pt;" class="mycode_size"><span style="font-family: Arial;" class="mycode_font"><div style="text-align: center;" class="mycode_align">Hey Guys The Bind Manager v1.1.2 has arrived!!!!!</div></span></span></span></span><br />
<br />
[video=youtube]http://youtube.com/watch?v=6zC3covNlnU[/video]<br />
<br />
Download: <a href="https://www.mediafire.com/?c1hc0am1gce3ie8" target="_blank" rel="noopener" class="mycode_url">https://www.mediafire.com/?c1hc0am1gce3ie8</a><br />
Virus Scan: <a href="https://www.virustotal.com/en/file/f582e62f4dbbb8dfc7782748c5b73f86ce31a84f445e27435140e4ba54c7c4a7/analysis/1399604699/" target="_blank" rel="noopener" class="mycode_url">https://www.virustotal.com/en/file/f582e...399604699/</a><br />
<br />
<br />
Source Files - VB.NET - v1.0.3<br />
Download: <a href="https://www.mediafire.com/?y65kbszksxzy891" target="_blank" rel="noopener" class="mycode_url">https://www.mediafire.com/?y65kbszksxzy891</a><br />
<br />
Updates/Features List<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>v1.1.2 by: Agentsix1 5/8/2014
    - Fixed creating binds not triggering save as button to be available
    - Fixed Settings not saving updating prompt saving
v1.1.1 by: Agentsix1 5/8/2014
    - Added CSS Commands
v1.1 by: Agentsix1 5/8/2014
    - Added error protection when auto loading files on launch
    - Added folders and files generate on launch you no longer required to download all files
    - Added Model Command "equip_model Metro Cop"
    - Added Model Command "equip_model Banboard"
    - Added Model Command "equip_model Minecraft"
    - Added Model Command "equip_model Neo Combine"
    - Added Model Command "equip_model Fearbine"
    - Added Model Command "equip_model Slimer"
    - Added Counter Strike Source Commands
    - Added Titles with in the command drop boxes
    - Changed the lay out of the settings
    - Added 2 drop boxes to Settings (Currently Not Used)
    - Changed Settings files for a later update (New settings currently not used)
    - Added Settings grabber
    - Added Settings updater to update old settings file to new one
    - Added Windows XP Support
    - Added Settings File and Folder Missing protection
    - Added file creation if files are missing upon request
v1.0.4 by: Agentsix1 5/7/2014
    - Fixed program not loading off a tiny bug. (Reported By: MCgoos09) - Major Bug Fix
v1.0.3 by: Agentsix1 5/6/2014
    - Fixed when canceling Generation
    - Fixed KP_DOWNARROW (Again)
    - Fixed Error upon getting script when outputting to text
    - Fixed Having multiple scripts when outputting script
    - Enabled File Merger To Be Loaded On Launch
    - Fixed a message box on file merge
    - Changed settings actually become effective after saving them
v1.0.2 by: Agentsix1 5/6/2014
    - Fixed File Merger Edit Button
    - Fixed Basic Script Generation (again)
v1.0.1 by: Agentsix1 5/6/2014
    - Fixed Cancel Button On Settings
    - Added Clear to Non Key Bind List
    - Fixed Generation for basic scripts
    - Added KP_DOWNARROW
    - Removed Duplicated DOWNARROW
v1.0 By: Agentsix1 5/6/2014
    - Basic Key Bind Creation
    - Basic Non Key Bind Creation
    - Easy Management of Binds
    - Over 300 Commands +Custom Commands
    - Able To Modify Current cfg Files
    - Able To Create New cfg Files
    - Auto Load Your Faviorate Bind File
    - Auto Open Basic Script Creation or Settings
    - Links Redirecting Back To Lifepunch
    - Overwrite Protection When Saving Files
    - Ability To Prompt Before Saving Any Files
    - Simple Script Creation For: Trails, Models, Chat Tags, or Hats
    - Including Most All Basic Commands For Lifepunch Including: Weapons, Trails, Models, Chat Tags, Hats, Ingame Commands, etc.
    - No Internet Required Unless Using Check For Updates
    - Browse For Bind Files With Ease
        - The ability to merge 2 bind files into 1
 
Expect More Features in Version 2 and 3!!!!</code></div></div><br />
Older Versions<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>v1.1.1: Download: https://www.mediafire.com/?w7udync3aon3uyl
v1.1.1 Virus Scan: https://www.virustotal.com/en/file/3854912e38624632f8ff6bc208fb208336000473eee8ead9712434089fc3f2aa/analysis/1399603265/
v1.1 Download: https://www.mediafire.com/?00f95g3l8f6c7t2
v1.1 Virus Scan: https://www.virustotal.com/en/file/636f6e74e384682a4568a7a9e948b87bcd71a251c1e5b510e6c9274ff3034e09/analysis/1399602298/
v1.0.4 Download: https://www.mediafire.com/?npef2f1bzwtoczp
v1.0.4 Virus Scan: https://www.virustotal.com/en/file/a6e97a9594c0d998f9c44eed4aff7872b439a9346de555a221e95d4cd3e52097/analysis/1399504137/
v1.0.3 Download: https://www.mediafire.com/?zs9g3mdq8kcwuni
v1.0.3 Virus Scan: https://www.virustotal.com/en/file/de3e0b33a77543fac98ff2b6ba5eb41f95e827528b0f568d3ee2fffd9cba8edf/analysis/1399428993/
v1.0.2 Download: https://www.mediafire.com/?86x3h17unl1134a
v1.0.2 Virus Scan: https://www.virustotal.com/en/file/99f34e58427bd380d68861000c201b5bd5920a803777aa07caa7e2706e371693/analysis/1399425361/
v1.0.1 Download: https://www.mediafire.com/?c7ltq90ufhlptf8
v1.0.1 Virus Scan: https://www.virustotal.com/en/file/7df0c6a8e1a6a64c46b4a8c148ba9fd4a92bab0ca699abc9a74f39794426d6fc/analysis/1399425441/
v1.0 Download: https://www.mediafire.com/?jb9p5tuqblbf15h
v1.0 Virus Scan: https://www.virustotal.com/en/file/17da7bb41e7352c6472aa0f13b7215e5ebff7588fef142f825d088f6e32c7b1c/analysis/1399421524/</code></div></div><br /><br /><div style="text-align:right;border-top: 1px #bababa solid">Double post</div><br />Alright guys i have actually posted the download for this give it a go and let me know what you think. I still have a lot of work to go into it for css and other games its mainly for garry's mod atm but i will have larger lists for css soon <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Spammer - Minecraft/Skype/Steam/Shout Boxes/etc...]]></title>
			<link>https://war-lords.net/forum/thread-12484.html</link>
			<pubDate>Mon, 03 Feb 2014 07:59:02 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=350">PaSS</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-12484.html</guid>
			<description><![CDATA[So I have been working on this program sense I basically started programming. I have come to the point where I can not simply add any more features to this program with my coding skills. So I have decided to release this to the public.<br />
<br />
Instructions on how to use:<br />
1) Set messages and settings with in programs for what you are gonna be doing<br />
2) Open what you want to spam minecraft skype steam what ever. (for this to work the program must be in focus at all times)<br />
3) Press the Home Key on your keyboard this will start the spamming process<br />
4) To stop simply press the End Key<br />
<br />
Features :<br />
Unlimited Messages to spam with<br />
Load spams from file<br />
Edit spams that have already been added<br />
Adding and Removing of single lines of spams<br />
Clear List for clearing the entire list of spams<br />
Prefix's - Add a prefix that will never change for each spam message<br />
Suffix's - Add a suffix that will never change for each spam message<br />
Spam Counter Prefix/Suffix - This will send the spam count either in the prefix or suffix of the spam message<br />
Rand Spam with custom Length - This will send a spam message that is completely randomized with capitals lowercase and numbers<br />
Customize Messages To Send - Set the amount of message to send to a user or click Infinite Messages to set no limit<br />
Automatic Settings - This will give you the ability to set default settings for each spam type (Minecraft, Skype, Steam, SMF Shoutbox)<br />
<br />
Hot Keys:<br />
Start Spam - Home Key<br />
Stop Spam - End Key<br />
Toggle Prefix - PageUp<br />
Toggle Suffix - PageDown<br />
Toggle Random Spam - Insert<br />
<br />
Screen Shot<br />
<img src="http://s14.postimg.org/bwr3811g1/jsspammerfinal.png" loading="lazy"  alt="[Image: jsspammerfinal.png]" class="mycode_img" /><br />
<br />
Download Link - <a href="https://www.mediafire.com/?77ith1la3zhbeii" target="_blank" rel="noopener" class="mycode_url">https://www.mediafire.com/?77ith1la3zhbeii</a><br />
<br />
Coded in VB.Net<br />
Source Download - <a href="https://www.mediafire.com/?vs4e2ib1jgtwzeb" target="_blank" rel="noopener" class="mycode_url">https://www.mediafire.com/?vs4e2ib1jgtwzeb</a><br /><br /><div style="text-align:right;border-top: 1px #bababa solid">Double post</div><br />Be sure to comment if you liked this program <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />]]></description>
			<content:encoded><![CDATA[So I have been working on this program sense I basically started programming. I have come to the point where I can not simply add any more features to this program with my coding skills. So I have decided to release this to the public.<br />
<br />
Instructions on how to use:<br />
1) Set messages and settings with in programs for what you are gonna be doing<br />
2) Open what you want to spam minecraft skype steam what ever. (for this to work the program must be in focus at all times)<br />
3) Press the Home Key on your keyboard this will start the spamming process<br />
4) To stop simply press the End Key<br />
<br />
Features :<br />
Unlimited Messages to spam with<br />
Load spams from file<br />
Edit spams that have already been added<br />
Adding and Removing of single lines of spams<br />
Clear List for clearing the entire list of spams<br />
Prefix's - Add a prefix that will never change for each spam message<br />
Suffix's - Add a suffix that will never change for each spam message<br />
Spam Counter Prefix/Suffix - This will send the spam count either in the prefix or suffix of the spam message<br />
Rand Spam with custom Length - This will send a spam message that is completely randomized with capitals lowercase and numbers<br />
Customize Messages To Send - Set the amount of message to send to a user or click Infinite Messages to set no limit<br />
Automatic Settings - This will give you the ability to set default settings for each spam type (Minecraft, Skype, Steam, SMF Shoutbox)<br />
<br />
Hot Keys:<br />
Start Spam - Home Key<br />
Stop Spam - End Key<br />
Toggle Prefix - PageUp<br />
Toggle Suffix - PageDown<br />
Toggle Random Spam - Insert<br />
<br />
Screen Shot<br />
<img src="http://s14.postimg.org/bwr3811g1/jsspammerfinal.png" loading="lazy"  alt="[Image: jsspammerfinal.png]" class="mycode_img" /><br />
<br />
Download Link - <a href="https://www.mediafire.com/?77ith1la3zhbeii" target="_blank" rel="noopener" class="mycode_url">https://www.mediafire.com/?77ith1la3zhbeii</a><br />
<br />
Coded in VB.Net<br />
Source Download - <a href="https://www.mediafire.com/?vs4e2ib1jgtwzeb" target="_blank" rel="noopener" class="mycode_url">https://www.mediafire.com/?vs4e2ib1jgtwzeb</a><br /><br /><div style="text-align:right;border-top: 1px #bababa solid">Double post</div><br />Be sure to comment if you liked this program <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Proxy Minecraft Launcher]]></title>
			<link>https://war-lords.net/forum/thread-10932.html</link>
			<pubDate>Wed, 19 Jun 2013 21:24:16 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=350">PaSS</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-10932.html</guid>
			<description><![CDATA[This is a cracked minecraft launcher that launches minecraft with a proxy :0<br />
 <br />
This requires socks proxys <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
 <br />
ENJOY<br />
 <br />
this also launches minecraft with out a proxy there is a check box for this<br />
<br />
<img src="https://war-lords.net/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
&nbsp;&nbsp;<a href="attachment.php?aid=2098" target="_blank" title="">Proxy Minecraft Launcher Working.zip</a> (Size: 11.1 KB / Downloads: 11)
]]></description>
			<content:encoded><![CDATA[This is a cracked minecraft launcher that launches minecraft with a proxy :0<br />
 <br />
This requires socks proxys <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
 <br />
ENJOY<br />
 <br />
this also launches minecraft with out a proxy there is a check box for this<br />
<br />
<img src="https://war-lords.net/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
&nbsp;&nbsp;<a href="attachment.php?aid=2098" target="_blank" title="">Proxy Minecraft Launcher Working.zip</a> (Size: 11.1 KB / Downloads: 11)
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Bad Ass Email Spammer]]></title>
			<link>https://war-lords.net/forum/thread-10656.html</link>
			<pubDate>Thu, 23 May 2013 07:07:25 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=350">PaSS</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-10656.html</guid>
			<description><![CDATA[So i got bored and asked a friend if he wanted me to update my email spammer.<br />
 <br />
He replied yes<br />
 <br />
SOOOOOOOOOOOOOOOOOO<br />
long story short.<br />
 <br />
I made this<br />
 <br />
Features<br />
Single Message Spams<br />
Multiple Message Spams<br />
Load From File Spams<br />
Load From File Email Accounts<br />
 <br />
Spam emails from multiple accounts with ease :0<br />
<br />
<img src="https://war-lords.net/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
&nbsp;&nbsp;<a href="attachment.php?aid=2042" target="_blank" title="">Email Spammer.zip</a> (Size: 13.21 KB / Downloads: 4)
]]></description>
			<content:encoded><![CDATA[So i got bored and asked a friend if he wanted me to update my email spammer.<br />
 <br />
He replied yes<br />
 <br />
SOOOOOOOOOOOOOOOOOO<br />
long story short.<br />
 <br />
I made this<br />
 <br />
Features<br />
Single Message Spams<br />
Multiple Message Spams<br />
Load From File Spams<br />
Load From File Email Accounts<br />
 <br />
Spam emails from multiple accounts with ease :0<br />
<br />
<img src="https://war-lords.net/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
&nbsp;&nbsp;<a href="attachment.php?aid=2042" target="_blank" title="">Email Spammer.zip</a> (Size: 13.21 KB / Downloads: 4)
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Battle Net Profile Pimper Recoded and Remade]]></title>
			<link>https://war-lords.net/forum/thread-10420.html</link>
			<pubDate>Tue, 30 Apr 2013 08:34:10 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=350">PaSS</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-10420.html</guid>
			<description><![CDATA[So I was reading on the forums through old posts. Some one replied to Kut-'s Program The Profile Pimper. I looked at it and was like meh thats easy. So sense he stopped coding his i remade it with a new look and code. I will admit its pretty ugly but its v1 and is going to updated for looks mainly. The main code should be fine other wise.<br />
 <br />
What Did I Add?<br />
- Online Profile Database (you can upload custom profiles and any one who uses the program can view them!<br />
- easy access to Default profiles<br />
- Got rid of all the fucking pop ups :|<br />
 <br />
Plans?<br />
- Make a nicer looking GUI<br />
 <br />
 <br />
I am taking suggestions for any one that wants to throw them my way!<br />
I will also be releasing the code once I finish the project <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />.<br />
 <br />
Download<br />
v1.0 - <a href="http://www.mediafire.com/?4ffok4y4dcpswcs" target="_blank" rel="noopener" class="mycode_url">http://www.mediafire.com/?4ffok4y4dcpswcs</a><br />
 <br />
Screen Shot<br />
<img src="http://www.mediafire.com/convkey/0c72/u49qvdd9zcku8hlfg.jpg" loading="lazy"  alt="[Image: u49qvdd9zcku8hlfg.jpg]" class="mycode_img" />]]></description>
			<content:encoded><![CDATA[So I was reading on the forums through old posts. Some one replied to Kut-'s Program The Profile Pimper. I looked at it and was like meh thats easy. So sense he stopped coding his i remade it with a new look and code. I will admit its pretty ugly but its v1 and is going to updated for looks mainly. The main code should be fine other wise.<br />
 <br />
What Did I Add?<br />
- Online Profile Database (you can upload custom profiles and any one who uses the program can view them!<br />
- easy access to Default profiles<br />
- Got rid of all the fucking pop ups :|<br />
 <br />
Plans?<br />
- Make a nicer looking GUI<br />
 <br />
 <br />
I am taking suggestions for any one that wants to throw them my way!<br />
I will also be releasing the code once I finish the project <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />.<br />
 <br />
Download<br />
v1.0 - <a href="http://www.mediafire.com/?4ffok4y4dcpswcs" target="_blank" rel="noopener" class="mycode_url">http://www.mediafire.com/?4ffok4y4dcpswcs</a><br />
 <br />
Screen Shot<br />
<img src="http://www.mediafire.com/convkey/0c72/u49qvdd9zcku8hlfg.jpg" loading="lazy"  alt="[Image: u49qvdd9zcku8hlfg.jpg]" class="mycode_img" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Email Spammer - Test Project - Open Source :)]]></title>
			<link>https://war-lords.net/forum/thread-10414.html</link>
			<pubDate>Mon, 29 Apr 2013 18:43:58 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=350">PaSS</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-10414.html</guid>
			<description><![CDATA[hey guys was making a youtube video and i made this i will post the video in a week or so of me coding this<br />
 <br />
--- Pastbin --- CODE<br />
<a href="http://pastebin.com/YQSCAKtg" target="_blank" rel="noopener" class="mycode_url">http://pastebin.com/YQSCAKtg</a><br />
 <br />
--- Mediafire --- Source Download<br />
<a href="http://www.mediafire.com/?d3ntfz7mpawb7t5" target="_blank" rel="noopener" class="mycode_url">http://www.mediafire.com/?d3ntfz7mpawb7t5</a><br />
 <br />
Features<br />
Allows you to spam countless messages.<br />
Allows you to enter your own smtp Server.<br />
Allows you to use Hotmail, Gmail, or Yahoo as a spam host <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />.<br />
 <br />
 <br />
Screen Shot<br />
<img src="http://www.mediafire.com/convkey/05ed/enu1c1zlluzoh8efg.jpg" loading="lazy"  alt="[Image: enu1c1zlluzoh8efg.jpg]" class="mycode_img" />]]></description>
			<content:encoded><![CDATA[hey guys was making a youtube video and i made this i will post the video in a week or so of me coding this<br />
 <br />
--- Pastbin --- CODE<br />
<a href="http://pastebin.com/YQSCAKtg" target="_blank" rel="noopener" class="mycode_url">http://pastebin.com/YQSCAKtg</a><br />
 <br />
--- Mediafire --- Source Download<br />
<a href="http://www.mediafire.com/?d3ntfz7mpawb7t5" target="_blank" rel="noopener" class="mycode_url">http://www.mediafire.com/?d3ntfz7mpawb7t5</a><br />
 <br />
Features<br />
Allows you to spam countless messages.<br />
Allows you to enter your own smtp Server.<br />
Allows you to use Hotmail, Gmail, or Yahoo as a spam host <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />.<br />
 <br />
 <br />
Screen Shot<br />
<img src="http://www.mediafire.com/convkey/05ed/enu1c1zlluzoh8efg.jpg" loading="lazy"  alt="[Image: enu1c1zlluzoh8efg.jpg]" class="mycode_img" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Minecraft Adventure Map, built by hand.]]></title>
			<link>https://war-lords.net/forum/thread-10380.html</link>
			<pubDate>Wed, 24 Apr 2013 13:05:40 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=11307">Gonffs</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-10380.html</guid>
			<description><![CDATA[Working on a handmade adventure map thought i'd shar some pictures. Its a flat world which means any ground above the bottem ground is placed by me, as well as trees grass and everything. <br />
 <br />
 <br />
 <br />
 <br />
 <br />

<br />
<img src="https://war-lords.net/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=1877" target="_blank" title="">2013-04-24_07.54.56.png</a> (Size: 381.8 KB / Downloads: 0)

<br />
<img src="https://war-lords.net/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=1878" target="_blank" title="">2013-04-24_07.54.39.png</a> (Size: 339.04 KB / Downloads: 0)

<br />
<img src="https://war-lords.net/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=1879" target="_blank" title="">2013-04-24_07.55.20.png</a> (Size: 424.32 KB / Downloads: 0)

<br />
<img src="https://war-lords.net/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=1880" target="_blank" title="">2013-04-24_07.55.54.png</a> (Size: 427.97 KB / Downloads: 0)
]]></description>
			<content:encoded><![CDATA[Working on a handmade adventure map thought i'd shar some pictures. Its a flat world which means any ground above the bottem ground is placed by me, as well as trees grass and everything. <br />
 <br />
 <br />
 <br />
 <br />
 <br />

<br />
<img src="https://war-lords.net/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=1877" target="_blank" title="">2013-04-24_07.54.56.png</a> (Size: 381.8 KB / Downloads: 0)

<br />
<img src="https://war-lords.net/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=1878" target="_blank" title="">2013-04-24_07.54.39.png</a> (Size: 339.04 KB / Downloads: 0)

<br />
<img src="https://war-lords.net/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=1879" target="_blank" title="">2013-04-24_07.55.20.png</a> (Size: 424.32 KB / Downloads: 0)

<br />
<img src="https://war-lords.net/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=1880" target="_blank" title="">2013-04-24_07.55.54.png</a> (Size: 427.97 KB / Downloads: 0)
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Instant Messenger]]></title>
			<link>https://war-lords.net/forum/thread-10299.html</link>
			<pubDate>Mon, 15 Apr 2013 04:24:58 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=350">PaSS</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-10299.html</guid>
			<description><![CDATA[Meh i have made countless worthless programs so i thought i would make another <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
 <br />
this program should be coming out soon once i get done coding it and adding all the features i want to add <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
 <br />
here is a video of me showing it off from what i have done atm <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
 <br />
 <br />
[video=youtube]http://youtube.com/watch?v=ciDp4yuz-3U[/video]]]></description>
			<content:encoded><![CDATA[Meh i have made countless worthless programs so i thought i would make another <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
 <br />
this program should be coming out soon once i get done coding it and adding all the features i want to add <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
 <br />
here is a video of me showing it off from what i have done atm <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
 <br />
 <br />
[video=youtube]http://youtube.com/watch?v=ciDp4yuz-3U[/video]]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Starcraft Hack Loader v1.3]]></title>
			<link>https://war-lords.net/forum/thread-8500.html</link>
			<pubDate>Thu, 23 Aug 2012 20:32:15 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=350">PaSS</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-8500.html</guid>
			<description><![CDATA[This program loads your hacks for Starcraft With ease.<br />
 <br />
Thank you, Alicia Melchiott for bringing a error to my attention,<br />
 <br />
I have done a over haul to the program hope you enjoy <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
 <br />
 <br />
 <br />
Updates<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>War Lords Hack Loader v1.3 Updates - 8/23/2012
----------------------------------------------------------------------------------------
- Changed the way Logs are saved
- Changed the way hacks are loaded
- Changed the way Clients are loaded
- Over Hauled The Gui
- Completed The Log Viewer
- Changed Up Colors
- Added Remove Button From Hacks
- Thank you Alicia Melchiott For Finding Errors
----------------------------------------------------------------------------------------
 
War Lords Hack Loader v1.1 Updates - 1/11/2011
----------------------------------------------------------------------------------------
- Changed Location of Logs to &#92;Logs&#92;
    - Logs Are Labeled  By Date
- Added Check All Button
- Added Updates Link To Look At Updates In Program
- Added Error Protection To Error 53 - No File Found
- Added An Idle Option + Delay Timer + On/Off Switch
- Fixed Check Problem
- Added Options Form
- Added Communication Between Forms
- Got rid of a lot of extra codes that werent needed
- Loaded Every Thing In Settings that you can think of
- Has a clock to keep track of that all import time
- Locked The Text Boxes
- Logs Every Thing You Do
- Mid Process Removed Load Settings Message Box
- Made it Color Full Black White Was Boring
- Idle Message Status Is Accurate
- Moved Help and About To File Tab
- Short Cuts Added List Below
    - Load Settings = Ctrl + L
    - Save Settings = Ctrl + S
    - Help        = Ctrl + H
    - About    = Ctrl + A
    - Exit        = Ctrl + E
- Fixed Tab Index
- Log Viewer (Beta - Has Minor Errors But Usable)
----------------------------------------------------------------------------------------
 
Copyright @ 8/23/2012 | Written By : PaSS @ War-Lords.net
Thank you Alicia Melchiott For Finding Errors And Coming To Me To Fix Errors :)
Check Out http://www.war-lords.net/ Today
My Blog : http://jsdomain.zzl.org/
My Other Projects: http://jsdomain.zzl.org/projects.html
Have Any Problems Message Me At War-Lords.net
Or
Email Me At : Agentsix1@yahoo.com</code></div></div> <br />
Screen Shot<br />
 <br />
<img src="http://clients.war-lords.net/imghost/images/mjgb5xykgqrg96lfm4or.png" loading="lazy"  alt="[Image: mjgb5xykgqrg96lfm4or.png]" class="mycode_img" /><br />
 <br />
This may have a few errors if so please report them thank you<br />
 <br />
Download :<a href="http://www.mediafire.com/?cl1qjqw7drws884" target="_blank" rel="noopener" class="mycode_url">http://www.mediafire.com/?cl1qjqw7drws884</a><br />
 <br />
Comes with These Hacks<br />
- Drop Hack Protection<br />
- Drop Hack<br />
- Oblivion<br />
- Astat Flood Protection<br />
- Chaoslauncher<br />
- Game List Cleaner (gets rid of games that have lat)<br />
- Blacklist<br />
- Low Lat<br />
- Mineral Hack (doesnt work)<br />
- wDetector<br />
- Astat Flooder]]></description>
			<content:encoded><![CDATA[This program loads your hacks for Starcraft With ease.<br />
 <br />
Thank you, Alicia Melchiott for bringing a error to my attention,<br />
 <br />
I have done a over haul to the program hope you enjoy <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
 <br />
 <br />
 <br />
Updates<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>War Lords Hack Loader v1.3 Updates - 8/23/2012
----------------------------------------------------------------------------------------
- Changed the way Logs are saved
- Changed the way hacks are loaded
- Changed the way Clients are loaded
- Over Hauled The Gui
- Completed The Log Viewer
- Changed Up Colors
- Added Remove Button From Hacks
- Thank you Alicia Melchiott For Finding Errors
----------------------------------------------------------------------------------------
 
War Lords Hack Loader v1.1 Updates - 1/11/2011
----------------------------------------------------------------------------------------
- Changed Location of Logs to &#92;Logs&#92;
    - Logs Are Labeled  By Date
- Added Check All Button
- Added Updates Link To Look At Updates In Program
- Added Error Protection To Error 53 - No File Found
- Added An Idle Option + Delay Timer + On/Off Switch
- Fixed Check Problem
- Added Options Form
- Added Communication Between Forms
- Got rid of a lot of extra codes that werent needed
- Loaded Every Thing In Settings that you can think of
- Has a clock to keep track of that all import time
- Locked The Text Boxes
- Logs Every Thing You Do
- Mid Process Removed Load Settings Message Box
- Made it Color Full Black White Was Boring
- Idle Message Status Is Accurate
- Moved Help and About To File Tab
- Short Cuts Added List Below
    - Load Settings = Ctrl + L
    - Save Settings = Ctrl + S
    - Help        = Ctrl + H
    - About    = Ctrl + A
    - Exit        = Ctrl + E
- Fixed Tab Index
- Log Viewer (Beta - Has Minor Errors But Usable)
----------------------------------------------------------------------------------------
 
Copyright @ 8/23/2012 | Written By : PaSS @ War-Lords.net
Thank you Alicia Melchiott For Finding Errors And Coming To Me To Fix Errors :)
Check Out http://www.war-lords.net/ Today
My Blog : http://jsdomain.zzl.org/
My Other Projects: http://jsdomain.zzl.org/projects.html
Have Any Problems Message Me At War-Lords.net
Or
Email Me At : Agentsix1@yahoo.com</code></div></div> <br />
Screen Shot<br />
 <br />
<img src="http://clients.war-lords.net/imghost/images/mjgb5xykgqrg96lfm4or.png" loading="lazy"  alt="[Image: mjgb5xykgqrg96lfm4or.png]" class="mycode_img" /><br />
 <br />
This may have a few errors if so please report them thank you<br />
 <br />
Download :<a href="http://www.mediafire.com/?cl1qjqw7drws884" target="_blank" rel="noopener" class="mycode_url">http://www.mediafire.com/?cl1qjqw7drws884</a><br />
 <br />
Comes with These Hacks<br />
- Drop Hack Protection<br />
- Drop Hack<br />
- Oblivion<br />
- Astat Flood Protection<br />
- Chaoslauncher<br />
- Game List Cleaner (gets rid of games that have lat)<br />
- Blacklist<br />
- Low Lat<br />
- Mineral Hack (doesnt work)<br />
- wDetector<br />
- Astat Flooder]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Vengence Configuration v1.0 - Created By : Jeremy]]></title>
			<link>https://war-lords.net/forum/thread-8240.html</link>
			<pubDate>Mon, 06 Aug 2012 03:15:55 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=350">PaSS</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-8240.html</guid>
			<description><![CDATA[<span style="color: red;" class="mycode_color">ATTENTION: <span style="color: #000000;" class="mycode_color">this may be flagged as a virus as it is modify files.</span></span><br />
 <br />
<span style="color: #000000;" class="mycode_color">This program will allow you to easily add profiles to your vengence bot.</span><br />
 <br />
<span style="color: #000000;" class="mycode_color">This program is something i threw together for my friend cause hes not that great with bots</span><br />
 <br />
 <br />
<span style="color: #000000;" class="mycode_color">Things to expect from this project</span><br />
 <br />
<span style="color: #000000;" class="mycode_color"></span><br />
<span style="color: #000000;" class="mycode_color"> - Being able to edit &amp; save already made Profiles</span><br />
<span style="color: #000000;" class="mycode_color"></span><br />
 <br />
<span style="color: #000000;" class="mycode_color">Here is a screen shot</span><br />
<span style="color: #000000;" class="mycode_color"><img src="http://clients.war-lords.net/imghost/images/nifusj8rrqz7yd59wqmo.jpg" loading="lazy"  alt="[Image: nifusj8rrqz7yd59wqmo.jpg]" class="mycode_img" /></span><br />
 <br />
 <br />
 <br />
<span style="color: red;" class="mycode_color"><span style="color: red;" class="mycode_color"><span style="color: red;" class="mycode_color"><span style="color: #000000;" class="mycode_color">Again this does not currently let you modify already exisiting profiles that feature will come soon</span> <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /></span></span></span><br />
<br />
<img src="https://war-lords.net/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
&nbsp;&nbsp;<a href="attachment.php?aid=1476" target="_blank" title="">Vengence Configuration v1.0.zip</a> (Size: 25.29 KB / Downloads: 5)
]]></description>
			<content:encoded><![CDATA[<span style="color: red;" class="mycode_color">ATTENTION: <span style="color: #000000;" class="mycode_color">this may be flagged as a virus as it is modify files.</span></span><br />
 <br />
<span style="color: #000000;" class="mycode_color">This program will allow you to easily add profiles to your vengence bot.</span><br />
 <br />
<span style="color: #000000;" class="mycode_color">This program is something i threw together for my friend cause hes not that great with bots</span><br />
 <br />
 <br />
<span style="color: #000000;" class="mycode_color">Things to expect from this project</span><br />
 <br />
<span style="color: #000000;" class="mycode_color"></span><br />
<span style="color: #000000;" class="mycode_color"> - Being able to edit &amp; save already made Profiles</span><br />
<span style="color: #000000;" class="mycode_color"></span><br />
 <br />
<span style="color: #000000;" class="mycode_color">Here is a screen shot</span><br />
<span style="color: #000000;" class="mycode_color"><img src="http://clients.war-lords.net/imghost/images/nifusj8rrqz7yd59wqmo.jpg" loading="lazy"  alt="[Image: nifusj8rrqz7yd59wqmo.jpg]" class="mycode_img" /></span><br />
 <br />
 <br />
 <br />
<span style="color: red;" class="mycode_color"><span style="color: red;" class="mycode_color"><span style="color: red;" class="mycode_color"><span style="color: #000000;" class="mycode_color">Again this does not currently let you modify already exisiting profiles that feature will come soon</span> <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /></span></span></span><br />
<br />
<img src="https://war-lords.net/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
&nbsp;&nbsp;<a href="attachment.php?aid=1476" target="_blank" title="">Vengence Configuration v1.0.zip</a> (Size: 25.29 KB / Downloads: 5)
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Minecraft Version Changer]]></title>
			<link>https://war-lords.net/forum/thread-6729.html</link>
			<pubDate>Fri, 06 Apr 2012 02:05:03 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=350">PaSS</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-6729.html</guid>
			<description><![CDATA[My friend gave me this server and asked if i could post this. Sense he gave me such a great server I would gladly post this for you.<br />
 <br />
With that out of the way.<br />
 <br />
------------------------------------------------------------------------------------------------------<br />
 <br />
Do you suck with computers and need to downgrade or Update Minecraft? Download this program today. Anyways, have fun and game on.<br />
 <br />
-------------------------------------------------------------------------------------------------------------<br />
 <br />
<span style="color: black;" class="mycode_color">News:</span><br />
 <br />
<span style="color: green;" class="mycode_color"> CONGRATS</span> ... <span style="color: teal;" class="mycode_color">i have recived 600+ downloads on my program be sure to keep active on this program as i am still updating this <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /> Thank you guys for all the support on the program <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /> </span><br />
 <br />
<span style="color: red;" class="mycode_color">Im expecting to release the code for this program with in the next couple releases once i get the code cleaned up a bit more <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /> </span><br />
 <br />
-------------------------------------------------------------------------------------------------------------<br />
 <br />
Updates<br />
 <br />
- Complete Over haul of code<br />
- Coding language Change to VB 2008 aka VB.NET<br />
- Running a much lighter code<br />
- Removal of snapshots<br />
- Working on a snapshots only file <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
 <br />
----------------------------------------------------------------------------------------------------------------<br />
 <br />
<span style="color: red;" class="mycode_color">ATTENTION</span>: This may get flagged as being a virus. The reason behind this is because it is modifying the App Data Folder. If you would like the dos version of this program please let me know and I will be sure to post it <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /> .<br />
 <br />
---------------------------------------------------------------------------------------------------------------<br />
 <br />
Screen Shot<br />
 <br />
 <br />
---------------------------------------------------------------------------------------------------------------<br />
 <br />
Exe Version: 1.4.6 [MC Version 1.4.6]<br />
Download: <a href="http://sorbmc.com/Mcvc.html" target="_blank" rel="noopener" class="mycode_url">http://sorbmc.com/Mcvc.html</a><br />
 <br />
No longer supporting Dos Version Of MCVC<br />
 <br />
---------------------------------------------------------------------------------------------------------------<br />
 <br />
Older Version Download Links<br />
 <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>Exe Version: 1.3.2.1 [MC Version 12w36a]
Download: http://www.mediafire.com/?g7d7a4a92dblr50
 
 
Exe Version: 1.3.2.1 [MC Version 12w34a]
Download: http://www.mediafire.com/?705c3187xr3cy2l
 
Dos Version : 1.3.2.1 [MC Version 12w34a]
Download: http://www.mediafire.com/?bhzcem0n5wjk74c
 
 
 
Exe Version: 1.3.1 [MC Version 1.3.1]
 
Download: http://www.mediafire.com/?j4ndjj9ganj9g9d
 
Dos Version: 1.3.1 Build 3000 [MC Version 1.3.1] (its got problems which were fixed in 1.3.2)
 
Download: http://www.mediafire.com/?9dsfwn8agf8eay5
 
Exe Version: 1.2.5.7.1 [MC Version 12w23b]
 
Download: http://www.mediafire.com/?qezg7bztzc1s2z9
 
Dos Version: 1.2.5.7.1  [MC Version 12w23b] (i dont belive this works - its got problems which were fixed in 1.3.2)
 
Download: http://www.mediafire.com/?mf5ad22u56ansfa
 
Exe Version: 1.2.5.7 [MC Version 12w22a]
 
Download: http://www.mediafire.com/?j4ndjj9ganj9g9d
 
Dos Version: 1.2.5.7  [MC Version 12w22a]
 
Download: http://www.mediafire.com/?9dsfwn8agf8eay5
 
Exe Version: 1.2.5.6.3 [MC Version 12w22a] (This DOES NOT WORK for most people)
 
Download: http://www.mediafire.com/?9r1g72isc77t4xt
 
Dos Version: 1.2.5.7.6.3  [MC Version 12w22a] (This does not work - its got problems which were fixed in 1.3.2)
 
Download: http://www.mediafire.com/?45o6r5x64o8eplu
 
More coming next update</code></div></div> <br />
------------------------------------------------------------------------------------------------------<br />
 <br />
Expected To See In The Future<br />
 <br />
- Nothing atm<br />
 <br />
------------------------------------------------------------------------------------------------------]]></description>
			<content:encoded><![CDATA[My friend gave me this server and asked if i could post this. Sense he gave me such a great server I would gladly post this for you.<br />
 <br />
With that out of the way.<br />
 <br />
------------------------------------------------------------------------------------------------------<br />
 <br />
Do you suck with computers and need to downgrade or Update Minecraft? Download this program today. Anyways, have fun and game on.<br />
 <br />
-------------------------------------------------------------------------------------------------------------<br />
 <br />
<span style="color: black;" class="mycode_color">News:</span><br />
 <br />
<span style="color: green;" class="mycode_color"> CONGRATS</span> ... <span style="color: teal;" class="mycode_color">i have recived 600+ downloads on my program be sure to keep active on this program as i am still updating this <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /> Thank you guys for all the support on the program <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /> </span><br />
 <br />
<span style="color: red;" class="mycode_color">Im expecting to release the code for this program with in the next couple releases once i get the code cleaned up a bit more <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /> </span><br />
 <br />
-------------------------------------------------------------------------------------------------------------<br />
 <br />
Updates<br />
 <br />
- Complete Over haul of code<br />
- Coding language Change to VB 2008 aka VB.NET<br />
- Running a much lighter code<br />
- Removal of snapshots<br />
- Working on a snapshots only file <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
 <br />
----------------------------------------------------------------------------------------------------------------<br />
 <br />
<span style="color: red;" class="mycode_color">ATTENTION</span>: This may get flagged as being a virus. The reason behind this is because it is modifying the App Data Folder. If you would like the dos version of this program please let me know and I will be sure to post it <img src="https://war-lords.net/forum/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /> .<br />
 <br />
---------------------------------------------------------------------------------------------------------------<br />
 <br />
Screen Shot<br />
 <br />
 <br />
---------------------------------------------------------------------------------------------------------------<br />
 <br />
Exe Version: 1.4.6 [MC Version 1.4.6]<br />
Download: <a href="http://sorbmc.com/Mcvc.html" target="_blank" rel="noopener" class="mycode_url">http://sorbmc.com/Mcvc.html</a><br />
 <br />
No longer supporting Dos Version Of MCVC<br />
 <br />
---------------------------------------------------------------------------------------------------------------<br />
 <br />
Older Version Download Links<br />
 <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>Exe Version: 1.3.2.1 [MC Version 12w36a]
Download: http://www.mediafire.com/?g7d7a4a92dblr50
 
 
Exe Version: 1.3.2.1 [MC Version 12w34a]
Download: http://www.mediafire.com/?705c3187xr3cy2l
 
Dos Version : 1.3.2.1 [MC Version 12w34a]
Download: http://www.mediafire.com/?bhzcem0n5wjk74c
 
 
 
Exe Version: 1.3.1 [MC Version 1.3.1]
 
Download: http://www.mediafire.com/?j4ndjj9ganj9g9d
 
Dos Version: 1.3.1 Build 3000 [MC Version 1.3.1] (its got problems which were fixed in 1.3.2)
 
Download: http://www.mediafire.com/?9dsfwn8agf8eay5
 
Exe Version: 1.2.5.7.1 [MC Version 12w23b]
 
Download: http://www.mediafire.com/?qezg7bztzc1s2z9
 
Dos Version: 1.2.5.7.1  [MC Version 12w23b] (i dont belive this works - its got problems which were fixed in 1.3.2)
 
Download: http://www.mediafire.com/?mf5ad22u56ansfa
 
Exe Version: 1.2.5.7 [MC Version 12w22a]
 
Download: http://www.mediafire.com/?j4ndjj9ganj9g9d
 
Dos Version: 1.2.5.7  [MC Version 12w22a]
 
Download: http://www.mediafire.com/?9dsfwn8agf8eay5
 
Exe Version: 1.2.5.6.3 [MC Version 12w22a] (This DOES NOT WORK for most people)
 
Download: http://www.mediafire.com/?9r1g72isc77t4xt
 
Dos Version: 1.2.5.7.6.3  [MC Version 12w22a] (This does not work - its got problems which were fixed in 1.3.2)
 
Download: http://www.mediafire.com/?45o6r5x64o8eplu
 
More coming next update</code></div></div> <br />
------------------------------------------------------------------------------------------------------<br />
 <br />
Expected To See In The Future<br />
 <br />
- Nothing atm<br />
 <br />
------------------------------------------------------------------------------------------------------]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[GridSharp]]></title>
			<link>https://war-lords.net/forum/thread-5713.html</link>
			<pubDate>Sat, 31 Dec 2011 03:52:47 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=3028">MindHACKer</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-5713.html</guid>
			<description><![CDATA[OK you Code Nerds, I've been working on a project, and have achieved a lot, so I wanted you guys to take a look, and maybe suggest stuff.<br />
<br />
The project is called: GridSharp<br />
Programming Language: Visual C#<br />
Version: First it's a BETA ofcourse<br />
Description: it would be like A music organizer and sorter, and a music Explorer as well, it would play Mp3's And WMA maybe.. and it would have it's own volume control. <br />
Future thoughts: adding a music recorder maybe.. maybe a video player too, and even a Note keeper, AND EVEN A WEB BROWSER TOO!!! <img src="https://war-lords.net/forum/images/smilies/biggrin.png" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /> <br />
<br />
I'm not done with the coding yet, I'm having tons of problems, but I am moving forward with this.<br />
So wish me luck.<br />
<br />
Here are some screenshots of the project:<br />
<img src="http://clients.war-lords.net/imghost/images/a9rwmi8ew2nazvmf7mr.jpg" loading="lazy"  alt="[Image: a9rwmi8ew2nazvmf7mr.jpg]" class="mycode_img" /><br />
<img src="http://clients.war-lords.net/imghost/images/olu5pqr4qllg2qwncg5.jpg" loading="lazy"  alt="[Image: olu5pqr4qllg2qwncg5.jpg]" class="mycode_img" /><br />
<img src="http://clients.war-lords.net/imghost/images/o3edz1ka4eg46z8m5iu.jpg" loading="lazy"  alt="[Image: o3edz1ka4eg46z8m5iu.jpg]" class="mycode_img" />]]></description>
			<content:encoded><![CDATA[OK you Code Nerds, I've been working on a project, and have achieved a lot, so I wanted you guys to take a look, and maybe suggest stuff.<br />
<br />
The project is called: GridSharp<br />
Programming Language: Visual C#<br />
Version: First it's a BETA ofcourse<br />
Description: it would be like A music organizer and sorter, and a music Explorer as well, it would play Mp3's And WMA maybe.. and it would have it's own volume control. <br />
Future thoughts: adding a music recorder maybe.. maybe a video player too, and even a Note keeper, AND EVEN A WEB BROWSER TOO!!! <img src="https://war-lords.net/forum/images/smilies/biggrin.png" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /> <br />
<br />
I'm not done with the coding yet, I'm having tons of problems, but I am moving forward with this.<br />
So wish me luck.<br />
<br />
Here are some screenshots of the project:<br />
<img src="http://clients.war-lords.net/imghost/images/a9rwmi8ew2nazvmf7mr.jpg" loading="lazy"  alt="[Image: a9rwmi8ew2nazvmf7mr.jpg]" class="mycode_img" /><br />
<img src="http://clients.war-lords.net/imghost/images/olu5pqr4qllg2qwncg5.jpg" loading="lazy"  alt="[Image: olu5pqr4qllg2qwncg5.jpg]" class="mycode_img" /><br />
<img src="http://clients.war-lords.net/imghost/images/o3edz1ka4eg46z8m5iu.jpg" loading="lazy"  alt="[Image: o3edz1ka4eg46z8m5iu.jpg]" class="mycode_img" />]]></content:encoded>
		</item>
	</channel>
</rss>