GetEntrance

Category: Objects
Since engine version: 4.9.1.0 GWE

Description

Returns the current entrance status of an object. True if entering the object is currently allowed.

Syntax

bool GetEntrance (object pObj);

Parameter

pObj:
Object of which to get the entrance value. Can be 0 in local calls.

Example

/* Wird bei klick auf Spezial aufgerufen */
protected func ControlSpecial()
{
	// ist man irgendwo drinnen?
	if(Contained())
		// Tür zu?
		if(!GetEntrance(Contained()))
			// Selbstmord begehen!
			Kill();
return(1);
}		
				
Extreme claustrophobia: if the entrance is blocked, commit suicide.
See also: SetEntrance
wipfmetz, August 2002