And here is Spin offs.
These are
loop text indicator and script.
These codes are written in a fairly universal way, so you can add new texts easily.
And They autodetect the number of strings, so text can be long or short.
how to add new texts:
1) define new string array
PHP Code:
string NEWTEXT =
{
"Alpha",
"Beta",
......
"Omega"
};
2) Then modify switch function of DrawLoopText() like this
PHP Code:
switch(Select_Text)
{
case 1: ARRAY_SIZE = ArraySize(Epigram); break;
case 2: ARRAY_SIZE = ArraySize(BrightSide); break;
case 3: ARRAY_SIZE = ArraySize(UEFA_CL_Anthem); break;
case 4: ARRAY_SIZE = ArraySize(PeterPiper); break;
case 5: ARRAY_SIZE = ArraySize(NEWTEXT); break; // this line is added.
default: ARRAY_SIZE = ArraySize(Epigram); break;
}
switch(Select_Text)
{
case 1: Text = Epigram [ TIMING ]; break;
case 2: Text = BrightSide [ TIMING ]; break;
case 3: Text = UEFA_CL_Anthem [ TIMING ]; break;
case 4: Text = PeterPiper [ TIMING ]; break;
case 5: Text = NEWTEXT [ TIMING ]; break; // this line is added.
default: Text = Epigram [ TIMING ]; break;
}
Then, if you change "Select_Text" to "5", NEWTEXT will be shown.
Now you can use MT4 like a jukebox, read Goethe's Faust or anything on MT4 if you want.
Have fun.
*Latest version available.