Shakto
Community Contributors
You can do a script server side : (npc side) to provide an annouce every hours
Get the process exit code and check. We should need if the wrong login exit code is different from the one from exit in normal way (shuld be different):2) About auto-closing : There is only 1 problem we are not using old login screen anymore we are using launchers.
One possible mechanism would be for the launcher to start the client then go to background and if the client gets closed off the launcher returns to normal so you can just press login again.
using System.Diagnostics;ProcessStartInfo start = new ProcessStartInfo();// Enter in the command line arguments, everything you would enter after the executable name itselfstart.Arguments = arguments; start.FileName = "RagexeRE.exe";// Run the external process & wait for it to finishusing (Process proc = Process.Start(start)){ proc.WaitForExit(); // Retrieve the app's exit code exitCode = proc.ExitCode; if(exitCode == 0) Application.Exit();}
@M45T3R Yes, is for the client launcher.@M45T3R I think he was talking about the launcher not the client itself
@Vali thanks for the info. I will add the code to my launcher.
We use essential cookies to make this site work, and optional cookies to enhance your experience.