People been being an ass to you? Here is a simple tweek to the auth that I did to get rid of people. This isn't the only way to do this, so please feel free to experiment.
This is the only thing I changed:Code:Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click WebBrowser1.Navigate("http://www.truecheaters.com/forums/tcauth.php?user=" & TextBox1.Text & "&pass=" & TextBox2.Text) End Sub Private Sub WebBrowser1_DocumentCompleted(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted If WebBrowser1.DocumentText.Contains("0") = True Then If TextBox1.Text = "Alenah" = True Then MessageBox.Show("You have been banned, if you would like to resolve this issue, please contact Restless") Me.Close() ElseIf TextBox1.Text = "Alenah" = False Then MessageBox.Show("Auth passed. Enjoy the bot!") Me.Hide() End If End If If WebBrowser1.DocumentText.Contains("0") = False Then MessageBox.Show("Auth failed. Please subscribe to True Cheaters!") Me.Close() End If End Sub End Class
If the auth passes, but that username is in the textbox, it will stop them from using the bot and close it. I'm assuming this will work. I am in a different usergroup that doesn't allow me to pass the TC sub auth. If you have any questions, please ask.Code:If WebBrowser1.DocumentText.Contains("0") = True Then If TextBox1.Text = "Alenah" = True Then MessageBox.Show("You have been banned, if you would like to resolve this issue, please contact Restless") Me.Close() ElseIf TextBox1.Text = "Alenah" = False Then MessageBox.Show("Auth passed. Enjoy the bot!") Me.Hide() End If End If


LinkBack URL
About LinkBacks
Reply With Quote