I changed default On Text becouse I wanted to have @, +, or _ infront of the nickname if they are ops, voiced or normal users. I used this code:
on ^*:text:*:#:{
if ($nick isop $chan) { set %tekst [@][ $nick ] $1- }
elseif ($nick isvoice $chan) { set %tekst [+][ $nick ] $1- }
else { set %tekst [_][ $nick ] $1- }
echo $chan %tekst
unset %tekst | halt
}
Noooooow, it works just fine, except,
1. that before I changed defaults, when I click on the nickname, who said something in the channel, with the right mouse button a menu opens and I could select Whois (I noticed this in mIRC 6.12. not sure for earlier), but now I can't do that, it only opens channel popup. I was woundering if there is a way to script what was mIRC doing by default.
2. Earlier when a channel is not active, and somebody says something in that channel it becomes red, and now it doesn't change its color, well actually it does, but in some gray color just like when you use echo in some windows (I did use echo in my code, so I am not suprised by that behaviour). Is there a way for my channel to become red line before

thanx!