Hi there......

I am wondering if i could edit the following script to auto de-op myself on my channel after a time period of lets say 2 minutes.
on *:voice:#:{
if $nick == ^Merlin && $vnick == $me {
.mode $chan -v $me
}
}
for example would i be able to use the -u switch in it somewhere as when i use this:
on *:op:#:{
if $nick == ^Merlin && $vnick == $me {
.mode $chan -o $me
}
}
it generally de-ops me before it de-voices me thus making the de-voice script useless.
many thanks in advance.