I have the following code in my bot...I know there is a bracket problem somewhere but I just cant see it...any help would be appreciated.
#channelops on
;op on entry
ON @*:JOIN:#pleasure_library, #pleasure_library_ops {
if (me == Pleasure[BOT]) {
; OPS
if ($nick == ThePurpleKat) {
mode $chan +o $nick
}
}
}
; op up on !opup command
ON @*:TEXT:!opup:#pleasure_library,#pleasure_library_ops {
if (me == Pleasure[BOT] {
;OPS
if ($nick == ThePurpleKat) {
mode $chan +o $nick
}
}
}
'op down on !opdown command
ON @*:TEXT:!opdown:#pleasure_library, #pleasure_library_ops {
if (me == Pleasure[BOT]
;OPS
if ($nick == ThePurpleKat) {
mode $chan -o $nick
}
}
}
#channelops end