how can i write an alert function to display multiple lines of text in a single alert, like
line1
line2
line3
in comment it is easy with \n but what about the alert ?
second question
i am trying to write an ea in a story telling format, such that on each different event an alert is shown only once specific to that event
is this method correct ?
line1
line2
line3
in comment it is easy with \n but what about the alert ?
second question
i am trying to write an ea in a story telling format, such that on each different event an alert is shown only once specific to that event
Inserted Code
static int a = 0;
if (a == 0)
{
Alert("aa ");
a = 1;
} is this method correct ?