mIRC Home    About    Download    Register    News    Help

Print Thread
#234798 10/11/11 01:37 PM
Joined: Sep 2011
Posts: 37
C
Chinshy Offline OP
Ameglian cow
OP Offline
Ameglian cow
C
Joined: Sep 2011
Posts: 37
want to ask if i can get addon to change the nickname display

the one i have is this

(11:15:47) <&JayJ> We are the Borg. Lower your shields and surrender your ship.

want to ask if i can change the <> between the nick to be ()

also work with color addon font to not be conflict

Joined: Feb 2003
Posts: 3,432
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
It would be hard for someone here to help you, no one can say how your theme work, and try to guess will not be easy. You can try look in the help file.

/help on input and /help on text

here is a simple example, untested..
Code:
on *:input:#:{
  if ($left($1,1) !== $readini(mirc.ini,text,commandchar)) && (!$ctrlenter) {
    echo -at $+($chr(40),$me,$chr(41)) $1- | .msg $active $1-
    haltdef
  }
}
on ^*:text:*:#: {
  echo -mt $chan $+($chr(40),$nick,$chr(41)) $1-
  haltdef
}


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
sparta #234804 10/11/11 07:53 PM
Joined: Sep 2011
Posts: 37
C
Chinshy Offline OP
Ameglian cow
OP Offline
Ameglian cow
C
Joined: Sep 2011
Posts: 37
im not using any theme just the basic mirc with no themes so maybe if i can change it from the script edit or something

Last edited by Chinshy; 10/11/11 07:55 PM.
Joined: Jul 2007
Posts: 1,129
T
Hoopy frood
Offline
Hoopy frood
T
Joined: Jul 2007
Posts: 1,129
What sparta has shown you above will work as requested. You can't change the default output but customize it with a custom event (^) that halts the default. That's the only way to go.

Last edited by Tomao; 10/11/11 08:56 PM.

Link Copied to Clipboard