Worst-case scenario: the UEd Goblin wipes the map and burns down your house.

Difference between revisions of "UE2:RandomTrigger"

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search
m (cleaning up)
m (cleaning up)
Line 45: Line 45:
 
* [[Legacy:Event|Event]] and [[Legacy:Tag|Tag]]
 
* [[Legacy:Event|Event]] and [[Legacy:Tag|Tag]]
 
* [[Legacy:Dynamic Array|Dynamic Array]]
 
* [[Legacy:Dynamic Array|Dynamic Array]]
 +
* [[Legacy:Third-Party Components|Third-Party Components]]

Revision as of 13:49, 1 May 2008

UE2 Triggers >> Actor >> RandomTrigger (custom)


This custom trigger will cause random events to fire from a dynamic list of event names.

Properties

Main

array<name> EventList 
A dynamic array of Events to trigger.

Source Code

//=============================================================================
// RandomTrigger
// Uses a random value to select from a dynamic array of Events when triggered.
// by SuperApe -- Sept 2005
//=============================================================================
class RandomTrigger extends Triggers
	placeable;
 
var()	array<name>	EventList;
 
event Trigger( Actor Other, Pawn EventInstigator )
{
	Event = EventList[ FRand() * EventList.length ];
	TriggerEvent( Event, Other, EventInstigator );
}
 
//defaultproperties
//{
//     Texture=Texture'Engine.S_Trigger'
//}

Notes

If this actor is compiled inside the Unreal Editor, edit the default property Display -> Texture manually as indicated in the comment at the bottom of the code using the "editdefault class=RandomTrigger" Unreal Editor console command. If you are Compiling with UCC, simply un-comment the defaultProperties block.

Related Topics