I came across this 'Error allocating stack memory' being attributed to an insignificant echoing alias I wrote, when removing the .timer from within a different my Example alias so that buried within this was then a .timer-less call to itself... not possible.

Bad:
Code:
alias Example {
...
Example $1-
...
}


Good:
Code:
alias Example {
...
.timerExample 1 1 Example $1-
...
}