Hi,

I wanted to write an alias, that shows me all Letters from 0-255, i did it so:

Code:
alias test {
  var %i 0
  while (%i <= 255) {
    echo -a $chr(%i)
    inc %i
  }
}
[


when i type "/test" now, all i get is:

Quote:
* /echo: insufficient parameters (line 13, script.ini)


if u put something before or after "$chr(%i)" its shows me all right, but only "$chr(%i)" doesnt work...

if i type it directly in a chanwindow or so:

Quote:
//echo -a $chr(46)


works correct.

Must be a bug, or?