I dont understand your problem... you want to add them as op permanently, but when they join it automatically ops them... I dont get it.
on *:text:!op *:#: {
if ($nick isop #) {
mode +o $2
}
else {
msg # No!
}
This will op someone on your command, until they leave.
If you want to add them permanently to your list of hosts
on *:text:!op *:#: {
if ($nick isop #) {
set %temp $address($2)
auser <level> *!*@*. $+ %temp
unset %temp
}
else {
msg # no!
}
}
I havn't tried this exact script, so if anyone finds it crappy, please correct me.
Last edited by BNX; 10/07/05 01:39 AM.