Are you looking for /var - a temp. way of storing a variable which is then reset after the event has finished?
alias example {
var %test = This is a test.
echo 4 -a - %test
var %i = 10
while (%i) {
echo 3 -a - %i
dec %i
}
echo 4 -a - %test - is still set.
}
Like so? If not, please clarify.
Eamonn.