mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Jul 2006
Posts: 248
B
bwuser Offline OP
Fjord artisan
OP Offline
Fjord artisan
B
Joined: Jul 2006
Posts: 248
I understand there is a way to change colors of nicknames now for founders, SOPs, AOPs,ect. I notice in the Color dialog, there are other options for color nicks.

Anyway I can make a IRCop a color nick? Thanks

Joined: Dec 2002
Posts: 1,541
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Dec 2002
Posts: 1,541
yes, you'd need to set IRCops as a specific user level then color code the user level in the Address Book. Same with founders or bots or SOPs (if you want to differentiate between founder, sop and aop). Aop's you could just put them in the AOP section of the address book with a certain (whichever you want) mask and if they mathc, mirc'll auto color them smile


Those who fail history are doomed to repeat it
Joined: Jul 2006
Posts: 248
B
bwuser Offline OP
Fjord artisan
OP Offline
Fjord artisan
B
Joined: Jul 2006
Posts: 248
Thanks for the quick reply.

I just don't know where or what to put for IRCop user level. It doesn't make much sense to me. I tried user mode "+o", but that doesn't work. Any tips?

Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
Code:
 on *:join:#:{
  .enable #coloured.ircops
  .who $nick
}
#coloured.ircops off
raw 352:*:{
  if $chr(42) isin $7 {
    .auser -a IRCop $6
  }
}
raw 315:*:{
  .disable #coloured.ircops
  haltdef
}
#coloured.ircops end
 

When a person joins the channel, they are checked to see if they have IRCops status, and if so, then they are added to the Users list with a level of IRCop.

To get the address book to recognize this
1) type /abook
2) Click the Colors tab
NOTE: If using mIRC 6.2 you can use /abook -l in place of these two steps
3) Enable the colors (if not already done)
4) Click Add (or Edit if available)
5) Ensure User Levels is checked
6) Enter "IRCop" into the box (without the quotes)
7) Click OK
8) --- Repeat steps 4 - 7 for other entries
9) Click OK (to exit Address book)

Last edited by RusselB; 30/07/06 10:06 PM.
Joined: Dec 2002
Posts: 1,541
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Dec 2002
Posts: 1,541
yeah, had I gone into more depth that is exactly what I would have shown him - scripted off the raw reply (or even the on join if you know the address format of an IRCop). That's how I have it done - via 3 or 4 different raw replies


Those who fail history are doomed to repeat it

Link Copied to Clipboard