Skip to content

Instantly share code, notes, and snippets.

@izabera
Created August 11, 2014 01:03
Show Gist options
  • Save izabera/d4bde15505a89afad35b to your computer and use it in GitHub Desktop.
Save izabera/d4bde15505a89afad35b to your computer and use it in GitHub Desktop.
kvirc make hl bold
#if input is like "user: message"
#and 'user' is a valid nickname in that chan,
#make that nickname bold
%users[]=$chan.users()
%input=$0
%pos=$str.find(%input,":")
if(%pos!=-1){
%nick=$str.left(%input,%pos)
%message=$str.rightfromfirst(%input,":")
for(%i=0;%i<%users[]#;%i++) if(%users[%i]==%nick) %input=$b%nick$b":"%message
}
say %input
halt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment