vs 2019
c# Multiclient: compile and place in the enzf_DX9 folder and run as admin, replace the Ustres.ini in the ini folder.
Code:
using System;
using System.Diagnostics;
using System.Security;
using System.ComponentModel;
namespace Multiclient
{
class Program
{
static void Main(string[] args)
{
ProcessStartInfo startInfo = new ProcessStartInfo("Conquer.exe", "blacknull");
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
startInfo.UseShellExecute = false;
startInfo.CreateNoWindow = true;
Process.Start(startInfo);
}
}
}
Don't PM me about any of this.






