aaaaaaaaaaaa
This commit is contained in:
parent
873d5b137b
commit
1f6dbf6550
|
|
@ -15,6 +15,7 @@ namespace ConsoleApp1
|
||||||
string folderPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), @"Archblx\", @"Versions\");
|
string folderPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), @"Archblx\", @"Versions\");
|
||||||
string clientPath = Path.Combine(folderPath, version_string + @"\");
|
string clientPath = Path.Combine(folderPath, version_string + @"\");
|
||||||
string filePath = Path.Combine(clientPath, "ArchbloxPlayerBeta.exe");
|
string filePath = Path.Combine(clientPath, "ArchbloxPlayerBeta.exe");
|
||||||
|
|
||||||
Console.Clear();
|
Console.Clear();
|
||||||
Console.WriteLine("ARCHBLOX Launcher");
|
Console.WriteLine("ARCHBLOX Launcher");
|
||||||
Console.WriteLine("Type 1 to Join a Game");
|
Console.WriteLine("Type 1 to Join a Game");
|
||||||
|
|
@ -34,7 +35,6 @@ namespace ConsoleApp1
|
||||||
// Console.WriteLine("Membership: (None BuildersClub TurboBuildersClub OutrageousBuildersClub)");
|
// Console.WriteLine("Membership: (None BuildersClub TurboBuildersClub OutrageousBuildersClub)");
|
||||||
// string membership = Console.ReadLine();
|
// string membership = Console.ReadLine();
|
||||||
string membership = "None";
|
string membership = "None";
|
||||||
Console.WriteLine("Joining game server on " + ip + ":" + port + " as " + username + "(id: " + userid + ")");
|
|
||||||
using (System.Diagnostics.Process pProcess = new System.Diagnostics.Process())
|
using (System.Diagnostics.Process pProcess = new System.Diagnostics.Process())
|
||||||
{
|
{
|
||||||
pProcess.StartInfo.FileName = filePath;
|
pProcess.StartInfo.FileName = filePath;
|
||||||
|
|
@ -44,15 +44,15 @@ namespace ConsoleApp1
|
||||||
pProcess.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Normal;
|
pProcess.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Normal;
|
||||||
pProcess.StartInfo.CreateNoWindow = false;
|
pProcess.StartInfo.CreateNoWindow = false;
|
||||||
pProcess.Start();
|
pProcess.Start();
|
||||||
|
Console.WriteLine("Joining game server on " + ip + ":" + port + " as " + username + "(id: " + userid + ")");
|
||||||
Main();
|
Main();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (number == "2")
|
else if (number == "2")
|
||||||
{
|
{
|
||||||
Console.Clear();
|
Console.Clear();
|
||||||
Console.WriteLine("Server Port (53640 is recommended):");
|
Console.WriteLine("Server Port:");
|
||||||
string port = Console.ReadLine();
|
string port = Console.ReadLine();
|
||||||
Console.WriteLine("Launced game server on port " + port + ". You will have to port-forward that port or use tools such as Hamachi or RAdminVPN to let other users join the game.");
|
|
||||||
using (System.Diagnostics.Process pProcess = new System.Diagnostics.Process())
|
using (System.Diagnostics.Process pProcess = new System.Diagnostics.Process())
|
||||||
{
|
{
|
||||||
pProcess.StartInfo.FileName = filePath;
|
pProcess.StartInfo.FileName = filePath;
|
||||||
|
|
@ -62,6 +62,7 @@ namespace ConsoleApp1
|
||||||
pProcess.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Normal;
|
pProcess.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Normal;
|
||||||
pProcess.StartInfo.CreateNoWindow = false;
|
pProcess.StartInfo.CreateNoWindow = false;
|
||||||
pProcess.Start();
|
pProcess.Start();
|
||||||
|
Console.WriteLine("Launced game server on port " + port + ". You will have to port-forward that port or use tools such as Hamachi or RAdminVPN to let other users join the game.");
|
||||||
Main();
|
Main();
|
||||||
}
|
}
|
||||||
} else
|
} else
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue