<P>
<P>		return True;
<P>	}
<P>	else
<P>	{
<P>		return False;
<P>	}
<P>}
<P>
<P>function InvokeComputerScreen(Computers computerToActivate, float CompHackTime, float ServerLevelTime)
<P>{
<P>   local NetworkTerminal termwindow;
<P>   local DeusExRootWindow root;
<P>
<P>   computerToActivate.LastHackTime = CompHackTime + (Level.TimeSeconds - ServerLevelTime);
<P>
<P>   ActiveComputer = ComputerToActivate;
<P>
<P>   //only allow for clients or standalone
<P>   if ((Level.NetMode != NM_Standalone) && (!PlayerIsClient()))
<P>   {
<P>      ActiveComputer = None;
<P>      CloseComputerScreen(computerToActivate);
<P>      return;
<P>   }
<P>
