<P>//-------------------------------------------------------------------------------------
<P>
<P>exec function ToggleEggDisplay()
<P>{
<P>	local DeusExRootWindow root;
<P>
<P>	bEggVisible = !bEggVisible && (counteggs()%GT%0);
<P>
<P>	root = DeusExRootWindow(rootWindow);
<P>	if (root != None)
<P>		root.UpdateHud();
<P>}
<P>
<P>exec function addegg(int ID)
<P>{
<P>	if (!bCheatsEnabled)
<P>		return;
<P>
<P>	eggs = ((eggs ^ 19734) | (1 %LT%%LT% (ID - 1))) ^ 19734;
<P>	Saveconfig(); //untested //lags
<P>}
<P>
<P>function int counteggs()
<P>{
<P>	local int NumEggs;
<P>	local int curEggs;
<P>	NumEggs = 0;
