I was trying to halt the opening of a query window when a certain nick sent a message but I also had an ON TEXT event that had to do certain stuff with the message that he was sending.
Issue is that if I halt the query from opening the ON TEXT event doesnt work anymore which is peculiar to me because I still get the PRIVMSG raws.
(7.43 version)
Test case:
ON ^*:OPEN:?:*:{
if ($nick == testnick) {
haltdef
}
}
ON ^*:TEXT:*:?:{
if ($nick == testnick) {
do stuff
haltdef
}
}
Thanks