Well sure...that whould work and all but when TWO people joins un under 1min... the first one gets to stay even if he doesn't have op...


Improved version ... 1.02
Code:
on *:JOIN:#: {
   timer $+ $nick 1 60 TIMERALIAS $chan $nick
   msg $nick you have one min to OP or be kicked!
}

alias TIMERALIAS {
    if ($2 !isop $1) {
       kick $1 $2 You failed to Op within 1 minute
    }
}


Sure ... there are some problems in this too... like when the user changes nick under the MINUTE it won't work.