I'm far from a mIRC expert, but I don't think I've overlooked...
I'd like to see support arrays in the script language, and maybe named collections too.

I want to avoid crappy code like this:

Code:
var %max = 3
var %i = 1
while (%i <= %max) {
  var %variable_ [ $+ [ %i ] ]
  inc %i
}


(which, I might add, violates the behaviour of most variable scoping rules in 'real' languages :tongue:)

Last edited by SubSpace; 24/01/03 11:11 PM.