I have a script that voices people when they /ctcp mybot VOICEME, here is an excerpt of the VERY simple script I threw together:
bind ctcp - VOICEME ctcpvoice
proc ctcpvoice {nick uh hand dest key arg} {
pushmode #mychan +v $nick
putlog "Voice requested from $nick"
}
The problem is, I have two lines that come through on the partyline:
Voice requested from MarlbMan
CTCP VOICEME: from MarlbMan (blah@blah.blah)
Is there any way to stop it from pushing the CTCP VOICEME: line in console?