Project 1999

Go Back   Project 1999 > General Community > Technical Discussion

Reply
 
Thread Tools Display Modes
  #1  
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
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 02:20 AM.


Everquest is a registered trademark of Daybreak Game Company LLC.
Project 1999 is not associated or affiliated in any way with Daybreak Game Company LLC.
Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.