it is pretty useless jonlar
if you don't know, there is something called 'TOP5' on quakenet
only people being in the top5 list may be opped
a maximum of 5 OPs may be opped...
regardless who type the requestop cmds.
you may type /msg R requestop #chan
and see the server op other people than you
because they are in the TOP5 and not you.
but if you rly want to do it.
you must know all R's reply and catch them in
on *:notice:*:?: {
if ($nick === R) && ($address ==
request@request.quakenet.org) {
do stuff...
instead using a on join event, you could use
raw 366:*: {
;to check if there are no ops and no Q bot
if (!$nick($2,0,o)) && (Q !ison $2) {
.msg R REQUESTOP $2
}
}
well try your self to make it before asking someone to write you a whole script
