Didn't you listen to my lecture on excess tabbing? Your solution goes about doing the same comparison twice in an incredibly inefficient manner. Please don't insult gooshie like that.

Here's my suggestion for improvement:
Code:
alias alpha {
  set %alpha $addtok(%alpha,$nick,32)
  set %beta $remtok(%beta,$nick,1,32)
}

alias beta {
  set %alpha $remtok(%alpha,$nick,1,32)
  set %beta $addtok(%beta,$nick,32)
}

on $*:text:/^!add (alpha|beta)$/iS:#:{
  var %g $regml(1)
  notice $nick You are in the %g group
  %g
}

on $*:text:/^!add\b/iS:#:msg # Invalid Parameters. Use: !add alpha or !add beta
on $*:text:/^!group(s)?$/iS:#:msg # [Group] Alpha $numtok(%alpha,32) users [Group] Beta $numtok(%beta,32) users

Last edited by s00p; 16/11/09 01:30 PM.