is IRD alarm text vbscript?

hello,
I am setting up a routing alarm in IRD strategy and wanted to check if the text is vbscript or if not what language.
Looking at an existing one, it contains ‘Cat’ function but this is available in options of function block. Only other option seems to be using space key until the next bit of text is on a new line..
the purpose is to make the alarm reaction email more readable than a single line with multiple data.

thanks

you can always use ECMA script with IRD.

Thanks,

I have tried to do this but not getting anywhere.
My current alarm script is as follows (function block in IRD)

Alarm[22001,Cat[‘Call ‘,Var_ConnID,’ Has Default Routed’,’ Cause: NO SKILL’,‘Var1=’,Var_Var1,‘Var2=’,Var_Var2, ‘Time=’,strUTCTime]]

How do I add I line breaks so the alarm reaction email will be something like this:

Alarm Reaction: Call 00a702b316765432 Has Default Routed Cause: NO SKILL
Var1=Var1
Var2=Var2
Time=2018-03-06T15:44:29Z

thanks

Something like that probably (function Char[code1, code2, …] return string composed from provided ascii codes):

Alarm[22001,Cat[‘Call ‘,Var_ConnID,’ Has Default Routed’,’ Cause: NO SKILL’, Char[13, 10],‘Var1=’,Var_Var1,Char[13, 10], ‘Var2=’,Var_Var2, Char[13, 10], ‘Time=’,strUTCTime]]

thanks, worked great.