Actions

Open door script does not work

From Zenitel Wiki

Revision as of 09:20, 25 March 2021 by Roarl (talk | contribs)
AI.png

The Open Door script as described in the manual, and as part of standard scripts in Vingtor-Stentofon Operator itself, does not work for both incoming and outgoing calls. This will be rectified in a following release. The correct script is:

string dirop = Av.Params.Get("DIROP", ""); 
string dira = Av.Params.Get("DIRA", ""); 
int nnop = Av.Params.Get("NNOP", 0);
int nna = Av.Params.Get("NNA", 0);


if ((dira==dirop) && (nna==nnop))
{
	Av.STE ("@U%NNB $ER U2 U0 U1 U1 L%DIRB U3 L(%NNOP)%DIROP"); 
	Av.Delay (3500);
	Av.STE ("@U%NNB $ER U2 U0 U0 U1 L%DIRB U3 L(%NNOP)%DIROP");
}
else
{
	Av.STE ("@U%NNA $ER U2 U0 U1 U1 L%DIRA U3 L(%NNOP)%DIROP");
	Av.Delay (3500);
	Av.STE ("@U%NNA $ER U2 U0 U0 U1 L%DIRA U3 L(%NNOP)%DIROP");
}