mIRC Home    About    Download    Register    News    Help

Print Thread
#196757 22/03/08 10:40 PM
Joined: Mar 2008
Posts: 47
N
nok Offline OP
Ameglian cow
OP Offline
Ameglian cow
N
Joined: Mar 2008
Posts: 47

* Nick set mode +vvvvv Nick_1 Nick_2 Nick_3 Nick_4 Nick_5

by

[b]* Nick set mode +v Nick_1 Nick_2 Nick_3 Nick_4 Nick_5
[/b]
or


* Nick set mode +ooooo Nick_1 Nick_2 Nick_3 Nick_4 Nick_5

by

* Nick set mode +o Nick_1 Nick_2 Nick_3 Nick_4 Nick_5

etc ...

nok #196758 22/03/08 10:51 PM
Joined: Sep 2005
Posts: 2,881
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,881
Code:
on ^*:rawmode:#:{
  echo -bcfilrt mode $chan * $nick set mode $regsubex($1-,/([ov])\1+/g,\t)
  haltdef
}

hixxy #196762 22/03/08 11:43 PM
Joined: Mar 2008
Posts: 47
N
nok Offline OP
Ameglian cow
OP Offline
Ameglian cow
N
Joined: Mar 2008
Posts: 47
Thx hixxi, Another question, nick, join, part, quit, kick, topic ...
Code:
echo -ihtqlbfnmgrc "nick" <-
echo -ihtqlbfnmgrc "join" <-
echo -ihtqlbfnmgrc "part" <-
echo -ihtqlbfnmgrc "quit" <-
echo -ihtqlbfnmgrc "kick" <-
echo -ihtqlbfnmgrc "topic" <-

There are many more ?

nok #196769 23/03/08 12:50 AM
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
The only one I can think of quickly that you dont; have listed is ban

nok #196773 23/03/08 01:13 AM
Joined: Jan 2004
Posts: 509
L
Fjord artisan
Offline
Fjord artisan
L
Joined: Jan 2004
Posts: 509
Originally Posted By: nok
Thx hixxi, Another question, nick, join, part, quit, kick, topic ...

There are many more ?


What's the question?

If your question is to convert into showing them once, please show us a before and after example of how you want it displayed.

If your question was how many different remote events there are, type /help remote, and look at the list from "Action" to "WaveEnd."

-Neal C.

Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
based on the examples given, it appeared to me that nok was referring to events that affect channel nicklist, with topic being the exception, but still affecting the channel.

Joined: Oct 2004
Posts: 8,330
Hoopy frood
Offline
Hoopy frood
Joined: Oct 2004
Posts: 8,330
I think it's pretty clear that he's looking for any events that are displayed in the channel so he can adjust the display.


Other than ban, which was mentioned, there are also regular mode changes -- op, voice, admin, halfop, etc.; +l (limit), +m (moderated), etc. Basically any +/- modes.


Invision Support
#Invision on irc.irchighway.net
nok #196788 23/03/08 02:41 AM
Joined: Mar 2008
Posts: 47
N
nok Offline OP
Ameglian cow
OP Offline
Ameglian cow
N
Joined: Mar 2008
Posts: 47
Thanks RusselB and Riamus2 smile

nok #199361 12/05/08 11:16 PM
Joined: Mar 2008
Posts: 47
N
nok Offline OP
Ameglian cow
OP Offline
Ameglian cow
N
Joined: Mar 2008
Posts: 47
You can delete the same way repeated nicknames ?
* Nick set mode +oa Nick_1 Nick_1 Nick_2 Nick_2

Current code
Code:
$regsubex($1-,/([ovbh])\1+/g,\t)


Last edited by nok; 12/05/08 11:17 PM.
nok #199364 12/05/08 11:45 PM
Joined: Oct 2007
Posts: 214
B
Fjord artisan
Offline
Fjord artisan
B
Joined: Oct 2007
Posts: 214
I like it, Good idea!

What about for the nicks anyway to put a comma and seperate them nicely.

Example:

nick1, nick2, nick3,

Thanks J

Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
For display purposes you could use $replace($1-,$chr(32),$+($chr(44),$chr(32)))

For things like setting the modes for those nicks, the nicks must be SPACE separated.. the COMMAS will cause mIRC to error.


Link Copied to Clipboard