Today i've updated to 7.83 and my whole script that works perfect on older version now is broken..

Having this example:

Code
test {
  %a = 1 | %b = 2
  $iif(%a == 1,%b = 2,%b = 3)
}

When i perform /test gives the error:

Code
* /2: not connected to server (line 5518, aliases.scf)

Also,

Code
test {
  %a = 1 | %b = 2
  $iif(%a == 1,set %b 2,set %b 3)
}

gives:

Code
* /set: invalid parameters (line 5518, aliases.scf)

I have to change many lines of code to change $iif() to if (%a == 1) %b = 2 | else %b = 3

if a bug or what?

P.S. Having:

Code
twstr {
  %a = 1 | $iif(%a == 1,echo -a Yes,echo -a No)
}

works fine!