Hello,

I'm trying to make a script which will take data from a webpage and post it on irc.

I've managed to do it, but im not able to make it repeat its job multiple times.

This is what i tried:

alias mib {
var %i = 0
%bitka = $1
while (%i <= 4) {
$myb(%bitka)
inc %i 1
}
}

Alias "myb" works, it gets the data and posts it.

I tried to make it repeat what alias "myb" does 5 times, but it does it only once. Idealy i want it to keep posting that data until i turn it off, but i wanted to go with baby steps. Not successfuly though.

Help is appreciated. Thanks.

Last edited by crreep; 16/03/11 09:58 PM.