Add this to your remote scripts screen, close the window and type /harr to get a pleasant surprise!
alias harr {
var %i = 1
while (%i <= 10) {
echo -a HARR!
inc %i
}
}
if you make %i = 0 you can loop it and increase the variable before the commands which gives you more flexibility.
alias harr {
var %i = 0
while (%i <= 10) {
inc %i
echo -a $+($ord(%i),!)
}
}
will do like
1!
2!
3!
4!
etc which is good for looping through a hash table or even a text file, I use it in my stat script (runescape) to loop through the items which can be used to get to the next level which turns out like this:
Green Dragons: 888 Red Dragons: 666
etc etc
anyway its rly a matter of preferrence :) to each his own ;)