Quote:
I found this snippet on another forum site. I need help adding color to it instead of having a plain white nick coming out on the channel I want to have it like.

•nick•: with color, with the nick being a different color and the bullets being same color. I want to be able to custize the colors and such also. I appreciate anyones help and input! Thanks!

In remote.ini I have...

Code:
on &*:input:*:{ 
  if (($me ison $active) && ($left($gettok(%IStr,1,32),1) != /) && ($right($gettok(%IStr,1,32),1) == :) && ($gettok(%IStr,1,32) != :)) { 
    if $ialchan( [ $remove($left($1,-1),$chr(40),$chr(41)) $+ *!*@* ] ,$active,1) != $null { 
      if $ctrlenter != $true { 
        var %saystr = [ [ $gettok(%IStr,2-,32) ] ] 
        say $resp2($ialchan( [ $remove($left($gettok(%IStr,1,32),-1),$chr(40),$chr(41)) $+ *!*@* ] ,$active,1).nick) $replace(%saystr,§¨©,$chr(36),§¨ª,$chr(37)) 
      } 
      halt 
    } 
  } 
} 


In Aliases I have..

Code:
> { 
  if ($ctrlenter != $true) { var %IStr = $replace($1-,$chr(36),§¨©,$chr(37),§¨ª) } 
  var %saystr = [ [ %IStr ] ] 
  say %lastresp $replace(%saystr,§¨©,$chr(36),§¨ª,$chr(37)) 
} 

dblclknick { 
  if ($1 != $me) { 
    if ($2 != 3) { 
      .respond $1 
    } 
  } 
} 

respond { if ($1 != $null) { editbox -ap /> | set %lastresp $eval($replace(nick $+ :,nick,$1),2) } } 
resp2 { if ($1 != $null) { return $eval($replace(nick $+ :,nick,$1),2) } }
f1 _xserv


In Mirc options >> mouse >> Nick List I have

Code:
 dblclknick $1 $mouse.key 


well

change these 2 lines RESPOND AND RESP2

respond { if ($1 != $null) { editbox -ap /> | var %co1 = 8,1 | var %co2 = 7,1 | set %lastresp $eval($replace(nick $+ :,nick,$+(%co1,$1,)),2) } }
resp2 { if ($1 != $null) { var %co1 = 8,1 | var %co2 = 7,1 | return $eval($replace(nick $+ :,nick,$+(%co1,$1,)),2) }


Code:
if $reality > $fiction { set %sanity Sane }
Else { echo -a *voices* }