grats, you've passed mircscripting 101 :S in the next course you'll learn how a combination of well placed if statements and use of $+ and $str can make your code about half its size laugh

went ahead and made an example:

Code:
alias chanduper {
  var %cd.chan = $?="What channel do you want to copy?", %cd.numchan = $?="How many copies?", %cd.op = $?!="Deop in all of the channels?"
  while (%cd.numchan) {
    join %cd.chan $+ $str(,$v1)
    if (%cd.op) mode %cd.chan -o $me
    dec %cd.numchan
  }
}


now you can work on making that send as few commands to the server as possible, such as by sending all the channels to join in a single join command (/join #chan1,#chan2,#chan3...) to avoid floods ;p perhaps add some error checking and such blush

Last edited by jaytea; 25/09/06 12:15 PM.