hi, this is the old script I was using to automatically fade a track in and/or out.
This was saving me to have to load and assign two independent scripts, I don't remember who helped me back at the time (the original .mos file is dated May 2007!).
It looks there's an error on line 4 column 23 token. Have no idea how to fix this...
!name Fade Out 110
!autoload
Variable CancelFadeOut
Variable CancelFadeIn
fade to zero from wherever we are now
Message Fade OUT
set CancelFadeOut false
set CancelFadeIn true
Label FadeOut
Jump end output = 0
Jump end CancelFadeOut = true
Wait msec 50
set output output - 1
Jump FadeOut
Label endSustain
fade back to 110
Message Fade IN
set CancelFadeIn false
set CancelFadeOut true
Label FadeIn
Jump end CancelFadeIn = true
Jump end output >= 110
Wait msec 50
set output output + 1
Jump FadeIn
Label end
end