Open door script does not work: Difference between revisions
From Zenitel Wiki
No edit summary |
No edit summary |
||
| Line 21: | Line 21: | ||
[[Category: | [[Category:VS-Operator Troubleshooting]] | ||
Revision as of 09:34, 7 February 2023
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");
}
