Skip to content
TG007 community snippet #30

No red text on talking

This snippet basically stops the channels you choose, in the tree bar/switch bar from becoming the colour red, when someone talks or does /describe - /me This helps when your idling in channels and you just want the channels you regula

By Jagie Added Mar 27, 2010 Updated Mar 27, 2010
General IRC All snippets
mIRC script 11 lines
About this snippet

Overview

This snippet basically stops the channels you choose, in the tree bar/switch bar from becoming the colour red, when someone talks or does /describe - /me

This helps when your idling in channels and you just want the channels you regularly talk in to be
Source code

mIRC script

11 lines · 233 characters
alias -l NoLiteChans return #chan1 #chan2 #chan3 #chan4
on 1:TEXT:*:#:{
  if ($istok($NoLiteChans,$chan,32)) {
    window -g0 $chan
  }
} 
on 1:ACTION:*:#:{
  if ($istok($NoLiteChans,$chan,32)) { 
    window -g0 $chan
  }
}
Community

Comments

Want to join the discussion? Sign in to TG007.
FanfareWednesday, 7 April, 2010
I think you can shrink this script further like this: [code]alias -l NoLiteChans return #chan1 #chan2 #chan3 on 1:TEXT:*:#:nored $1- on 1:ACTION:*:#:nored $1- alias -l nored { if ($istok($NoLiteChans,$chan,32)) { window -g0 $chan } }[/code]
JagieSunday, 4 April, 2010
Thank you(Y)
chainWednesday, 31 March, 2010
Yes indeed very nice code (Y)
JagieMonday, 29 March, 2010
Thanks smile
err0rSunday, 28 March, 2010
nice