<P>	local Inventory target;
<P>
<P>	if (!bCheatsEnabled)
<P>		return;
<P>
<P>	if(!bAdmin && (Level.Netmode != NM_Standalone))
<P>		return;
<P>
<P>	if(instr(ClassName, ".") == -1)
<P>	{
<P>		NewClassName = "DeusEx." $ ClassName;
<P>		NewClass = class%LT%Inventory%GT%( DynamicLoadObject( NewClassName, class'Class' , true) );
<P>		if (newclass==none)
<P>		{
<P>			NewClassName = "TNM." $ ClassName;
<P>			NewClass = class%LT%Inventory%GT%( DynamicLoadObject( NewClassName, class'Class' , true) );
<P>		}
<P>		if (newclass==none)
<P>		{
<P>			NewClassName = "TNMitems." $ ClassName;
<P>			NewClass = class%LT%Inventory%GT%( DynamicLoadObject( NewClassName, class'Class' , true) );
<P>		}
<P>		if (newclass==none)
<P>		{
