Hi again. I made a script to count to 5. this is because i only have a basic knowledge of remote scripts. here it is


on *:TEXT:!5:#: {

var %i = 1
while (%i <= 5) {

msg #channelabc %i
inc %i

}
}


But what i would rather is to have the script works as follows:

instead of !5 the user could use !countto 5 and it would output 1,2,3,4,5 on each line.

so that it would also work for !countto 10 or !countto 123 etc.

Once i know how to do this, it will open many more doors in mirc scripting for me.

Thank you for all helped given!