Channel Modes Manager (Updated)
mIRC Code
+ 0 likes
Please Register to submit score.
| Average Score | 7.0 (of 1 scores) |
| Date Added | Nov 03, 2008 |
| Last Updated | Nov 05, 2008 |
| Tags | channel manager modes |
Introduction
If you find any problems let me know ill be at
irc.ezzychat.com #Lobby
or
irc.swiftirc.net #PMS
Enjoy :)
Uh.. type /cmm to get it started :)
mIRC Snippet:
Channel Modes Manager (Updated)
Posted on Nov 4, 2008 11:07 am
Posted on Nov 4, 2008 11:07 am
Hmm, nice all in one :P
mIRC Snippet:
Channel Modes Manager (Updated)
Posted on Nov 4, 2008 6:42 pm
Posted on Nov 4, 2008 6:42 pm
I assume this script would working in some network only(especially the network that had implemented the specified chan modes...which many of them are unfamiliar for me).
IMO this is a simple script with a nice dialog and maybe you could added a couple thing on it such as:
1. Disable the modes if its not supported by the network
2. Adding a channel name into dialog title instead of 'Manager' so users know which channel the modes would be apply.
Anyway... its really something useful for the operators
Nice job
IMO this is a simple script with a nice dialog and maybe you could added a couple thing on it such as:
1. Disable the modes if its not supported by the network
2. Adding a channel name into dialog title instead of 'Manager' so users know which channel the modes would be apply.
Anyway... its really something useful for the operators
Nice job
mIRC Snippet:
Channel Modes Manager (Updated)
Posted on Nov 4, 2008 7:52 pm
Posted on Nov 4, 2008 7:52 pm
Ahhkay i knew that was coming about the network's i was going to add something like join throttling but i really got snagged by the edit and how to incorperate that with the other stuff.. so yeah.
Well how would i get it to disable the modes if it isnt supported.. is there even a way to check for that?
Also. Do you know if it can check what modes are selected and what ones arent so it can be automatically checked to cause no confusion.
Well how would i get it to disable the modes if it isnt supported.. is there even a way to check for that?
Also. Do you know if it can check what modes are selected and what ones arent so it can be automatically checked to cause no confusion.
mIRC Snippet:
Channel Modes Manager (Updated)
Posted on Nov 5, 2008 12:06 am
Posted on Nov 5, 2008 12:06 am
It doesn't seem like a good way but it's all I can think of. Do something like this on init and then if s isn't in the modes it sets disable the box. Idk.
mode $chan +abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ $str(1 $+ $chr(32),52)
You might already know this but you can use
Also you have 2 Topic locks, 19 and 23 I think. Oh and unless it's different for different networks +s is secret not +S *shrug*
mode $chan +abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ $str(1 $+ $chr(32),52)
You might already know this but you can use
| Code: |
| on *:Dialog:CMM:*:*: { if ($devent == sclick) { if ($did == #) { } if ($did == #) { } } } |
Also you have 2 Topic locks, 19 and 23 I think. Oh and unless it's different for different networks +s is secret not +S *shrug*
mIRC Snippet:
Channel Modes Manager (Updated)
Posted on Nov 5, 2008 1:28 am
Posted on Nov 5, 2008 1:28 am
| Quote: |
| Also. Do you know if it can check what modes are selected and what ones arent so it can be automatically checked to cause no confusion. |
um you can do this on the init event
| Code: |
| $iif(m isin $chan($active).mode,did -c $dname 2) |
and so on
mIRC Snippet:
Channel Modes Manager (Updated)
Posted on Nov 5, 2008 4:10 pm
Posted on Nov 5, 2008 4:10 pm
Uhh.. no i only have one topic lock the other one is to set another mode >.< It's just capitalized.
mIRC Snippet:
Channel Modes Manager (Updated)
Posted on Nov 5, 2008 4:23 pm
Posted on Nov 5, 2008 4:23 pm
you can make every room seperated than other .. maybe 1 room have another modes than other would be nice
mIRC Snippet:
Channel Modes Manager (Updated)
Posted on Nov 5, 2008 5:28 pm
Posted on Nov 5, 2008 5:28 pm
Well as you can see im not that great at scripting otherwise i would have added something like that ;)
Would you have any idea how to add that?
Or is this just a thing that you suggest that you have no clue what you're talking about?
Would you have any idea how to add that?
Or is this just a thing that you suggest that you have no clue what you're talking about?
mIRC Snippet:
Channel Modes Manager (Updated)
Posted on Nov 5, 2008 6:46 pm
Posted on Nov 5, 2008 6:46 pm
on *:Dialog:CMM:sclick:23: { if ($did(23).state) { .mode $active +t } | else { .mode $active -t } }
on *:Dialog:CMM:sclick:19: { if ($did(19).state) { .mode $active +t } | else { .mode $active -t } }
on *:Dialog:CMM:sclick:20: { if ($did(20).state) { .mode $active +T } | else { .mode $active -T } }
I know the T is different but 19 and 23 are the same.
on *:Dialog:CMM:sclick:19: { if ($did(19).state) { .mode $active +t } | else { .mode $active -t } }
on *:Dialog:CMM:sclick:20: { if ($did(20).state) { .mode $active +T } | else { .mode $active -T } }
I know the T is different but 19 and 23 are the same.
mIRC Snippet:
Channel Modes Manager (Updated)
Posted on Nov 5, 2008 6:52 pm
Posted on Nov 5, 2008 6:52 pm
Okay i got it all >.<
Dont worry.. might add some stuff later napa gave me some suggestion's.
Dont worry.. might add some stuff later napa gave me some suggestion's.
mIRC Snippet:
Channel Modes Manager (Updated)
Posted on Nov 5, 2008 7:13 pm
Posted on Nov 5, 2008 7:13 pm
| Quote: |
Well how would i get it to disable the modes if it isnt supported.. is there even a way to check for that |
You can check it by using $chanmodes.
| Quote: |
Also. Do you know if it can check what modes are selected and what ones arent so it can be automatically checked to cause no confusion. |
You can use $chan(#channel).mode to determined the enable modes for the specified channel.
Im totally agree with others by using on init to check the current enable channel modes. However, its lack something such as when user keep the dialog open and the other channel operator changed a channel modes(or the user itself changed it manually).
So you need to watch the on mode event, and disable/enable the modes in dialog according to the current channel modes.
By using on active event also you can had one dialog for the whole channels, in other word the dialog would shown the correct modes for the active channel.
mIRC Snippet:
Channel Modes Manager (Updated)
Posted on Nov 6, 2008 1:46 am
Posted on Nov 6, 2008 1:46 am
That's a big dialog. Why not try a listcb control? :]
mIRC Snippet:
Channel Modes Manager (Updated)
Posted on Nov 8, 2008 7:55 pm
Posted on Nov 8, 2008 7:55 pm
That's actually a small dialog.
What do you mean by listcb control.
Explain.
What do you mean by listcb control.
Explain.
mIRC Snippet:
Channel Modes Manager (Updated)
Posted on Aug 21, 2009 7:37 pm
Posted on Aug 21, 2009 7:37 pm
Very nice, I like it
7/10
7/10















