Hello MMowned, If somone could provide me with a little help please this would be greatly appreciated,
I'm making a WoW launcher for my private server, i have made the play button to Set realmlist and launch the game at the same time, i will provide the code i used maybe this could help somone,
To Start the game:
Code:
private void button2_Click(object sender, EventArgs e)
{
if (File.Exists("C/Program Files/World of Warcraft/WoW.exe"))
{
System.Diagnostics.Process.Start(@"C:\Program Files\World of Warcraft\WoW.exe");
}
To Set realmlist.
At the top where it says "using " " " Put using System.IO;
Code:
if (File.Exists("C:/Program Files/World of Warcraft/Data/EnUS/realmlist.wtf"))
{
StreamWriter realmlist = new StreamWriter(@"C:\Program Files\World of Warcraft\Data\EnUS\realmlist.wtf");
realmlist.Write("you realmlist");
realmlist.Close();
All i need to know is how to get my "Website button" to take me to my website, I have researched for hours but i cannot find the code or examples anywhere
Thank's alot,
Caskast!