using System;
using System.Diagnostics;
namespace StartRust
{
class Program
{
static void Main(string [] args)
{
Process iStartProcess = new Process();
iStartProcess.StartInfo.FileName = @"E:\test\Server\server\rustds\RustDedicated.exe";
iStartProcess.StartInfo.Arguments = " -batchmode -nographics ";
iStartProcess.Start();
}
}
}How do I make the following settings?
+server.port 28015 +server.level "Procedural Map" +server.seed 1234 +server.worldsize 4000 +server.maxplayers 10 +server.hostname "Name of Server as Shown on the Client Server List" +server.description "Description shown on server connection window." +server.url "http://yourwebsite.com" +server.headerimage "http://yourwebsite.com/serverimage.jpg" +server.identity "server1" +rcon.port 28016 +rcon.password letmein +rcon.web 1I hope you understand what I want. Thanks in advance.