1) Create an integer attribute in your actor called "Timer" and set it to 100 2) In the actor add a "Display Text" behavior that displays the above attribute (self.Timer) 3) Create a new rule that checks if the attribute self.Timer > 0 4) Within the rule, add a Timer and set to Every 1 second 5) Within the Timer add a change attribute and change self.Timer to self.Timer - 1
Comments
1) Create an integer attribute in your actor called "Timer" and set it to 100
2) In the actor add a "Display Text" behavior that displays the above attribute (self.Timer)
3) Create a new rule that checks if the attribute self.Timer > 0
4) Within the rule, add a Timer and set to Every 1 second
5) Within the Timer add a change attribute and change self.Timer to self.Timer - 1
That should hopefully do it.