Name the variable the nick so it wont be duplicated.

/test info1 info2 info3

alias test {
$1 = info1
$2 = info2
$3 = info3
}
Yes this is nice to do with aliases. I use this a lot, but what if $1 or $3 is data seperated by spaces? Gettok would be the best for this.

/test info1,info2,info3
alias test {
info1 = $gettok($1,1,44)
etc.
}

I sometimes create temporary hash tables named after the nickname to store a few lines of data. Then when all is finished I hfree the table.