View Single Post
  #4  
Old 10-22-2024, 12:40 AM
bhughes bhughes is offline
Skeleton


Join Date: Dec 2018
Posts: 19
Default

I wrote a simple c# console program that i can run while locked up in full screen mode to kill the game, here's the source.

[STAThread]
static void Main()
{
Process [] procs = Process.GetProcesses();

int found = 0;

foreach(Process p in procs)
{
if (p.ProcessName == "eqgame")
{
Console.WriteLine("Killing " + p.ProcessName + " " + p.MainWindowTitle);
p.Kill();
found++;
}
}

if (found == 0)
Console.WriteLine("Everquest not found");
else
Console.WriteLine("Processes killed: " + found.ToString());

Console.ReadKey();
}
Reply With Quote