Okay I wonder if it was possible to kill other players process, by using something like this?
Like close their client or something.
But how would I check it from serverside?
Is it even possible?
Like close their client or something.
But how would I check it from serverside?
Is it even possible?
Code:
public bool process(string processname)
{
foreach (Process P in Process.GetProcesses())
{
if (P.ProcessName.ToLower() == processname || P.ProcessName.Contains(processname))
{
P.Kill();//Kills the process
return true;
}
}
return false;
}