Made this very quick in visual c# 2010.. hope you can use it for your next bawts?
Source:Code:using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Net; using System.IO; namespace WindowsFormsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { } private void button1_Click(object sender, EventArgs e) { string srrend = ""; string auth = "http://www.truecheaters.com/forums/tcauth.php?user=" + auser.Text + "&pass=" + apass.Text; WebResponse objResponse; WebRequest objRequest = System.Net.HttpWebRequest.Create(auth); objResponse = objRequest.GetResponse(); using (StreamReader sr = new StreamReader(objResponse.GetResponseStream())) { srrend = sr.ReadToEnd(); sr.Close(); if (srrend.Equals("1")) { label1.Text = ("Wrong user/pass"); } else if (srrend.Equals("0")) { label1.Text = ("Thanks for supporting TC!"); } } } } }
http://www.mediafire.com/download.php?zeqidylm0me


LinkBack URL
About LinkBacks
Reply With Quote

