Hi, I couldn't find the answer by searching.
I'd like to make my sub-event trigger immediately after the event fires, then do then perform the main event actions.
For example:
Preferred:
Event: Buttmode == True
etc conditions...
Sub-Event: ExtraButt == True
Sub-Event Actions: ButtPoints += 1000
Main Event Actions: ButtPoints += 10
ButtMode = False
ExtraButt = False
How it is now:
Event: Buttmode == True
etc conditions...
Main Event Actions: ButtPoints += 10
ButtMode = False
ExtraButt = False
Sub-Event: ExtraButt == True
Sub-Event Actions: ButtPoints += 1000
If main event actions fire first, then the sub-event won't fire because ButtMode is assigned to false. How do I move the sub-event up before the main event actions?
Thanks!