<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
	<title>360Revolution</title>
	<description>Latest updates pertaining to the 360Revolution mod tool</description>
	<link>http://www.xpgamesaves.com</link>
	<pubDate>Tue, 21 Feb 2012 16:37:11 +0000</pubDate>
	<ttl>0</ttl>
	<item>
		<title>tdu2 mod tool</title>
		<link>http://www.xpgamesaves.com/topic/31860-tdu2-mod-tool/</link>
		<description>hi can some one do me a new mod tool for tdu2 as old 1 dont work anymore</description>
		<pubDate>Tue, 21 Feb 2012 16:37:11 +0000</pubDate>
		<guid>http://www.xpgamesaves.com/topic/31860-tdu2-mod-tool/</guid>
	</item>
	<item>
		<title>personally i think this would be great for this program</title>
		<link>http://www.xpgamesaves.com/topic/31811-personally-i-think-this-would-be-great-for-this-program/</link>
		<description><![CDATA[a reporting system<br />
<br />
using a new form<br />
<br />
got a sort good example from one of my very old web browsers<br />
<span rel='lightbox'><img src='http://gyazo.com/95965f2dfed86cabdfd90936bf1d0acc.png' alt='Posted Image' class='bbc_img' /></span><br />
<br />
<span rel='lightbox'><img src='http://gyazo.com/09fee9c9984bc22e5917d294fc58db09.png' alt='Posted Image' class='bbc_img' /></span><br />
<br />
<span rel='lightbox'><img src='http://gyazo.com/1f7433bc18e14262475249f3ae243b1f.png' alt='Posted Image' class='bbc_img' /></span><br />
<br />
<span rel='lightbox'><img src='http://gyazo.com/73627822f5cf57ddbdfc22b2c43eb581.png' alt='Posted Image' class='bbc_img' /></span><br />
<br />
Code:<br />
<pre class='prettyprint'>
Imports System.Net.Mail
Public Class Rprt_Bug
	'Declare the variables
	Dim per As Integer 'This will contain the %
	Dim typ As String 'This will contain the Report Type
	Dim bugmsg As String ' This will contain the message
	Dim bosinfo As ApplicationServices.AssemblyInfo 'App info
	Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
		'Declare what we need
		typ = ComboBox1.Text 'Set the report type
		Label4.Visible = True
		bugmsg = TextBox1.Text 'Set the report text
		PictureBox2.Visible = True
		BackgroundWorker1.RunWorkerAsync() 'Sends the report
		Button1.Enabled = False 'Disable the 'Send' button
		Timer1.Enabled = True
	End Sub
	Private Sub BackgroundWorker1_DoWork(ByVal sender As System.Object, ByVal e As System.ComponentModel.DoWorkEventArgs) Handles BackgroundWorker1.DoWork
		Try
			Dim msg As New MailMessage()
			' Your mail address and display name.
			' This what will appear on the From field.
			' If you used another credentials to access
			' the SMTP server, the mail message would be
			' sent from the mail specified in the From
			' field on behalf of the real sender.
			msg.From = _
				New MailAddress("sender_email@hotmail.co.uk")
			' To addresses
			msg.To.Add(New MailAddress("Reciever_email@hotmail.co.uk", "password"))
			' You can specify CC and BCC addresses also
			' Set to high priority
			msg.Priority = MailPriority.High
			msg.Subject = "Caspian Bug Reportage &#91;" & typ & "&#93;"
			' You can specify a plain text or HTML contents
			msg.Body = bugmsg
			' In order for the mail client to interpret message
			' body correctly, we mark the body as HTML
			' because we set the body to HTML contents.
			msg.IsBodyHtml = False
			' Connecting to the server and configuring it
			Dim client As New SmtpClient()
			client.Host = "smtp.live.com"
			client.Port = 25
			client.EnableSsl = True
			' The server requires user's credentials
			' not the default credentials
			client.UseDefaultCredentials = False
			' Provide your credentials
			client.Credentials = New System.Net.NetworkCredential("sender_email@hotmail.co.uk", "password")
			client.DeliveryMethod = SmtpDeliveryMethod.Network

			' Use SendAsync to send the message asynchronously
			client.Send(msg)
			Label4.Visible = True
			Timer1.Enabled = True
			TextBox1.Enabled = False
		Catch ex As Exception
			MsgBox("Failed to send the report. There might be some problem with your internet connection. Please send your report after your internet connection is connected. Thank You &#91;" & ex.Message & "&#93;", MsgBoxStyle.Critical, "Error")
			Button1.Enabled = True 'Same exception As..
		End Try
	End Sub
	Private Sub BackgroundWorker1_ProgressChanged(ByVal sender As Object, ByVal e As System.ComponentModel.ProgressChangedEventArgs) Handles BackgroundWorker1.ProgressChanged
		'Shows the %
		per = e.ProgressPercentage
	End Sub
	Private Sub BackgroundWorker1_RunWorkerCompleted(ByVal sender As Object, ByVal e As System.ComponentModel.RunWorkerCompletedEventArgs) Handles BackgroundWorker1.RunWorkerCompleted
		'Report Sent! Notify user ..
		BackgroundWorker1.CancelAsync()
		MsgBox("Thank you for helping us in improving Caspian 1.0 and reporting bugs. We will keep your report confidential and safe. ", MsgBoxStyle.Information, "Sent")
		Button1.Enabled = True
		PictureBox2.Visible = False
		Label4.Visible = False
	End Sub
	Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
		'Set the 'sending feedback' text
		Label4.Text = "Sending Feedback (" & per & "%)"
	End Sub
	Private Sub Form6_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
		'Show the icon
		Me.Icon = Main.Icon
		PictureBox2.Visible = False
	End Sub
	Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
		'Declare what we need
		typ = ComboBox1.Text 'Set the report type
		Label4.Visible = True
		bugmsg = TextBox1.Text 'Set the report text
		PictureBox2.Visible = True
		BackgroundWorker1.RunWorkerAsync() 'Sends the report
		Button1.Enabled = False 'Disable the 'Send' button
		Timer1.Enabled = True
	End Sub
End Class
</pre>any<br />
<br />
any questions or you want me to set this up for you i am willing to help<br />
<br />
Thanks Jet2020]]></description>
		<pubDate>Mon, 20 Feb 2012 17:31:20 +0000</pubDate>
		<guid>http://www.xpgamesaves.com/topic/31811-personally-i-think-this-would-be-great-for-this-program/</guid>
	</item>
	<item>
		<title>360Revolution Kingdoms of Amalur Reckoning Mod</title>
		<link>http://www.xpgamesaves.com/topic/31669-360revolution-kingdoms-of-amalur-reckoning-mod/</link>
		<description>Im new here, hi. Just downloaded 360Revolution, and tried to mid KOAR the gold, followed directions and still nothing. Can someone give me a mini tutorial on how to do this because it is not working for me and Ive tried several ways! Thanks ahead of time!</description>
		<pubDate>Tue, 14 Feb 2012 20:08:30 +0000</pubDate>
		<guid>http://www.xpgamesaves.com/topic/31669-360revolution-kingdoms-of-amalur-reckoning-mod/</guid>
	</item>
	<item>
		<title><![CDATA[Ideas For 360Revolution [READ]]]></title>
		<link>http://www.xpgamesaves.com/topic/31607-ideas-for-360revolution-read/</link>
		<description><![CDATA[I have come across some interesting things during my programming experience so i would like to share!<br />
<br />
Well hear are some off my ideas for httprequests using strings ect!<br />
<br />
i dont no if this has a sign in request for the tool but maybe have a sign in as the splash screen and once you signed in it sends you to the form <br />
<br />
then could have say : "user: Jet2020" on the top left or right showing user information <br />
<br />
<br />
<br />
<br />
Another idea off mine:<br />
posting on the tool you are using <br />
so this would be using sending requests and to server and then sending them to the program so if you like, would be a instant chat server under the tool <br />
<br />
this would have to include multipal servers there are free ones like MySQL but they are very easy to hack and most likely to ruin the tool.<br />
<br />
Last Idea:<br />
Have a form for people subscribing to premium <br />
so when people sign in/sign up they can decide on buying premium to use tools that you dont have to pay for.<br />
<br />
same again using httprequests <br />
<br />
if you need any help or any quistions on PHP coding or Coding the tool im hear to help.]]></description>
		<pubDate>Mon, 13 Feb 2012 22:10:47 +0000</pubDate>
		<guid>http://www.xpgamesaves.com/topic/31607-ideas-for-360revolution-read/</guid>
	</item>
	<item>
		<title>Need For Speed Undercover help please</title>
		<link>http://www.xpgamesaves.com/topic/31544-need-for-speed-undercover-help-please/</link>
		<description><![CDATA[Hey I was just wondering if one of the devteam can maybe look into this save for me, a very helpful person named Enigma looked and said its checksummed, and said to come here, the stats are below along with a link to the save, thank you for helping.<br />
<br />
The money is 32,700 and the cars are Chevrolet Chevelle SS, Dodge Charger SRT8 Super Bee, Mitsubishi Lancer EVOLUTION, and Plymouth HEMI® Cuda. I would be more than satisfied with an insane amount of cash, but if you would be able to add like a police suv it would be 20 times better, I understand if you can't lol.<br />
<br />
<a href='http://www.mediafire.com/?srq3nas0dmbw1nv' class='bbc_url' title='External link' rel='nofollow external'>http://www.mediafire...srq3nas0dmbw1nv</a>]]></description>
		<pubDate>Sun, 12 Feb 2012 19:06:09 +0000</pubDate>
		<guid>http://www.xpgamesaves.com/topic/31544-need-for-speed-undercover-help-please/</guid>
	</item>
</channel>
</rss>
