Heh, as I already stated above, I intend to use it on other things than just PHP, I just took my PHP project as an example.
So you want to be able to use dynamically-stacked commands like /timer can be stacked?
We can already do that, I believe;
alias SomeCommand {
if ( %stack == $null ) {
set %stack 1
var %i = %stack
.timer $+ %i $1 $2 $3-
inc %stack
return
}
else {
var %i = %stack
.timer $+ %i $1 $2 $3-
inc %stack
}
}
... Something like that. Though, using hashtables would probably be better, in this case.
