Jump to content
Sign in to follow this  
dustin

Trigger a trigger, i know its out there!

Recommended Posts

sorry, couldnt find it. ive done it before, just doesnt want to work with 1.91. I need to trip a trigger in order for another trigger to be able to be tripped trig1 then trig2.

thanks Dustin.

Share this post


Link to post
Share on other sites

This is how I do it. Put an init trigger in to start a variable as false. Add a line to the on activation field of your first trigger to set that variable to true. Make the variable being true a part of the second trigger's condition.

Init Trigger

condition: true

on activation: somevariable = false

Trigger 1

condition: this

on activation: whateveryouwanttodo; somevariable = true

Trigger 2

condition: this AND somevariable

onactivation: whateverelseyouwanttodo

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×