Timeline code For Kismet.

But I did managed managed to get this Instead. There should be an eventlist. Still i believe it is possible to use them for the objectList.

class SeqAct_TrackEvents extends SequenceAction;

var int EventCounter;

function Activated()
{
super.Activated();
EventCounter++;
// Log the event count
Log(“Event " + EventCounter + " has occurred.”);
}

defaultproperties
{
// Set the name of the Kismet node
ObjName=“SeqAct_TrackEvents”
}