==========
1
TRACE,on
ELAPSED
1,”FadeInSet”,0
END
A: Time cannot be zero.
==========
2
TRACE,on
ELAPSED
1,”FadeInSet”,1
2,”FadeOutSet”,1.5
END
A: Time must be at least 1 second greater than the previous time. The 2nd event should be 2 or greater. It can be 2.5.
==========
3
TRACE,on
ELAPSED
1,”FadeInSet”,15
2,”FadeOutSet”,5
3,”EmoteBigBen”,35
END
A: Time must be a greater than the previous time when
ELAPSED is the event type. Second event must be greater than the 1st. Perhaps 5 should be 25.
==========
4
Trace,on
1,”FadeInSet”,10
2,”FadeOutSet”,20
END
A: Trace shuold be all CAPS (TRACE,on)
==========
5
TRACE ,on
Duration
1,”FadeInSet”,21
2,”FadeOutSet”,20
END
A: Duration shuold be all CAPS (DURATION)
==========
6
TRACE,on
DURATION
1,”FadeInSet”,20
3,”FadeOutSet”,20
END
A: Event #2 is missing. Can not have missing events number or gaps.
==========
7
TRACE,on
DURATION
1,”FadeInSet”,15
2,”FadeOutSet”,10
3,”EmoteBigBen”10
END
*autofx
4,r25=CloseCurtain
A: AutoFX wants to trigger on event #4 but there is no event #4 defined in the *events nc.
==========
8
TRACE ,on
ELAPSED
1,”FadeInSet”,15
2,”FadeOutSet”,15
3,”EmoteBigBen”,15
END
A: Each time must be at least 1 second greater than the previous time.
==========
9
TRACE,on
ELAPSED
1,”FadeInSet”,15
2,FadeOutSet.20
3,”EmoteBigBen”,25
END
A: A period is used instead of a comma on the 2nd event AND there are no quotes around the 2nd event name.
==========
10
TRACE,on
ELAPSED
1,”FadeInSet”,15
2,FadeOutSet,20
3,”EmoteBigBen”,25
END
A: There are no quotes around the 2nd event name.
==========
11
TRACE,on
ELAPSED
1,”FadeInSet”.15
2,”FadeOutSet”20
3,”EmoteBigBen”,25
END
A: Period used instead of a comma on 1st event AND missinc comma on 2nd event.