It's kinda interesting how people have there little wants and diswants. I'm no exception. So here is my odd ball want. I would love a game that kills AHK. I want the best player to win. Not the best scripter
private void cmdKillAhk()
{
var ahkDriverProcesses = Process.GetProcesses().
Where(pr => pr.ProcessName == "AutoHotkey"); // without '.exe'
int i = 0;
foreach (var process in ahkDriverProcesses)
{
i++;
process.Kill();
}
//MessageBox.Show("i=" + i.ToString());
}