Legacy:TeamTrigger

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to navigation Jump to search
UT :: Actor (UT) >> Triggers (UT) >> Trigger >> TeamTrigger (Package: Botpack)
UT2003 :: Actor >> Triggers (UT2003) >> Trigger >> TeamTrigger (Package:Gameplay)

A TeamTrigger is a Trigger which can be set to ignore players of a certain team.

Properties

bool bTimed 
byte Team 
This is the team which does not trigger the TeamTrigger. This is very much the opposite of how you would expect it to work. Basically, if you want a door that only red players (team 0) can enter, set this value to 1.

The problem with this is if you have more than two teams, as you do in both MultiCTF and CTF4. MultiCTF has a special subclass of Trigger called MCTFTeamOnlyTrigger that works by setting the Team value to be the team which will set off the trigger.

Related Topics