Cogito, ergo sum

Legacy:Highlander/BallReturnVolume

From Unreal Wiki, The Unreal Engine Documentation Site
< Legacy:Highlander
Revision as of 09:34, 24 November 2002 by Highlander (Talk)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
class BallReturnVolume extends Volume;
//Written by Robin "Highlander" Murray Nov 24th 2002
//when the ball enters this volume it will be sent home
//if player carrys ball through volume no effect will be taken.
/*To add this functionality to already existing volume, extend actor instead and link the volume to this actor */
function touch (actor other)
	{
	if (other.IsA('xBombFlag'))
		{
		xBombFlag(Other).sendhome();
 
		}
	}