Hey, sorry I don't seem to have notifications turned on for replies. Thank you for assisting me!
I am exploring around a bit now with using else conditions, and while I understand the concept (and use them in other applications), mine always seem to be red/unreadable.
I have read the tutorials a few times now, but the hierarchy of events is very confusing to me still.
To use a simple example, how would I use an else condition for:
If NetGain(v) is greater than or equal to ToGo(v), set ScoreboardDown(text) to 1 and ScoreboardToGo(text) to 10.
//This basically just generates a new set of "1st and 10" for the team as they gained more than the yardage needed for a 1st down.//
Else
Subtract NetGain(v) from ToGo(v), set ScoreboardToGo(text) to ToGo(v).
Add +1 to Down(v), set ScoreboardDown(text) to Down(v).
If Down(v) is greater than 4, set ScoreboardDown(text) to 1 and ScoreboardToGo(text) to 10.