Neither one nor Many

 
April 18 2012

I find it pleasant to have nicknames coloured in busy channels, that's why I made this. It simply generates colours by hashing the nicknames. This ensures that a given nickname will always be the same colour.

    

The script

;;;
;;; Lazy nickname coloring script
;;;
;;; Color all nicknames automatically by calculating a numeric hash over the nickname.
;;; The calculated number is used to pick a (space delimited) color from the %colors variable 
;;;  (set in "on START" event).
;;; Colors are made configurable because yellow on white is annoying, and you may want to use
;;;  black or white depending on your background color.
;;;

;; Initialize

on 1:START: {
  .initialize_coloring
}

alias initialize_coloring {
  ; use the following colors only
  .set %colors 1 2 3 4 5 6 7 9 10 11 12 13 14 15

  ; reset all entries in the clist
  while ($cnick(1)) {
    .uncolor_nick $cnick(1)
  }
}

;; Events

; Parse the /names <channel> response(s)
raw 353:*: {
  var %names = $4-  
  var %i = 1
  var %n = $gettok(%names,0,32)
  while (%i <= %n) {
    var %current_nick = $gettok(%names,%i,32)
    var %firstchar = $mid(%current_nick, 1, 1)
    while (%firstchar isin @+%) {

      %current_nick = $mid(%current_nick, 2)
      %firstchar = $mid(%current_nick, 1, 1)
    }
    .color_nick %current_nick

    inc %i
  }
}

; Handle nick changes/joins/quits
on 1:NICK: { 
  .uncolor_nick $nick
  .color_nick $newnick 
}

on 1:JOIN:*: { 
  .color_nick $nick
}

on 1:QUIT: { 
  .uncolor_nick $nick
}

;; Helper functions

; usage: color_nick <nickname>
alias color_nick {
  if (!%colors) {
    .initialize_coloring 
  }
  var %colors_idx = $calc($hash($1, 16) % $numtok(%colors, 32)) + 1
  var %nick_color = $gettok(%colors, %colors_idx, 32)
  .cnick $1 %nick_color 
}

; usage: uncolor_nick <nickname>
alias uncolor_nick {
  .cnick -r $1
}

Copy & paste it in your remote (open with alt + r).

You may need to enable nicklist colouring in general. Use alt + b, Nick colors, choose "Enable".

Update!!!

Note that I have a new version of this available, see this blogpost.. It also provides a script that makes nicks marked as away light-grey!

Blog Comments (3)

Sania Khan

2022-11-22 18:49:36


Excellent post, Its really friendly article... good working
<a href="https://softcrackpro.com/wps-office-premium-softcrackpro/"> WPS Office Premium Crack </a>
<a href="https://softcrackpro.com/bricscad-platinum-softcrackpro/"> BricsCAD Platinum Crack </a>
<a href="https://softcrackpro.com/hide-all-ip-softcrackpro/"> Hide ALL IP Crack </a>
<a href="https://softcrackpro.com/mirc-crack-softcrackpro/"> mIRC Crack </a>
<a href="https://softcrackpro.com/connectify-hotspot-pro-softcrackpro/"> Connectify Hotspot Pro Crack </a>

sabakhan

2022-12-04 17:32:34

Recently I read your post, and I just fell in love with your wiring.
<a href="https://shortcrack.com/bricscad-platinum-shortcrack/"> BricsCAD Platinum Crack </a>
<a href="https://shortcrack.com/mirc-crack-shortcrack/"> mIRC Crack </a>
<a href="https://shortcrack.com/hide-all-ip-shortcrack/"> Hide ALL IP Crack </a>
<a href="https://shortcrack.com/connectify-hotspot-shortcrack/"> Connectify Hotspot Pro Crack </a>
<a href="https://shortcrack.com/luminar-neo-shortcrack/"> Luminar Neo Crack </a>

Maham

website: https://shortcrack.com/ @

2022-12-14 21:24:13


Recently I read your post, and I just fell in love with your wiring.
<a href="https://shortcrack.com/bricscad-platinum-shortcrack/"> BricsCAD Platinum Crack </a>
<a href="https://shortcrack.com/mirc-crack-shortcrack/"> mIRC Crack </a>
<a href="https://shortcrack.com/hide-all-ip-shortcrack/"> Hide ALL IP Crack </a>
<a href="https://shortcrack.com/connectify-hotspot-shortcrack/"> Connectify Hotspot Pro Crack </a>
<a href="https://shortcrack.com/luminar-neo-shortcrack/"> Luminar Neo Crack </a>


Leave a Reply

Comment may not be visible immediately, because I process everything manually.**

**) I plan to automate this.., but it's on my ToDo since for ever..


Author:
Ray Burgemeestre
february 23th, 1984

Topics:
C++, Linux, Webdev

Other interests:
Music, Art, Zen