<?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>Thu, 07 May 2026 01:36:49 +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<br />
   Dim AppPath As String = New System.IO.FileInfo(Application.ExecutablePath).DirectoryName<br />
   Dim ol_count = 0<br />
   Dim new_count = 0<br />
   Dim mps_peak = 0<br />
   Private Sub tmrLogs_Tick(sender As Object, e As EventArgs) Handles tmrLogs.Tick<br />
       ol_count = new_count<br />
       If System.IO.File.Exists(AppPath &amp; "&#92;0.txt") Or _<br />
          System.IO.File.Exists(AppPath &amp; "&#92;1.txt") Or _<br />
          System.IO.File.Exists(AppPath &amp; "&#92;2.txt") Or _<br />
          System.IO.File.Exists(AppPath &amp; "&#92;3.txt") Or _<br />
          System.IO.File.Exists(AppPath &amp; "&#92;4.txt") Then<br />
           Try<br />
               txtLogs.Text = ""<br />
               txtLogs.Text = System.IO.File.ReadAllText(AppPath &amp; "&#92;0.txt") &amp; vbCrLf &amp; txtLogs.Text<br />
               txtLogs.Text = System.IO.File.ReadAllText(AppPath &amp; "&#92;1.txt") &amp; vbCrLf &amp; txtLogs.Text<br />
               txtLogs.Text = System.IO.File.ReadAllText(AppPath &amp; "&#92;2.txt") &amp; vbCrLf &amp; txtLogs.Text<br />
               txtLogs.Text = System.IO.File.ReadAllText(AppPath &amp; "&#92;3.txt") &amp; txtLogs.Text<br />
               lblSent.Text = txtLogs.Lines.Length<br />
           Catch ex As Exception<br />
           End Try<br />
       Else<br />
           txtLogs.Text = "No Logs Have Been Generated?"<br />
       End If<br />
       new_count = txtLogs.Lines.Length<br />
       lblMPScount.Text = new_count - ol_count<br />
       If new_count - ol_count &gt; mps_peak Then<br />
           lblMPSpeak.Text = new_count - ol_count<br />
           mps_peak = new_count - ol_count<br />
       End If<br />
   End Sub<br />
   Private Sub Form1_Disposed(sender As Object, e As EventArgs) Handles Me.Disposed<br />
       Try<br />
           System.IO.File.Delete(AppPath &amp; "&#92;0.txt")<br />
           System.IO.File.Delete(AppPath &amp; "&#92;1.txt")<br />
           System.IO.File.Delete(AppPath &amp; "&#92;2.txt")<br />
           System.IO.File.Delete(AppPath &amp; "&#92;3.txt")<br />
           System.IO.File.Delete(AppPath &amp; "&#92;4.txt")<br />
       Catch ex As Exception<br />
       End Try<br />
       <br />
   End Sub<br />
   Private Sub btnYEserverhelp_Click(sender As Object, e As EventArgs) Handles btnYEserverhelp.Click<br />
       MsgBox("" &amp; _<br />
              "Gmail Server: smtp.gmail.com | Port: 465" &amp; vbCrLf &amp; _<br />
              "Yahoo Server: .mail.yahoo.com | Port: 465" &amp; vbCrLf &amp; _<br />
              "Hotmail Server: smtp.live.com | Port: 465" &amp; vbCrLf &amp; _<br />
              "AOL Server: smtp.aol.com | Port: 465", , "Help Please!!!!")<br />
   End Sub<br />
   Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load<br />
       txtLogs.ReadOnly = True<br />
       load_file("email list")<br />
       load_file("your email list")<br />
       load_file("messages")<br />
   End Sub<br />
   Function load_file(where)<br />
       If where = "email list" Then<br />
           Dim lines() = System.IO.File.ReadAllLines(AppPath &amp; "&#92;emails")<br />
           lbEmailList.Items.AddRange(lines)<br />
       ElseIf where = "your email list" Then<br />
           Dim linesa() = System.IO.File.ReadAllLines(AppPath &amp; "&#92;myemailsnp")<br />
           lbYourEmails.Items.AddRange(linesa)<br />
           Dim linesb() = System.IO.File.ReadAllLines(AppPath &amp; "&#92;myemails")<br />
           lbYE.Items.AddRange(linesb)<br />
       ElseIf where = "messages" Then<br />
           Dim lines() = System.IO.File.ReadAllLines(AppPath &amp; "&#92;messages")<br />
           lbMessages.Items.AddRange(lines)<br />
       End If<br />
   End Function<br />
   Private Sub btnELclear_Click(sender As Object, e As EventArgs) Handles btnELclear.Click<br />
       lbEmailList.Items.Clear()<br />
   End Sub<br />
   Private Sub btnMclear_Click(sender As Object, e As EventArgs) Handles btnMclear.Click<br />
       lbMessages.Items.Clear()<br />
   End Sub<br />
   Private Sub btnYEclear_Click(sender As Object, e As EventArgs) Handles btnYEclear.Click<br />
       lbYourEmails.Items.Clear()<br />
       lbYE.Items.Clear()<br />
   End Sub<br />
   Private Sub btnELdelete_Click(sender As Object, e As EventArgs) Handles btnELdelete.Click<br />
       lbEmailList.Items.RemoveAt(lbEmailList.SelectedIndex)<br />
       Try<br />
           Dim i = 0<br />
           Do Until i = -1<br />
               If i = 0 Then<br />
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;emails", lbEmailList.Items.Item(0))<br />
               Else<br />
                   Dim emails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;emails")<br />
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;emails", emails_text &amp; vbCrLf &amp; lbEmailList.Items.Item(i))<br />
               End If<br />
               i += 1<br />
           Loop<br />
       Catch ex As Exception<br />
       End Try<br />
   End Sub<br />
   Private Sub btnMdelete_Click(sender As Object, e As EventArgs) Handles btnMdelete.Click<br />
       lbMessages.Items.RemoveAt(lbMessages.SelectedIndex)<br />
       Try<br />
           Dim i = 0<br />
           Do Until i = -1<br />
               If i = 0 Then<br />
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", lbMessages.Items.Item(0))<br />
               Else<br />
                   Dim messages_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;messages")<br />
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", messages_text &amp; vbCrLf &amp; lbMessages.Items.Item(i))<br />
               End If<br />
               i += 1<br />
           Loop<br />
       Catch ex As Exception<br />
       End Try<br />
   End Sub<br />
   Private Sub btnYEdelete_Click(sender As Object, e As EventArgs) Handles btnYEdelete.Click<br />
       lbYE.Items.RemoveAt(lbYourEmails.SelectedIndex)<br />
       lbYourEmails.Items.RemoveAt(lbYourEmails.SelectedIndex)<br />
       Try<br />
           Dim i = 0<br />
           Do Until i = -1<br />
               If i = 0 Then<br />
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", lbYE.Items.Item(0))<br />
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", lbYourEmails.Items.Item(0))<br />
               Else<br />
                   Dim myemails_texta = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemails")<br />
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", myemails_texta &amp; vbCrLf &amp; lbYE.Items.Item(i))<br />
                   Dim myemails_textb = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemailsnp")<br />
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", myemails_textb &amp; vbCrLf &amp; lbYourEmails.Items.Item(i))<br />
               End If<br />
               i += 1<br />
           Loop<br />
       Catch ex As Exception<br />
       End Try<br />
   End Sub<br />
   Private Sub btnELadd_Click(sender As Object, e As EventArgs) Handles btnELadd.Click<br />
       If txtETBA.Text = "" Then<br />
           MsgBox("You are missing information could not complete the adding of this email.", MsgBoxStyle.Exclamation, "ERROR")<br />
       Else<br />
           lbEmailList.Items.Add(txtETBA.Text)<br />
           txtETBA.Text = ""<br />
           Try<br />
               Dim i = 0<br />
               Do Until i = -1<br />
                   If i = 0 Then<br />
                       System.IO.File.WriteAllText(AppPath &amp; "&#92;emails", lbEmailList.Items.Item(0))<br />
                   Else<br />
                       Dim emails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;emails")<br />
                       System.IO.File.WriteAllText(AppPath &amp; "&#92;emails", emails_text &amp; vbCrLf &amp; lbEmailList.Items.Item(i))<br />
                   End If<br />
                   i += 1<br />
               Loop<br />
           Catch ex As Exception<br />
           End Try<br />
       End If<br />
   End Sub<br />
   Private Sub lbEmailList_SelectedIndexChanged(sender As Object, e As EventArgs) Handles lbEmailList.SelectedIndexChanged<br />
       txtETBA.Text = lbEmailList.SelectedItem()<br />
   End Sub<br />
   Private Sub btnYEadd_Click(sender As Object, e As EventArgs) Handles btnYEadd.Click<br />
       If txtYEaccount.Text = "" Or txtYEpassword.Text = "" Or txtYEport.Text = "" Or txtYEserver.Text = "" Then<br />
           MsgBox("You are missing information could not complete the adding of account.", MsgBoxStyle.Exclamation, "ERROR")<br />
       Else<br />
           If Not lbYourEmails.Items.Contains(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text) Then<br />
               lbYE.Items.Add(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text &amp; ";" &amp; txtYEpassword.Text)<br />
                lbYourEmails.Items.Add(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text)<br />
                Try<br />
                    Dim i = 0<br />
                    Do Until i = -1<br />
                        If i = 0 Then<br />
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", lbYE.Items.Item(0))<br />
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", lbYourEmails.Items.Item(0))<br />
                        Else<br />
                            Dim YEemails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemails")<br />
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", YEemails_text &amp; vbCrLf &amp; lbYE.Items.Item(i))<br />
                            Dim Youremails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemailsnp")<br />
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", Youremails_text &amp; vbCrLf &amp; lbYourEmails.Items.Item(i))<br />
                        End If<br />
                        i += 1<br />
                    Loop<br />
                Catch ex As Exception<br />
                End Try<br />
            Else<br />
                MsgBox("You have already added this account. Duplicated account was not added!", , "Duplicate Found")<br />
            End If<br />
            <br />
<br />
        End If<br />
        <br />
    End Sub<br />
<br />
    Private Sub btnMadd_Click(sender As Object, e As EventArgs) Handles btnMadd.Click<br />
        If txtMmessage.Text = "" Or txtMsubject.Text = "" Then<br />
            MsgBox("You are missing information could not complete the adding of this email.", MsgBoxStyle.Exclamation, "ERROR")<br />
        Else<br />
            lbMessages.Items.Add(txtMsubject.Text &amp; "=+=" &amp; txtMmessage.Text)<br />
            Try<br />
                Dim i = 0<br />
                Do Until i = -1<br />
                    If i = 0 Then<br />
                        System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", lbMessages.Items.Item(0))<br />
                    Else<br />
                        Dim messages_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;messages")<br />
                        System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", messages_text &amp; vbCrLf &amp; lbMessages.Items.Item(i))<br />
                    End If<br />
                    i += 1<br />
                Loop<br />
            Catch ex As Exception<br />
            End Try<br />
            <br />
<br />
        End If<br />
    End Sub<br />
<br />
#Region "Hot Keys"<br />
    Private Sub txtETBA_HotKey(ByVal Sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtETBA.KeyDown, MyBase.KeyDown<br />
        If e.KeyValue = Keys.Enter Then<br />
            If txtETBA.Text = "" Then<br />
                MsgBox("You are missing information could not complete the adding of this email.", MsgBoxStyle.Exclamation, "ERROR")<br />
            Else<br />
                lbEmailList.Items.Add(txtETBA.Text)<br />
                txtETBA.Text = ""<br />
                Try<br />
                    Dim i = 0<br />
                    Do Until i = -1<br />
                        If i = 0 Then<br />
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;emails", lbEmailList.Items.Item(0))<br />
                        Else<br />
                            Dim emails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;emails")<br />
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;emails", emails_text &amp; vbCrLf &amp; lbEmailList.Items.Item(i))<br />
                        End If<br />
                        i += 1<br />
                    Loop<br />
                Catch ex As Exception<br />
                End Try<br />
            End If<br />
        End If<br />
    End Sub<br />
<br />
    Private Sub txtYEaccount_HotKey(ByVal Sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtYEaccount.KeyDown, MyBase.KeyDown<br />
        If e.KeyValue = Keys.Enter Then<br />
            If txtYEaccount.Text = "" Or txtYEpassword.Text = "" Or txtYEport.Text = "" Or txtYEserver.Text = "" Then<br />
                MsgBox("You are missing information could not complete the adding of account.", MsgBoxStyle.Exclamation, "ERROR")<br />
            Else<br />
                If Not lbYourEmails.Items.Contains(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text) Then<br />
                    lbYE.Items.Add(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text &amp; ";" &amp; txtYEpassword.Text)<br />
                    lbYourEmails.Items.Add(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text)<br />
                    Try<br />
                        Dim i = 0<br />
                        Do Until i = -1<br />
                            If i = 0 Then<br />
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", lbYE.Items.Item(0))<br />
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", lbYourEmails.Items.Item(0))<br />
                            Else<br />
                                Dim YEemails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemails")<br />
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", YEemails_text &amp; vbCrLf &amp; lbYE.Items.Item(i))<br />
                                Dim Youremails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemailsnp")<br />
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", Youremails_text &amp; vbCrLf &amp; lbYourEmails.Items.Item(i))<br />
                            End If<br />
                            i += 1<br />
                        Loop<br />
                    Catch ex As Exception<br />
                    End Try<br />
                Else<br />
                    MsgBox("You have already added this account. Duplicated account was not added!", , "Duplicate Found")<br />
                End If<br />
<br />
<br />
            End If<br />
        End If<br />
    End Sub<br />
<br />
    Private Sub txtYEpassword_HotKey(ByVal Sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtYEpassword.KeyDown, MyBase.KeyDown<br />
        If e.KeyValue = Keys.Enter Then<br />
            If txtYEaccount.Text = "" Or txtYEpassword.Text = "" Or txtYEport.Text = "" Or txtYEserver.Text = "" Then<br />
                MsgBox("You are missing information could not complete the adding of account.", MsgBoxStyle.Exclamation, "ERROR")<br />
            Else<br />
                If Not lbYourEmails.Items.Contains(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text) Then<br />
                    lbYE.Items.Add(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text &amp; ";" &amp; txtYEpassword.Text)<br />
                    lbYourEmails.Items.Add(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text)<br />
                    Try<br />
                        Dim i = 0<br />
                        Do Until i = -1<br />
                            If i = 0 Then<br />
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", lbYE.Items.Item(0))<br />
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", lbYourEmails.Items.Item(0))<br />
                            Else<br />
                                Dim YEemails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemails")<br />
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", YEemails_text &amp; vbCrLf &amp; lbYE.Items.Item(i))<br />
                                Dim Youremails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemailsnp")<br />
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", Youremails_text &amp; vbCrLf &amp; lbYourEmails.Items.Item(i))<br />
                            End If<br />
                            i += 1<br />
                        Loop<br />
                    Catch ex As Exception<br />
                    End Try<br />
                Else<br />
                    MsgBox("You have already added this account. Duplicated account was not added!", , "Duplicate Found")<br />
                End If<br />
<br />
<br />
            End If<br />
        End If<br />
    End Sub<br />
<br />
    Private Sub txtMmessages_HotKey(ByVal Sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtMmessage.KeyDown, MyBase.KeyDown<br />
        If e.KeyValue = Keys.Enter Then<br />
            If txtMmessage.Text = "" Or txtMsubject.Text = "" Then<br />
                MsgBox("You are missing information could not complete the adding of this email.", MsgBoxStyle.Exclamation, "ERROR")<br />
            Else<br />
                lbMessages.Items.Add(txtMsubject.Text &amp; "=+=" &amp; txtMmessage.Text)<br />
                Try<br />
                    Dim i = 0<br />
                    Do Until i = -1<br />
                        If i = 0 Then<br />
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", lbMessages.Items.Item(0))<br />
                        Else<br />
                            Dim messages_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;messages")<br />
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", messages_text &amp; vbCrLf &amp; lbMessages.Items.Item(i))<br />
                        End If<br />
                        i += 1<br />
                    Loop<br />
                Catch ex As Exception<br />
                End Try<br />
            End If<br />
        End If<br />
    End Sub<br />
<br />
    Private Sub txtMsubject_HotKey(ByVal Sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtMsubject.KeyDown, MyBase.KeyDown<br />
        If e.KeyValue = Keys.Enter Then<br />
            If txtMmessage.Text = "" Or txtMsubject.Text = "" Then<br />
                MsgBox("You are missing information could not complete the adding of this email.", MsgBoxStyle.Exclamation, "ERROR")<br />
            Else<br />
                lbMessages.Items.Add(txtMsubject.Text &amp; "=+=" &amp; txtMmessage.Text)<br />
                Try<br />
                    Dim i = 0<br />
                    Do Until i = -1<br />
                        If i = 0 Then<br />
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", lbMessages.Items.Item(0))<br />
                        Else<br />
                            Dim messages_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;messages")<br />
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", messages_text &amp; vbCrLf &amp; lbMessages.Items.Item(i))<br />
                        End If<br />
                        i += 1<br />
                    Loop<br />
                Catch ex As Exception<br />
                End Try<br />
            End If<br />
        End If<br />
    End Sub<br />
#End Region<br />
<br />
<br />
<br />
    Private Sub txtCPmsgpersec_TextChanged(sender As Object, e As EventArgs) Handles txtCPmsgpersec.TextChanged<br />
        txtCPmsgpersec.ReadOnly = True<br />
        Try<br />
            If txtCPmsgpersec.Text &lt;= 0 Then<br />
                txtCPmsgpersec.Text = 0.01<br />
            ElseIf txtCPmsgpersec.Text &gt;= 11 Then<br />
                txtCPmsgpersec.Text = 10<br />
            End If<br />
        Catch ex As Exception<br />
<br />
        End Try<br />
        <br />
<br />
        Select Case txtCPmsgpersec.Text<br />
            Case 0.01<br />
                tmrAction.Interval = 2000<br />
                lblDelay.Text = 2000<br />
            Case 0.75<br />
                tmrAction.Interval = 1750<br />
                lblDelay.Text = 1750<br />
            Case 0.5<br />
                tmrAction.Interval = 1500<br />
                lblDelay.Text = 1500<br />
            Case 0.25<br />
                tmrAction.Interval = 1250<br />
                lblDelay.Text = 1250<br />
            Case 1<br />
                tmrAction.Interval = 1000<br />
                lblDelay.Text = 1000<br />
            Case 2<br />
                tmrAction.Interval = 500<br />
                lblDelay.Text = 500<br />
            Case 3<br />
                tmrAction.Interval = 333<br />
                lblDelay.Text = 333<br />
            Case 4<br />
                tmrAction.Interval = 250<br />
                lblDelay.Text = 250<br />
            Case 5<br />
                tmrAction.Interval = 200<br />
                lblDelay.Text = 200<br />
            Case 6<br />
                tmrAction.Interval = 167<br />
                lblDelay.Text = 167<br />
            Case 7<br />
                tmrAction.Interval = 142<br />
                lblDelay.Text = 142<br />
            Case 8<br />
                tmrAction.Interval = 125<br />
                lblDelay.Text = 125<br />
            Case 9<br />
                tmrAction.Interval = 112<br />
                lblDelay.Text = 122<br />
            Case 10<br />
                tmrAction.Interval = 100<br />
                lblDelay.Text = 100<br />
            Case Else<br />
                tmrAction.Interval = 100<br />
                lblDelay.Text = 100<br />
<br />
        End Select<br />
<br />
<br />
    End Sub<br />
<br />
    Private Sub txtCPmsgtosend_TextChanged(sender As Object, e As EventArgs) Handles txtCPmsgtosend.TextChanged<br />
        Dim checkNumber As Integer<br />
        If Integer.TryParse(txtCPmsgtosend.Text, checkNumber) = False Then<br />
            txtCPmsgtosend.Text = 0<br />
        Else<br />
            If txtCPmsgtosend.Text &lt;= -1 Then<br />
                txtCPmsgtosend.Text = 0<br />
            End If<br />
        End If<br />
<br />
    End Sub<br />
<br />
    Private Sub Button2_Click(sender As Object, e As EventArgs) Handles btnCPmsgpersecondUP.Click<br />
        If txtCPmsgpersec.Text &gt;= 0 Or txtCPmsgpersec.Text &lt; 1 Then<br />
            If txtCPmsgpersec.Text = 0.01 Then<br />
                txtCPmsgpersec.Text += 0.24<br />
            Else<br />
                If Not txtCPmsgpersec.Text &gt; 0.99 Then<br />
                    txtCPmsgpersec.Text += 0.25<br />
                Else<br />
                    txtCPmsgpersec.Text += 1<br />
                End If<br />
<br />
            End If<br />
        Else<br />
<br />
        End If<br />
<br />
    End Sub<br />
<br />
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles btnCPmsgpersecondDOWN.Click<br />
        If txtCPmsgpersec.Text &lt;= 1 Then<br />
            txtCPmsgpersec.Text -= 0.25<br />
        Else<br />
            txtCPmsgpersec.Text -= 1<br />
        End If<br />
    End Sub<br />
<br />
    Private Sub btnCPmsgtosendUP_Click(sender As Object, e As EventArgs) Handles btnCPmsgtosendUP.Click<br />
        txtCPmsgtosend.Text += 1<br />
    End Sub<br />
<br />
    Private Sub btnCPmsgtosendDOWN_Click(sender As Object, e As EventArgs) Handles btnCPmsgtosendDOWN.Click<br />
        txtCPmsgtosend.Text -= 1<br />
    End Sub<br />
<br />
    Private Sub tmrAction_Tick(sender As Object, e As EventArgs) Handles tmrAction.Tick<br />
        Dim to_send As Integer = txtCPmsgtosend.Text<br />
        Dim sent As Integer = lblSent.Text<br />
        If to_send &lt;= sent Then<br />
            tmrAction.Enabled = False<br />
            MsgBox("Mail Spam Completed! Sent - " &amp; lblSent.Text &amp; " To Send - " &amp; txtCPmsgtosend.Text, , "Finished")<br />
        Else<br />
            Dim YE() = Split(lbYE.Items.Item(0), ";")<br />
            Dim M() = Split(lbMessages.Items.Item(0), "=+=")<br />
            Dim subject = M(0)<br />
            Dim Message = M(1)<br />
            If CheckBox1.CheckState = CheckState.Checked Then<br />
                Randomize()<br />
                Dim rand As New Random<br />
                Dim intLowNumber = "1000"<br />
                Dim intUpperNumber = "9999"<br />
                subject = rand.Next(intLowNumber, intUpperNumber + 1) &amp; rand.Next(intLowNumber, intUpperNumber + 1) &amp; rand.Next(intLowNumber, intUpperNumber + 1)<br />
                Message = rand.Next(intLowNumber, intUpperNumber + 1) &amp; rand.Next(intLowNumber, intUpperNumber + 1) &amp; rand.Next(intLowNumber, intUpperNumber + 1)<br />
<br />
            End If<br />
            System.IO.File.WriteAllText(AppPath &amp; "&#92;info.txt",<br />
                                        "Email To=" &amp; lbEmailList.Items.Item(0) &amp; vbCrLf &amp; _<br />
                                        "Email Server=" &amp; YE(0) &amp; vbCrLf &amp; _<br />
                                        "Email From=random@gmail.com" &amp; vbCrLf &amp; _<br />
                                        "Account=" &amp; YE(2) &amp; vbCrLf &amp; _<br />
                                        "Passowrd=" &amp; YE(3) &amp; vbCrLf &amp; _<br />
                                        "Subject=" &amp; subject &amp; vbCrLf &amp; _<br />
                                        "Message=" &amp; Message &amp; vbCrLf &amp; _<br />
                                        "Port=" &amp; YE(1) &amp; vbCrLf)<br />
            lbEmailList.Items.Add(lbEmailList.Items.Item(0))<br />
            lbYE.Items.Add(lbYE.Items.Item(0))<br />
            lbMessages.Items.Add(lbMessages.Items.Item(0))<br />
            lbYE.Items.RemoveAt(0)<br />
            lbMessages.Items.RemoveAt(0)<br />
            lbEmailList.Items.RemoveAt(0)<br />
            Process.Start(AppPath &amp; "&#92;sender.exe")<br />
        End If<br />
<br />
<br />
<br />
<br />
<br />
    End Sub<br />
<br />
    Private Sub btnStart_Click(sender As Object, e As EventArgs) Handles btnStart.Click<br />
        lblSent.Text = 0<br />
        tmrAction.Enabled = True<br />
        btnStart.Enabled = False<br />
        btnStop.Enabled = True<br />
    End Sub<br />
<br />
    Private Sub btnStop_Click(sender As Object, e As EventArgs) Handles btnStop.Click<br />
        tmrAction.Enabled = False<br />
        btnStart.Enabled = True<br />
        btnStop.Enabled = False<br />
    End Sub<br />
<br />
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<br />
Public Class Form1<br />
    Dim AppPath As String = New System.IO.FileInfo(Application.ExecutablePath).DirectoryName<br />
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load<br />
        Try<br />
            Dim file_count = System.IO.File.ReadAllText(AppPath &amp; "&#92;count") + 1<br />
            If file_count &gt; 3 Then<br />
                file_count = 0<br />
                System.IO.File.WriteAllText(AppPath &amp; "&#92;count", file_count)<br />
            Else<br />
                System.IO.File.WriteAllText(AppPath &amp; "&#92;count", file_count)<br />
            End If<br />
<br />
            Try<br />
                Dim info = System.IO.File.ReadAllText(AppPath &amp; "&#92;info.txt")<br />
                Dim info_step_1() = Split(info, vbCrLf)<br />
                Dim emailto() = Split(info_step_1(0), "=")<br />
                Dim server() = Split(info_step_1(1), "=")<br />
                Dim from() = Split(info_step_1(2), "=")<br />
                Dim account() = Split(info_step_1(3), "=")<br />
                Dim password() = Split(info_step_1(4), "=")<br />
                Dim subject() = Split(info_step_1(5), "=")<br />
                Dim message() = Split(info_step_1(6), "=")<br />
                Dim port() = Split(info_step_1(7), "=")<br />
                Try<br />
                    Dim mail As New MailMessage<br />
                    mail.Subject = subject(1)<br />
                    mail.To.Add(emailto(1))<br />
                    mail.From = New MailAddress(from(1))<br />
                    mail.Body = message(1)<br />
                    Dim SMTP As New SmtpClient(server(1))<br />
                    SMTP.EnableSsl = True<br />
                    SMTP.Credentials = New System.Net.NetworkCredential(account(1), password(1))<br />
                    SMTP.Port = port(1)<br />
                    SMTP.Send(mail)<br />
                    Label1.Text = "Sent"<br />
                    Dim h = DateTime.Now.Hour<br />
                    Dim m = DateTime.Now.Minute<br />
                    Dim s = DateTime.Now.Second<br />
                    Select Case file_count<br />
                        Case 0<br />
                            If System.IO.File.Exists(AppPath &amp; "&#92;0.txt") Then<br />
                                Dim ol_file = System.IO.File.ReadAllText(AppPath &amp; "&#92;0.txt")<br />
                                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)<br />
                            Else<br />
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;0.txt", "[" &amp; h &amp; ":" &amp; m &amp; "." &amp; s &amp; "] - Email Sent To: " &amp; emailto(1))<br />
                            End If<br />
                        Case 1<br />
                            If System.IO.File.Exists(AppPath &amp; "&#92;1.txt") Then<br />
                                Dim ol_file = System.IO.File.ReadAllText(AppPath &amp; "&#92;1.txt")<br />
                                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)<br />
                            Else<br />
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;1.txt", "[" &amp; h &amp; ":" &amp; m &amp; "." &amp; s &amp; "] - Email Sent To: " &amp; emailto(1))<br />
                            End If<br />
                        Case 2<br />
                            If System.IO.File.Exists(AppPath &amp; "&#92;2.txt") Then<br />
                                Dim ol_file = System.IO.File.ReadAllText(AppPath &amp; "&#92;2.txt")<br />
                                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)<br />
                            Else<br />
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;2.txt", "[" &amp; h &amp; ":" &amp; m &amp; "." &amp; s &amp; "] - Email Sent To: " &amp; emailto(1))<br />
                            End If<br />
                        Case 3<br />
                            If System.IO.File.Exists(AppPath &amp; "&#92;3.txt") Then<br />
                                Dim ol_file = System.IO.File.ReadAllText(AppPath &amp; "&#92;3.txt")<br />
                                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)<br />
                            Else<br />
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;3.txt", "[" &amp; h &amp; ":" &amp; m &amp; "." &amp; s &amp; "] - Email Sent To: " &amp; emailto(1))<br />
                            End If<br />
                    End Select<br />
                Catch ex As Exception<br />
                    Label1.Text = "Failed"<br />
                End Try<br />
            Catch ex As Exception<br />
                MsgBox("File failed to load")<br />
            End Try<br />
        Catch ex As Exception<br />
<br />
        End Try<br />
    <br />
        Me.Close()<br />
    End Sub<br />
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<br />
   Dim AppPath As String = New System.IO.FileInfo(Application.ExecutablePath).DirectoryName<br />
   Dim ol_count = 0<br />
   Dim new_count = 0<br />
   Dim mps_peak = 0<br />
   Private Sub tmrLogs_Tick(sender As Object, e As EventArgs) Handles tmrLogs.Tick<br />
       ol_count = new_count<br />
       If System.IO.File.Exists(AppPath &amp; "&#92;0.txt") Or _<br />
          System.IO.File.Exists(AppPath &amp; "&#92;1.txt") Or _<br />
          System.IO.File.Exists(AppPath &amp; "&#92;2.txt") Or _<br />
          System.IO.File.Exists(AppPath &amp; "&#92;3.txt") Or _<br />
          System.IO.File.Exists(AppPath &amp; "&#92;4.txt") Then<br />
           Try<br />
               txtLogs.Text = ""<br />
               txtLogs.Text = System.IO.File.ReadAllText(AppPath &amp; "&#92;0.txt") &amp; vbCrLf &amp; txtLogs.Text<br />
               txtLogs.Text = System.IO.File.ReadAllText(AppPath &amp; "&#92;1.txt") &amp; vbCrLf &amp; txtLogs.Text<br />
               txtLogs.Text = System.IO.File.ReadAllText(AppPath &amp; "&#92;2.txt") &amp; vbCrLf &amp; txtLogs.Text<br />
               txtLogs.Text = System.IO.File.ReadAllText(AppPath &amp; "&#92;3.txt") &amp; txtLogs.Text<br />
               lblSent.Text = txtLogs.Lines.Length<br />
           Catch ex As Exception<br />
           End Try<br />
       Else<br />
           txtLogs.Text = "No Logs Have Been Generated?"<br />
       End If<br />
       new_count = txtLogs.Lines.Length<br />
       lblMPScount.Text = new_count - ol_count<br />
       If new_count - ol_count &gt; mps_peak Then<br />
           lblMPSpeak.Text = new_count - ol_count<br />
           mps_peak = new_count - ol_count<br />
       End If<br />
   End Sub<br />
   Private Sub Form1_Disposed(sender As Object, e As EventArgs) Handles Me.Disposed<br />
       Try<br />
           System.IO.File.Delete(AppPath &amp; "&#92;0.txt")<br />
           System.IO.File.Delete(AppPath &amp; "&#92;1.txt")<br />
           System.IO.File.Delete(AppPath &amp; "&#92;2.txt")<br />
           System.IO.File.Delete(AppPath &amp; "&#92;3.txt")<br />
           System.IO.File.Delete(AppPath &amp; "&#92;4.txt")<br />
       Catch ex As Exception<br />
       End Try<br />
       <br />
   End Sub<br />
   Private Sub btnYEserverhelp_Click(sender As Object, e As EventArgs) Handles btnYEserverhelp.Click<br />
       MsgBox("" &amp; _<br />
              "Gmail Server: smtp.gmail.com | Port: 465" &amp; vbCrLf &amp; _<br />
              "Yahoo Server: .mail.yahoo.com | Port: 465" &amp; vbCrLf &amp; _<br />
              "Hotmail Server: smtp.live.com | Port: 465" &amp; vbCrLf &amp; _<br />
              "AOL Server: smtp.aol.com | Port: 465", , "Help Please!!!!")<br />
   End Sub<br />
   Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load<br />
       txtLogs.ReadOnly = True<br />
       load_file("email list")<br />
       load_file("your email list")<br />
       load_file("messages")<br />
   End Sub<br />
   Function load_file(where)<br />
       If where = "email list" Then<br />
           Dim lines() = System.IO.File.ReadAllLines(AppPath &amp; "&#92;emails")<br />
           lbEmailList.Items.AddRange(lines)<br />
       ElseIf where = "your email list" Then<br />
           Dim linesa() = System.IO.File.ReadAllLines(AppPath &amp; "&#92;myemailsnp")<br />
           lbYourEmails.Items.AddRange(linesa)<br />
           Dim linesb() = System.IO.File.ReadAllLines(AppPath &amp; "&#92;myemails")<br />
           lbYE.Items.AddRange(linesb)<br />
       ElseIf where = "messages" Then<br />
           Dim lines() = System.IO.File.ReadAllLines(AppPath &amp; "&#92;messages")<br />
           lbMessages.Items.AddRange(lines)<br />
       End If<br />
   End Function<br />
   Private Sub btnELclear_Click(sender As Object, e As EventArgs) Handles btnELclear.Click<br />
       lbEmailList.Items.Clear()<br />
   End Sub<br />
   Private Sub btnMclear_Click(sender As Object, e As EventArgs) Handles btnMclear.Click<br />
       lbMessages.Items.Clear()<br />
   End Sub<br />
   Private Sub btnYEclear_Click(sender As Object, e As EventArgs) Handles btnYEclear.Click<br />
       lbYourEmails.Items.Clear()<br />
       lbYE.Items.Clear()<br />
   End Sub<br />
   Private Sub btnELdelete_Click(sender As Object, e As EventArgs) Handles btnELdelete.Click<br />
       lbEmailList.Items.RemoveAt(lbEmailList.SelectedIndex)<br />
       Try<br />
           Dim i = 0<br />
           Do Until i = -1<br />
               If i = 0 Then<br />
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;emails", lbEmailList.Items.Item(0))<br />
               Else<br />
                   Dim emails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;emails")<br />
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;emails", emails_text &amp; vbCrLf &amp; lbEmailList.Items.Item(i))<br />
               End If<br />
               i += 1<br />
           Loop<br />
       Catch ex As Exception<br />
       End Try<br />
   End Sub<br />
   Private Sub btnMdelete_Click(sender As Object, e As EventArgs) Handles btnMdelete.Click<br />
       lbMessages.Items.RemoveAt(lbMessages.SelectedIndex)<br />
       Try<br />
           Dim i = 0<br />
           Do Until i = -1<br />
               If i = 0 Then<br />
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", lbMessages.Items.Item(0))<br />
               Else<br />
                   Dim messages_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;messages")<br />
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", messages_text &amp; vbCrLf &amp; lbMessages.Items.Item(i))<br />
               End If<br />
               i += 1<br />
           Loop<br />
       Catch ex As Exception<br />
       End Try<br />
   End Sub<br />
   Private Sub btnYEdelete_Click(sender As Object, e As EventArgs) Handles btnYEdelete.Click<br />
       lbYE.Items.RemoveAt(lbYourEmails.SelectedIndex)<br />
       lbYourEmails.Items.RemoveAt(lbYourEmails.SelectedIndex)<br />
       Try<br />
           Dim i = 0<br />
           Do Until i = -1<br />
               If i = 0 Then<br />
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", lbYE.Items.Item(0))<br />
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", lbYourEmails.Items.Item(0))<br />
               Else<br />
                   Dim myemails_texta = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemails")<br />
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", myemails_texta &amp; vbCrLf &amp; lbYE.Items.Item(i))<br />
                   Dim myemails_textb = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemailsnp")<br />
                   System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", myemails_textb &amp; vbCrLf &amp; lbYourEmails.Items.Item(i))<br />
               End If<br />
               i += 1<br />
           Loop<br />
       Catch ex As Exception<br />
       End Try<br />
   End Sub<br />
   Private Sub btnELadd_Click(sender As Object, e As EventArgs) Handles btnELadd.Click<br />
       If txtETBA.Text = "" Then<br />
           MsgBox("You are missing information could not complete the adding of this email.", MsgBoxStyle.Exclamation, "ERROR")<br />
       Else<br />
           lbEmailList.Items.Add(txtETBA.Text)<br />
           txtETBA.Text = ""<br />
           Try<br />
               Dim i = 0<br />
               Do Until i = -1<br />
                   If i = 0 Then<br />
                       System.IO.File.WriteAllText(AppPath &amp; "&#92;emails", lbEmailList.Items.Item(0))<br />
                   Else<br />
                       Dim emails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;emails")<br />
                       System.IO.File.WriteAllText(AppPath &amp; "&#92;emails", emails_text &amp; vbCrLf &amp; lbEmailList.Items.Item(i))<br />
                   End If<br />
                   i += 1<br />
               Loop<br />
           Catch ex As Exception<br />
           End Try<br />
       End If<br />
   End Sub<br />
   Private Sub lbEmailList_SelectedIndexChanged(sender As Object, e As EventArgs) Handles lbEmailList.SelectedIndexChanged<br />
       txtETBA.Text = lbEmailList.SelectedItem()<br />
   End Sub<br />
   Private Sub btnYEadd_Click(sender As Object, e As EventArgs) Handles btnYEadd.Click<br />
       If txtYEaccount.Text = "" Or txtYEpassword.Text = "" Or txtYEport.Text = "" Or txtYEserver.Text = "" Then<br />
           MsgBox("You are missing information could not complete the adding of account.", MsgBoxStyle.Exclamation, "ERROR")<br />
       Else<br />
           If Not lbYourEmails.Items.Contains(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text) Then<br />
               lbYE.Items.Add(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text &amp; ";" &amp; txtYEpassword.Text)<br />
                lbYourEmails.Items.Add(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text)<br />
                Try<br />
                    Dim i = 0<br />
                    Do Until i = -1<br />
                        If i = 0 Then<br />
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", lbYE.Items.Item(0))<br />
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", lbYourEmails.Items.Item(0))<br />
                        Else<br />
                            Dim YEemails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemails")<br />
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", YEemails_text &amp; vbCrLf &amp; lbYE.Items.Item(i))<br />
                            Dim Youremails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemailsnp")<br />
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", Youremails_text &amp; vbCrLf &amp; lbYourEmails.Items.Item(i))<br />
                        End If<br />
                        i += 1<br />
                    Loop<br />
                Catch ex As Exception<br />
                End Try<br />
            Else<br />
                MsgBox("You have already added this account. Duplicated account was not added!", , "Duplicate Found")<br />
            End If<br />
            <br />
<br />
        End If<br />
        <br />
    End Sub<br />
<br />
    Private Sub btnMadd_Click(sender As Object, e As EventArgs) Handles btnMadd.Click<br />
        If txtMmessage.Text = "" Or txtMsubject.Text = "" Then<br />
            MsgBox("You are missing information could not complete the adding of this email.", MsgBoxStyle.Exclamation, "ERROR")<br />
        Else<br />
            lbMessages.Items.Add(txtMsubject.Text &amp; "=+=" &amp; txtMmessage.Text)<br />
            Try<br />
                Dim i = 0<br />
                Do Until i = -1<br />
                    If i = 0 Then<br />
                        System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", lbMessages.Items.Item(0))<br />
                    Else<br />
                        Dim messages_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;messages")<br />
                        System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", messages_text &amp; vbCrLf &amp; lbMessages.Items.Item(i))<br />
                    End If<br />
                    i += 1<br />
                Loop<br />
            Catch ex As Exception<br />
            End Try<br />
            <br />
<br />
        End If<br />
    End Sub<br />
<br />
#Region "Hot Keys"<br />
    Private Sub txtETBA_HotKey(ByVal Sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtETBA.KeyDown, MyBase.KeyDown<br />
        If e.KeyValue = Keys.Enter Then<br />
            If txtETBA.Text = "" Then<br />
                MsgBox("You are missing information could not complete the adding of this email.", MsgBoxStyle.Exclamation, "ERROR")<br />
            Else<br />
                lbEmailList.Items.Add(txtETBA.Text)<br />
                txtETBA.Text = ""<br />
                Try<br />
                    Dim i = 0<br />
                    Do Until i = -1<br />
                        If i = 0 Then<br />
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;emails", lbEmailList.Items.Item(0))<br />
                        Else<br />
                            Dim emails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;emails")<br />
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;emails", emails_text &amp; vbCrLf &amp; lbEmailList.Items.Item(i))<br />
                        End If<br />
                        i += 1<br />
                    Loop<br />
                Catch ex As Exception<br />
                End Try<br />
            End If<br />
        End If<br />
    End Sub<br />
<br />
    Private Sub txtYEaccount_HotKey(ByVal Sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtYEaccount.KeyDown, MyBase.KeyDown<br />
        If e.KeyValue = Keys.Enter Then<br />
            If txtYEaccount.Text = "" Or txtYEpassword.Text = "" Or txtYEport.Text = "" Or txtYEserver.Text = "" Then<br />
                MsgBox("You are missing information could not complete the adding of account.", MsgBoxStyle.Exclamation, "ERROR")<br />
            Else<br />
                If Not lbYourEmails.Items.Contains(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text) Then<br />
                    lbYE.Items.Add(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text &amp; ";" &amp; txtYEpassword.Text)<br />
                    lbYourEmails.Items.Add(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text)<br />
                    Try<br />
                        Dim i = 0<br />
                        Do Until i = -1<br />
                            If i = 0 Then<br />
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", lbYE.Items.Item(0))<br />
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", lbYourEmails.Items.Item(0))<br />
                            Else<br />
                                Dim YEemails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemails")<br />
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", YEemails_text &amp; vbCrLf &amp; lbYE.Items.Item(i))<br />
                                Dim Youremails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemailsnp")<br />
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", Youremails_text &amp; vbCrLf &amp; lbYourEmails.Items.Item(i))<br />
                            End If<br />
                            i += 1<br />
                        Loop<br />
                    Catch ex As Exception<br />
                    End Try<br />
                Else<br />
                    MsgBox("You have already added this account. Duplicated account was not added!", , "Duplicate Found")<br />
                End If<br />
<br />
<br />
            End If<br />
        End If<br />
    End Sub<br />
<br />
    Private Sub txtYEpassword_HotKey(ByVal Sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtYEpassword.KeyDown, MyBase.KeyDown<br />
        If e.KeyValue = Keys.Enter Then<br />
            If txtYEaccount.Text = "" Or txtYEpassword.Text = "" Or txtYEport.Text = "" Or txtYEserver.Text = "" Then<br />
                MsgBox("You are missing information could not complete the adding of account.", MsgBoxStyle.Exclamation, "ERROR")<br />
            Else<br />
                If Not lbYourEmails.Items.Contains(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text) Then<br />
                    lbYE.Items.Add(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text &amp; ";" &amp; txtYEpassword.Text)<br />
                    lbYourEmails.Items.Add(txtYEserver.Text &amp; ";" &amp; txtYEport.Text &amp; ";" &amp; txtYEaccount.Text)<br />
                    Try<br />
                        Dim i = 0<br />
                        Do Until i = -1<br />
                            If i = 0 Then<br />
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", lbYE.Items.Item(0))<br />
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", lbYourEmails.Items.Item(0))<br />
                            Else<br />
                                Dim YEemails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemails")<br />
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemails", YEemails_text &amp; vbCrLf &amp; lbYE.Items.Item(i))<br />
                                Dim Youremails_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;myemailsnp")<br />
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;myemailsnp", Youremails_text &amp; vbCrLf &amp; lbYourEmails.Items.Item(i))<br />
                            End If<br />
                            i += 1<br />
                        Loop<br />
                    Catch ex As Exception<br />
                    End Try<br />
                Else<br />
                    MsgBox("You have already added this account. Duplicated account was not added!", , "Duplicate Found")<br />
                End If<br />
<br />
<br />
            End If<br />
        End If<br />
    End Sub<br />
<br />
    Private Sub txtMmessages_HotKey(ByVal Sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtMmessage.KeyDown, MyBase.KeyDown<br />
        If e.KeyValue = Keys.Enter Then<br />
            If txtMmessage.Text = "" Or txtMsubject.Text = "" Then<br />
                MsgBox("You are missing information could not complete the adding of this email.", MsgBoxStyle.Exclamation, "ERROR")<br />
            Else<br />
                lbMessages.Items.Add(txtMsubject.Text &amp; "=+=" &amp; txtMmessage.Text)<br />
                Try<br />
                    Dim i = 0<br />
                    Do Until i = -1<br />
                        If i = 0 Then<br />
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", lbMessages.Items.Item(0))<br />
                        Else<br />
                            Dim messages_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;messages")<br />
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", messages_text &amp; vbCrLf &amp; lbMessages.Items.Item(i))<br />
                        End If<br />
                        i += 1<br />
                    Loop<br />
                Catch ex As Exception<br />
                End Try<br />
            End If<br />
        End If<br />
    End Sub<br />
<br />
    Private Sub txtMsubject_HotKey(ByVal Sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtMsubject.KeyDown, MyBase.KeyDown<br />
        If e.KeyValue = Keys.Enter Then<br />
            If txtMmessage.Text = "" Or txtMsubject.Text = "" Then<br />
                MsgBox("You are missing information could not complete the adding of this email.", MsgBoxStyle.Exclamation, "ERROR")<br />
            Else<br />
                lbMessages.Items.Add(txtMsubject.Text &amp; "=+=" &amp; txtMmessage.Text)<br />
                Try<br />
                    Dim i = 0<br />
                    Do Until i = -1<br />
                        If i = 0 Then<br />
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", lbMessages.Items.Item(0))<br />
                        Else<br />
                            Dim messages_text = System.IO.File.ReadAllText(AppPath &amp; "&#92;messages")<br />
                            System.IO.File.WriteAllText(AppPath &amp; "&#92;messages", messages_text &amp; vbCrLf &amp; lbMessages.Items.Item(i))<br />
                        End If<br />
                        i += 1<br />
                    Loop<br />
                Catch ex As Exception<br />
                End Try<br />
            End If<br />
        End If<br />
    End Sub<br />
#End Region<br />
<br />
<br />
<br />
    Private Sub txtCPmsgpersec_TextChanged(sender As Object, e As EventArgs) Handles txtCPmsgpersec.TextChanged<br />
        txtCPmsgpersec.ReadOnly = True<br />
        Try<br />
            If txtCPmsgpersec.Text &lt;= 0 Then<br />
                txtCPmsgpersec.Text = 0.01<br />
            ElseIf txtCPmsgpersec.Text &gt;= 11 Then<br />
                txtCPmsgpersec.Text = 10<br />
            End If<br />
        Catch ex As Exception<br />
<br />
        End Try<br />
        <br />
<br />
        Select Case txtCPmsgpersec.Text<br />
            Case 0.01<br />
                tmrAction.Interval = 2000<br />
                lblDelay.Text = 2000<br />
            Case 0.75<br />
                tmrAction.Interval = 1750<br />
                lblDelay.Text = 1750<br />
            Case 0.5<br />
                tmrAction.Interval = 1500<br />
                lblDelay.Text = 1500<br />
            Case 0.25<br />
                tmrAction.Interval = 1250<br />
                lblDelay.Text = 1250<br />
            Case 1<br />
                tmrAction.Interval = 1000<br />
                lblDelay.Text = 1000<br />
            Case 2<br />
                tmrAction.Interval = 500<br />
                lblDelay.Text = 500<br />
            Case 3<br />
                tmrAction.Interval = 333<br />
                lblDelay.Text = 333<br />
            Case 4<br />
                tmrAction.Interval = 250<br />
                lblDelay.Text = 250<br />
            Case 5<br />
                tmrAction.Interval = 200<br />
                lblDelay.Text = 200<br />
            Case 6<br />
                tmrAction.Interval = 167<br />
                lblDelay.Text = 167<br />
            Case 7<br />
                tmrAction.Interval = 142<br />
                lblDelay.Text = 142<br />
            Case 8<br />
                tmrAction.Interval = 125<br />
                lblDelay.Text = 125<br />
            Case 9<br />
                tmrAction.Interval = 112<br />
                lblDelay.Text = 122<br />
            Case 10<br />
                tmrAction.Interval = 100<br />
                lblDelay.Text = 100<br />
            Case Else<br />
                tmrAction.Interval = 100<br />
                lblDelay.Text = 100<br />
<br />
        End Select<br />
<br />
<br />
    End Sub<br />
<br />
    Private Sub txtCPmsgtosend_TextChanged(sender As Object, e As EventArgs) Handles txtCPmsgtosend.TextChanged<br />
        Dim checkNumber As Integer<br />
        If Integer.TryParse(txtCPmsgtosend.Text, checkNumber) = False Then<br />
            txtCPmsgtosend.Text = 0<br />
        Else<br />
            If txtCPmsgtosend.Text &lt;= -1 Then<br />
                txtCPmsgtosend.Text = 0<br />
            End If<br />
        End If<br />
<br />
    End Sub<br />
<br />
    Private Sub Button2_Click(sender As Object, e As EventArgs) Handles btnCPmsgpersecondUP.Click<br />
        If txtCPmsgpersec.Text &gt;= 0 Or txtCPmsgpersec.Text &lt; 1 Then<br />
            If txtCPmsgpersec.Text = 0.01 Then<br />
                txtCPmsgpersec.Text += 0.24<br />
            Else<br />
                If Not txtCPmsgpersec.Text &gt; 0.99 Then<br />
                    txtCPmsgpersec.Text += 0.25<br />
                Else<br />
                    txtCPmsgpersec.Text += 1<br />
                End If<br />
<br />
            End If<br />
        Else<br />
<br />
        End If<br />
<br />
    End Sub<br />
<br />
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles btnCPmsgpersecondDOWN.Click<br />
        If txtCPmsgpersec.Text &lt;= 1 Then<br />
            txtCPmsgpersec.Text -= 0.25<br />
        Else<br />
            txtCPmsgpersec.Text -= 1<br />
        End If<br />
    End Sub<br />
<br />
    Private Sub btnCPmsgtosendUP_Click(sender As Object, e As EventArgs) Handles btnCPmsgtosendUP.Click<br />
        txtCPmsgtosend.Text += 1<br />
    End Sub<br />
<br />
    Private Sub btnCPmsgtosendDOWN_Click(sender As Object, e As EventArgs) Handles btnCPmsgtosendDOWN.Click<br />
        txtCPmsgtosend.Text -= 1<br />
    End Sub<br />
<br />
    Private Sub tmrAction_Tick(sender As Object, e As EventArgs) Handles tmrAction.Tick<br />
        Dim to_send As Integer = txtCPmsgtosend.Text<br />
        Dim sent As Integer = lblSent.Text<br />
        If to_send &lt;= sent Then<br />
            tmrAction.Enabled = False<br />
            MsgBox("Mail Spam Completed! Sent - " &amp; lblSent.Text &amp; " To Send - " &amp; txtCPmsgtosend.Text, , "Finished")<br />
        Else<br />
            Dim YE() = Split(lbYE.Items.Item(0), ";")<br />
            Dim M() = Split(lbMessages.Items.Item(0), "=+=")<br />
            Dim subject = M(0)<br />
            Dim Message = M(1)<br />
            If CheckBox1.CheckState = CheckState.Checked Then<br />
                Randomize()<br />
                Dim rand As New Random<br />
                Dim intLowNumber = "1000"<br />
                Dim intUpperNumber = "9999"<br />
                subject = rand.Next(intLowNumber, intUpperNumber + 1) &amp; rand.Next(intLowNumber, intUpperNumber + 1) &amp; rand.Next(intLowNumber, intUpperNumber + 1)<br />
                Message = rand.Next(intLowNumber, intUpperNumber + 1) &amp; rand.Next(intLowNumber, intUpperNumber + 1) &amp; rand.Next(intLowNumber, intUpperNumber + 1)<br />
<br />
            End If<br />
            System.IO.File.WriteAllText(AppPath &amp; "&#92;info.txt",<br />
                                        "Email To=" &amp; lbEmailList.Items.Item(0) &amp; vbCrLf &amp; _<br />
                                        "Email Server=" &amp; YE(0) &amp; vbCrLf &amp; _<br />
                                        "Email From=random@gmail.com" &amp; vbCrLf &amp; _<br />
                                        "Account=" &amp; YE(2) &amp; vbCrLf &amp; _<br />
                                        "Passowrd=" &amp; YE(3) &amp; vbCrLf &amp; _<br />
                                        "Subject=" &amp; subject &amp; vbCrLf &amp; _<br />
                                        "Message=" &amp; Message &amp; vbCrLf &amp; _<br />
                                        "Port=" &amp; YE(1) &amp; vbCrLf)<br />
            lbEmailList.Items.Add(lbEmailList.Items.Item(0))<br />
            lbYE.Items.Add(lbYE.Items.Item(0))<br />
            lbMessages.Items.Add(lbMessages.Items.Item(0))<br />
            lbYE.Items.RemoveAt(0)<br />
            lbMessages.Items.RemoveAt(0)<br />
            lbEmailList.Items.RemoveAt(0)<br />
            Process.Start(AppPath &amp; "&#92;sender.exe")<br />
        End If<br />
<br />
<br />
<br />
<br />
<br />
    End Sub<br />
<br />
    Private Sub btnStart_Click(sender As Object, e As EventArgs) Handles btnStart.Click<br />
        lblSent.Text = 0<br />
        tmrAction.Enabled = True<br />
        btnStart.Enabled = False<br />
        btnStop.Enabled = True<br />
    End Sub<br />
<br />
    Private Sub btnStop_Click(sender As Object, e As EventArgs) Handles btnStop.Click<br />
        tmrAction.Enabled = False<br />
        btnStart.Enabled = True<br />
        btnStop.Enabled = False<br />
    End Sub<br />
<br />
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<br />
Public Class Form1<br />
    Dim AppPath As String = New System.IO.FileInfo(Application.ExecutablePath).DirectoryName<br />
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load<br />
        Try<br />
            Dim file_count = System.IO.File.ReadAllText(AppPath &amp; "&#92;count") + 1<br />
            If file_count &gt; 3 Then<br />
                file_count = 0<br />
                System.IO.File.WriteAllText(AppPath &amp; "&#92;count", file_count)<br />
            Else<br />
                System.IO.File.WriteAllText(AppPath &amp; "&#92;count", file_count)<br />
            End If<br />
<br />
            Try<br />
                Dim info = System.IO.File.ReadAllText(AppPath &amp; "&#92;info.txt")<br />
                Dim info_step_1() = Split(info, vbCrLf)<br />
                Dim emailto() = Split(info_step_1(0), "=")<br />
                Dim server() = Split(info_step_1(1), "=")<br />
                Dim from() = Split(info_step_1(2), "=")<br />
                Dim account() = Split(info_step_1(3), "=")<br />
                Dim password() = Split(info_step_1(4), "=")<br />
                Dim subject() = Split(info_step_1(5), "=")<br />
                Dim message() = Split(info_step_1(6), "=")<br />
                Dim port() = Split(info_step_1(7), "=")<br />
                Try<br />
                    Dim mail As New MailMessage<br />
                    mail.Subject = subject(1)<br />
                    mail.To.Add(emailto(1))<br />
                    mail.From = New MailAddress(from(1))<br />
                    mail.Body = message(1)<br />
                    Dim SMTP As New SmtpClient(server(1))<br />
                    SMTP.EnableSsl = True<br />
                    SMTP.Credentials = New System.Net.NetworkCredential(account(1), password(1))<br />
                    SMTP.Port = port(1)<br />
                    SMTP.Send(mail)<br />
                    Label1.Text = "Sent"<br />
                    Dim h = DateTime.Now.Hour<br />
                    Dim m = DateTime.Now.Minute<br />
                    Dim s = DateTime.Now.Second<br />
                    Select Case file_count<br />
                        Case 0<br />
                            If System.IO.File.Exists(AppPath &amp; "&#92;0.txt") Then<br />
                                Dim ol_file = System.IO.File.ReadAllText(AppPath &amp; "&#92;0.txt")<br />
                                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)<br />
                            Else<br />
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;0.txt", "[" &amp; h &amp; ":" &amp; m &amp; "." &amp; s &amp; "] - Email Sent To: " &amp; emailto(1))<br />
                            End If<br />
                        Case 1<br />
                            If System.IO.File.Exists(AppPath &amp; "&#92;1.txt") Then<br />
                                Dim ol_file = System.IO.File.ReadAllText(AppPath &amp; "&#92;1.txt")<br />
                                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)<br />
                            Else<br />
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;1.txt", "[" &amp; h &amp; ":" &amp; m &amp; "." &amp; s &amp; "] - Email Sent To: " &amp; emailto(1))<br />
                            End If<br />
                        Case 2<br />
                            If System.IO.File.Exists(AppPath &amp; "&#92;2.txt") Then<br />
                                Dim ol_file = System.IO.File.ReadAllText(AppPath &amp; "&#92;2.txt")<br />
                                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)<br />
                            Else<br />
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;2.txt", "[" &amp; h &amp; ":" &amp; m &amp; "." &amp; s &amp; "] - Email Sent To: " &amp; emailto(1))<br />
                            End If<br />
                        Case 3<br />
                            If System.IO.File.Exists(AppPath &amp; "&#92;3.txt") Then<br />
                                Dim ol_file = System.IO.File.ReadAllText(AppPath &amp; "&#92;3.txt")<br />
                                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)<br />
                            Else<br />
                                System.IO.File.WriteAllText(AppPath &amp; "&#92;3.txt", "[" &amp; h &amp; ":" &amp; m &amp; "." &amp; s &amp; "] - Email Sent To: " &amp; emailto(1))<br />
                            End If<br />
                    End Select<br />
                Catch ex As Exception<br />
                    Label1.Text = "Failed"<br />
                End Try<br />
            Catch ex As Exception<br />
                MsgBox("File failed to load")<br />
            End Try<br />
        Catch ex As Exception<br />
<br />
        End Try<br />
    <br />
        Me.Close()<br />
    End Sub<br />
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<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fixed creating binds not triggering save as button to be available<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fixed Settings not saving updating prompt saving<br />
v1.1.1 by: Agentsix1 5/8/2014<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added CSS Commands<br />
v1.1 by: Agentsix1 5/8/2014<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added error protection when auto loading files on launch<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added folders and files generate on launch you no longer required to download all files<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Model Command "equip_model Metro Cop"<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Model Command "equip_model Banboard"<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Model Command "equip_model Minecraft"<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Model Command "equip_model Neo Combine"<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Model Command "equip_model Fearbine"<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Model Command "equip_model Slimer"<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Counter Strike Source Commands<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Titles with in the command drop boxes<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Changed the lay out of the settings<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added 2 drop boxes to Settings (Currently Not Used)<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Changed Settings files for a later update (New settings currently not used)<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Settings grabber<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Settings updater to update old settings file to new one<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Windows XP Support<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Settings File and Folder Missing protection<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added file creation if files are missing upon request<br />
v1.0.4 by: Agentsix1 5/7/2014<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fixed program not loading off a tiny bug. (Reported By: MCgoos09) - Major Bug Fix<br />
v1.0.3 by: Agentsix1 5/6/2014<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fixed when canceling Generation<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fixed KP_DOWNARROW (Again)<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fixed Error upon getting script when outputting to text<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fixed Having multiple scripts when outputting script<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Enabled File Merger To Be Loaded On Launch<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fixed a message box on file merge<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Changed settings actually become effective after saving them<br />
v1.0.2 by: Agentsix1 5/6/2014<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fixed File Merger Edit Button<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fixed Basic Script Generation (again)<br />
v1.0.1 by: Agentsix1 5/6/2014<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fixed Cancel Button On Settings<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Clear to Non Key Bind List<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fixed Generation for basic scripts<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added KP_DOWNARROW<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Removed Duplicated DOWNARROW<br />
v1.0 By: Agentsix1 5/6/2014<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Basic Key Bind Creation<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Basic Non Key Bind Creation<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Easy Management of Binds<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Over 300 Commands +Custom Commands<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Able To Modify Current cfg Files<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Able To Create New cfg Files<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Auto Load Your Faviorate Bind File<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Auto Open Basic Script Creation or Settings<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Links Redirecting Back To Lifepunch<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Overwrite Protection When Saving Files<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Ability To Prompt Before Saving Any Files<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Simple Script Creation For: Trails, Models, Chat Tags, or Hats<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Including Most All Basic Commands For Lifepunch Including: Weapons, Trails, Models, Chat Tags, Hats, Ingame Commands, etc.<br />
&nbsp;&nbsp;&nbsp;&nbsp;- No Internet Required Unless Using Check For Updates<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Browse For Bind Files With Ease<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- The ability to merge 2 bind files into 1<br />
 <br />
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<br />
v1.1.1 Virus Scan: https://www.virustotal.com/en/file/3854912e38624632f8ff6bc208fb208336000473eee8ead9712434089fc3f2aa/analysis/1399603265/<br />
v1.1 Download: https://www.mediafire.com/?00f95g3l8f6c7t2<br />
v1.1 Virus Scan: https://www.virustotal.com/en/file/636f6e74e384682a4568a7a9e948b87bcd71a251c1e5b510e6c9274ff3034e09/analysis/1399602298/<br />
v1.0.4 Download: https://www.mediafire.com/?npef2f1bzwtoczp<br />
v1.0.4 Virus Scan: https://www.virustotal.com/en/file/a6e97a9594c0d998f9c44eed4aff7872b439a9346de555a221e95d4cd3e52097/analysis/1399504137/<br />
v1.0.3 Download: https://www.mediafire.com/?zs9g3mdq8kcwuni<br />
v1.0.3 Virus Scan: https://www.virustotal.com/en/file/de3e0b33a77543fac98ff2b6ba5eb41f95e827528b0f568d3ee2fffd9cba8edf/analysis/1399428993/<br />
v1.0.2 Download: https://www.mediafire.com/?86x3h17unl1134a<br />
v1.0.2 Virus Scan: https://www.virustotal.com/en/file/99f34e58427bd380d68861000c201b5bd5920a803777aa07caa7e2706e371693/analysis/1399425361/<br />
v1.0.1 Download: https://www.mediafire.com/?c7ltq90ufhlptf8<br />
v1.0.1 Virus Scan: https://www.virustotal.com/en/file/7df0c6a8e1a6a64c46b4a8c148ba9fd4a92bab0ca699abc9a74f39794426d6fc/analysis/1399425441/<br />
v1.0 Download: https://www.mediafire.com/?jb9p5tuqblbf15h<br />
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<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fixed creating binds not triggering save as button to be available<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fixed Settings not saving updating prompt saving<br />
v1.1.1 by: Agentsix1 5/8/2014<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added CSS Commands<br />
v1.1 by: Agentsix1 5/8/2014<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added error protection when auto loading files on launch<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added folders and files generate on launch you no longer required to download all files<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Model Command "equip_model Metro Cop"<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Model Command "equip_model Banboard"<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Model Command "equip_model Minecraft"<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Model Command "equip_model Neo Combine"<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Model Command "equip_model Fearbine"<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Model Command "equip_model Slimer"<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Counter Strike Source Commands<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Titles with in the command drop boxes<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Changed the lay out of the settings<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added 2 drop boxes to Settings (Currently Not Used)<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Changed Settings files for a later update (New settings currently not used)<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Settings grabber<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Settings updater to update old settings file to new one<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Windows XP Support<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Settings File and Folder Missing protection<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added file creation if files are missing upon request<br />
v1.0.4 by: Agentsix1 5/7/2014<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fixed program not loading off a tiny bug. (Reported By: MCgoos09) - Major Bug Fix<br />
v1.0.3 by: Agentsix1 5/6/2014<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fixed when canceling Generation<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fixed KP_DOWNARROW (Again)<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fixed Error upon getting script when outputting to text<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fixed Having multiple scripts when outputting script<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Enabled File Merger To Be Loaded On Launch<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fixed a message box on file merge<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Changed settings actually become effective after saving them<br />
v1.0.2 by: Agentsix1 5/6/2014<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fixed File Merger Edit Button<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fixed Basic Script Generation (again)<br />
v1.0.1 by: Agentsix1 5/6/2014<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fixed Cancel Button On Settings<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added Clear to Non Key Bind List<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fixed Generation for basic scripts<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Added KP_DOWNARROW<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Removed Duplicated DOWNARROW<br />
v1.0 By: Agentsix1 5/6/2014<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Basic Key Bind Creation<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Basic Non Key Bind Creation<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Easy Management of Binds<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Over 300 Commands +Custom Commands<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Able To Modify Current cfg Files<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Able To Create New cfg Files<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Auto Load Your Faviorate Bind File<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Auto Open Basic Script Creation or Settings<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Links Redirecting Back To Lifepunch<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Overwrite Protection When Saving Files<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Ability To Prompt Before Saving Any Files<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Simple Script Creation For: Trails, Models, Chat Tags, or Hats<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Including Most All Basic Commands For Lifepunch Including: Weapons, Trails, Models, Chat Tags, Hats, Ingame Commands, etc.<br />
&nbsp;&nbsp;&nbsp;&nbsp;- No Internet Required Unless Using Check For Updates<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Browse For Bind Files With Ease<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- The ability to merge 2 bind files into 1<br />
 <br />
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<br />
v1.1.1 Virus Scan: https://www.virustotal.com/en/file/3854912e38624632f8ff6bc208fb208336000473eee8ead9712434089fc3f2aa/analysis/1399603265/<br />
v1.1 Download: https://www.mediafire.com/?00f95g3l8f6c7t2<br />
v1.1 Virus Scan: https://www.virustotal.com/en/file/636f6e74e384682a4568a7a9e948b87bcd71a251c1e5b510e6c9274ff3034e09/analysis/1399602298/<br />
v1.0.4 Download: https://www.mediafire.com/?npef2f1bzwtoczp<br />
v1.0.4 Virus Scan: https://www.virustotal.com/en/file/a6e97a9594c0d998f9c44eed4aff7872b439a9346de555a221e95d4cd3e52097/analysis/1399504137/<br />
v1.0.3 Download: https://www.mediafire.com/?zs9g3mdq8kcwuni<br />
v1.0.3 Virus Scan: https://www.virustotal.com/en/file/de3e0b33a77543fac98ff2b6ba5eb41f95e827528b0f568d3ee2fffd9cba8edf/analysis/1399428993/<br />
v1.0.2 Download: https://www.mediafire.com/?86x3h17unl1134a<br />
v1.0.2 Virus Scan: https://www.virustotal.com/en/file/99f34e58427bd380d68861000c201b5bd5920a803777aa07caa7e2706e371693/analysis/1399425361/<br />
v1.0.1 Download: https://www.mediafire.com/?c7ltq90ufhlptf8<br />
v1.0.1 Virus Scan: https://www.virustotal.com/en/file/7df0c6a8e1a6a64c46b4a8c148ba9fd4a92bab0ca699abc9a74f39794426d6fc/analysis/1399425441/<br />
v1.0 Download: https://www.mediafire.com/?jb9p5tuqblbf15h<br />
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<br />
----------------------------------------------------------------------------------------<br />
- Changed the way Logs are saved<br />
- Changed the way hacks are loaded<br />
- Changed the way Clients are loaded<br />
- Over Hauled The Gui<br />
- Completed The Log Viewer<br />
- Changed Up Colors<br />
- Added Remove Button From Hacks<br />
- Thank you Alicia Melchiott For Finding Errors<br />
----------------------------------------------------------------------------------------<br />
 <br />
War Lords Hack Loader v1.1 Updates - 1/11/2011<br />
----------------------------------------------------------------------------------------<br />
- Changed Location of Logs to &#92;Logs&#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Logs Are Labeled&nbsp;&nbsp;By Date<br />
- Added Check All Button<br />
- Added Updates Link To Look At Updates In Program<br />
- Added Error Protection To Error 53 - No File Found<br />
- Added An Idle Option + Delay Timer + On/Off Switch<br />
- Fixed Check Problem<br />
- Added Options Form<br />
- Added Communication Between Forms<br />
- Got rid of a lot of extra codes that werent needed<br />
- Loaded Every Thing In Settings that you can think of<br />
- Has a clock to keep track of that all import time<br />
- Locked The Text Boxes<br />
- Logs Every Thing You Do<br />
- Mid Process Removed Load Settings Message Box<br />
- Made it Color Full Black White Was Boring<br />
- Idle Message Status Is Accurate<br />
- Moved Help and About To File Tab<br />
- Short Cuts Added List Below<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Load Settings = Ctrl + L<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Save Settings = Ctrl + S<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Help&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= Ctrl + H<br />
&nbsp;&nbsp;&nbsp;&nbsp;- About&nbsp;&nbsp;&nbsp;&nbsp;= Ctrl + A<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Exit&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= Ctrl + E<br />
- Fixed Tab Index<br />
- Log Viewer (Beta - Has Minor Errors But Usable)<br />
----------------------------------------------------------------------------------------<br />
 <br />
Copyright @ 8/23/2012 | Written By : PaSS @ War-Lords.net<br />
Thank you Alicia Melchiott For Finding Errors And Coming To Me To Fix Errors :)<br />
Check Out http://www.war-lords.net/ Today<br />
My Blog : http://jsdomain.zzl.org/<br />
My Other Projects: http://jsdomain.zzl.org/projects.html<br />
Have Any Problems Message Me At War-Lords.net<br />
Or<br />
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<br />
----------------------------------------------------------------------------------------<br />
- Changed the way Logs are saved<br />
- Changed the way hacks are loaded<br />
- Changed the way Clients are loaded<br />
- Over Hauled The Gui<br />
- Completed The Log Viewer<br />
- Changed Up Colors<br />
- Added Remove Button From Hacks<br />
- Thank you Alicia Melchiott For Finding Errors<br />
----------------------------------------------------------------------------------------<br />
 <br />
War Lords Hack Loader v1.1 Updates - 1/11/2011<br />
----------------------------------------------------------------------------------------<br />
- Changed Location of Logs to &#92;Logs&#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Logs Are Labeled&nbsp;&nbsp;By Date<br />
- Added Check All Button<br />
- Added Updates Link To Look At Updates In Program<br />
- Added Error Protection To Error 53 - No File Found<br />
- Added An Idle Option + Delay Timer + On/Off Switch<br />
- Fixed Check Problem<br />
- Added Options Form<br />
- Added Communication Between Forms<br />
- Got rid of a lot of extra codes that werent needed<br />
- Loaded Every Thing In Settings that you can think of<br />
- Has a clock to keep track of that all import time<br />
- Locked The Text Boxes<br />
- Logs Every Thing You Do<br />
- Mid Process Removed Load Settings Message Box<br />
- Made it Color Full Black White Was Boring<br />
- Idle Message Status Is Accurate<br />
- Moved Help and About To File Tab<br />
- Short Cuts Added List Below<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Load Settings = Ctrl + L<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Save Settings = Ctrl + S<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Help&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= Ctrl + H<br />
&nbsp;&nbsp;&nbsp;&nbsp;- About&nbsp;&nbsp;&nbsp;&nbsp;= Ctrl + A<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Exit&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= Ctrl + E<br />
- Fixed Tab Index<br />
- Log Viewer (Beta - Has Minor Errors But Usable)<br />
----------------------------------------------------------------------------------------<br />
 <br />
Copyright @ 8/23/2012 | Written By : PaSS @ War-Lords.net<br />
Thank you Alicia Melchiott For Finding Errors And Coming To Me To Fix Errors :)<br />
Check Out http://www.war-lords.net/ Today<br />
My Blog : http://jsdomain.zzl.org/<br />
My Other Projects: http://jsdomain.zzl.org/projects.html<br />
Have Any Problems Message Me At War-Lords.net<br />
Or<br />
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]<br />
Download: http://www.mediafire.com/?g7d7a4a92dblr50<br />
 <br />
 <br />
Exe Version: 1.3.2.1 [MC Version 12w34a]<br />
Download: http://www.mediafire.com/?705c3187xr3cy2l<br />
 <br />
Dos Version : 1.3.2.1 [MC Version 12w34a]<br />
Download: http://www.mediafire.com/?bhzcem0n5wjk74c<br />
 <br />
 <br />
 <br />
Exe Version: 1.3.1 [MC Version 1.3.1]<br />
 <br />
Download: http://www.mediafire.com/?j4ndjj9ganj9g9d<br />
 <br />
Dos Version: 1.3.1 Build 3000 [MC Version 1.3.1] (its got problems which were fixed in 1.3.2)<br />
 <br />
Download: http://www.mediafire.com/?9dsfwn8agf8eay5<br />
 <br />
Exe Version: 1.2.5.7.1 [MC Version 12w23b]<br />
 <br />
Download: http://www.mediafire.com/?qezg7bztzc1s2z9<br />
 <br />
Dos Version: 1.2.5.7.1&nbsp;&nbsp;[MC Version 12w23b] (i dont belive this works - its got problems which were fixed in 1.3.2)<br />
 <br />
Download: http://www.mediafire.com/?mf5ad22u56ansfa<br />
 <br />
Exe Version: 1.2.5.7 [MC Version 12w22a]<br />
 <br />
Download: http://www.mediafire.com/?j4ndjj9ganj9g9d<br />
 <br />
Dos Version: 1.2.5.7&nbsp;&nbsp;[MC Version 12w22a]<br />
 <br />
Download: http://www.mediafire.com/?9dsfwn8agf8eay5<br />
 <br />
Exe Version: 1.2.5.6.3 [MC Version 12w22a] (This DOES NOT WORK for most people)<br />
 <br />
Download: http://www.mediafire.com/?9r1g72isc77t4xt<br />
 <br />
Dos Version: 1.2.5.7.6.3&nbsp;&nbsp;[MC Version 12w22a] (This does not work - its got problems which were fixed in 1.3.2)<br />
 <br />
Download: http://www.mediafire.com/?45o6r5x64o8eplu<br />
 <br />
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]<br />
Download: http://www.mediafire.com/?g7d7a4a92dblr50<br />
 <br />
 <br />
Exe Version: 1.3.2.1 [MC Version 12w34a]<br />
Download: http://www.mediafire.com/?705c3187xr3cy2l<br />
 <br />
Dos Version : 1.3.2.1 [MC Version 12w34a]<br />
Download: http://www.mediafire.com/?bhzcem0n5wjk74c<br />
 <br />
 <br />
 <br />
Exe Version: 1.3.1 [MC Version 1.3.1]<br />
 <br />
Download: http://www.mediafire.com/?j4ndjj9ganj9g9d<br />
 <br />
Dos Version: 1.3.1 Build 3000 [MC Version 1.3.1] (its got problems which were fixed in 1.3.2)<br />
 <br />
Download: http://www.mediafire.com/?9dsfwn8agf8eay5<br />
 <br />
Exe Version: 1.2.5.7.1 [MC Version 12w23b]<br />
 <br />
Download: http://www.mediafire.com/?qezg7bztzc1s2z9<br />
 <br />
Dos Version: 1.2.5.7.1&nbsp;&nbsp;[MC Version 12w23b] (i dont belive this works - its got problems which were fixed in 1.3.2)<br />
 <br />
Download: http://www.mediafire.com/?mf5ad22u56ansfa<br />
 <br />
Exe Version: 1.2.5.7 [MC Version 12w22a]<br />
 <br />
Download: http://www.mediafire.com/?j4ndjj9ganj9g9d<br />
 <br />
Dos Version: 1.2.5.7&nbsp;&nbsp;[MC Version 12w22a]<br />
 <br />
Download: http://www.mediafire.com/?9dsfwn8agf8eay5<br />
 <br />
Exe Version: 1.2.5.6.3 [MC Version 12w22a] (This DOES NOT WORK for most people)<br />
 <br />
Download: http://www.mediafire.com/?9r1g72isc77t4xt<br />
 <br />
Dos Version: 1.2.5.7.6.3&nbsp;&nbsp;[MC Version 12w22a] (This does not work - its got problems which were fixed in 1.3.2)<br />
 <br />
Download: http://www.mediafire.com/?45o6r5x64o8eplu<br />
 <br />
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>