Top

Typos Multi Messenger


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  6.3
Scores Submitted  6
Date Added  Jul 03, 2008
Last Updated  Jul 05, 2008
Tags  channel  mass  message  messenger  muti  nick 
  Bookmark and Share

Introduction

Typo's Multi Messenger lets you easily manage a list of Users and Channels so that you can message all of them at once.

There are two sections seperated by tabs. They are the User Section and the Channel Section. Each section works identically. There is an edit box for your message and a send button to send it to all the Users or Channels in your list depending on which tab your in.
There is also an Add button with an edit box to add Users or Channels depending on which tab your in and a Remove Selected User or Remove Selected Channel button to remove the User or Channel that you clicked on in the list depending on which tab your in.

You can also add and remove Channels by right clicking in the desired channel and selecting either Add or Remove from the Typo's Multi Messenger menu. You can also add or remove users by right clicking on their name in a nicklist or in a PM window and selecting Add or Remove from the Typo's Multi Messenger menu.

The script also works just as well with command lines if you dont like dialogs or just prefer typing.

/umsg Your message here. --- Sends a message to all the users in your Users list.
/cmsg Your message here. --- Sends a message to all the users in your Channels list.
/AddMultiChannel #channel --- Add a Channel to your Channels list.
/DeleteMultiChannel #Channel --- Remove a Channel from your Channels list.
/AddMultiUser Name --- Add a Channel to your Users list.
/DeleteMultiUser Name --- Remove a Channel from your Userss list.

The parameters are optional in all those commands. If you type the command by itself you will be prompted for the appropriate input (Message, Name or Channel)

You can also manually add and remove channels from the list with the /AddCmsg or /RemoveCmsg commands followed by the channel name.

Enjoy





*Edited* Added .write MultiUserList.txt and .write MultiChannelList.txt to the on load and on start to avoid checks to see if the files exists. .write filename alone will add nothing to a file that exists but will create the file if it doesn't while still adding nothing to it.

Grab the Code

Comments

  (17)  RSS
Typo
Comments: 223
 
mIRC Snippet:  Typos Multi Messenger
Posted on Jul 3, 2008 8:25 pm
This script is a combination of two of my scripts. Typos Multi-Channel Messenger and Typos Multi-User Messenger and as of now will replace bot of them.

Any input is good input.
EL
Comments: 1,369
 
mIRC Snippet:  Typos Multi Messenger
Posted on Jul 3, 2008 8:36 pm
Ok works good some small things the /msg should be silent /msg so you dont see it,The channel add (edit field) should add the $chr(35) # auto like the input does and i d slim down the dialog maybe 100 by 80 or soemthing.`-.-´
Typo
Comments: 223
 
mIRC Snippet:  Typos Multi Messenger
Posted on Jul 3, 2008 8:48 pm
Ok, I don't think Im going to slim down the dialog because of the wording on tab 2 would have to be shortened to fit and I personally don't think it's too big but if I get similar comments I will prolly go ahead and do it. I will add the auto # in the channel edit field now and I thought I had already silenced the /msg commands so I'll do that too.

Be updated in a few minutes.

Actually, Ill try the slim down too....and while Im at it I dont like the size of the remove button so I'm going to do something about that too.

EL
Comments: 1,369
 
mIRC Snippet:  Typos Multi Messenger
Posted on Jul 3, 2008 8:54 pm
Ok sounds cool.`-.-´
Typo
Comments: 223
 
mIRC Snippet:  Typos Multi Messenger
Posted on Jul 3, 2008 9:14 pm
All requested changes have been made, new code and screenshots updated.
EL
Comments: 1,369
 
mIRC Snippet:  Typos Multi Messenger
Posted on Jul 3, 2008 9:24 pm
Looks good Typo."Rate it or Hate it?"...8/10.`-.-´
Typo
Comments: 223
 
mIRC Snippet:  Typos Multi Messenger
Posted on Jul 3, 2008 9:26 pm
Thanks a lot. Your input was a big help.
EL
Comments: 1,369
 
mIRC Snippet:  Typos Multi Messenger
Posted on Jul 3, 2008 10:01 pm
Your welcome thats why im here OH and to be a retard >D
Eugenio
Comments: 1,082
 
mIRC Snippet:  Typos Multi Messenger
Posted on Jul 3, 2008 10:07 pm
looks 10 times better -.-' glad to have given EL my ideas to give to you.
EL
Comments: 1,369
 
mIRC Snippet:  Typos Multi Messenger
Posted on Jul 3, 2008 10:31 pm
ROFL@your ideaz yeah rite ;x
Scakk
Comments: 237
 
mIRC Snippet:  Typos Multi Messenger
Posted on Jul 4, 2008 9:00 am
I had to change " while (%cc !<= 0) { " and " while (%uc !<= 0) { " to be " while (%cc > 0) { " and while (%uc > 0) { " again as I stated in the first version post it hung up otherwise.

I tried to enter a channel " #CR&A " and it kept tellng me " That is not a valid channel name. " when it is a channel I am in.

Using the "Add #dfstrategy " via the popup command give the same result " That is not a valid channel name. " which is a channel a channel I am also in.

To make the above work ( the popup to add / remove the channels ) I had to change your " ($len(%tempchan) !> 1) " to be " ($len(%tempchan) < 1) " in the two alias for that section. It appears to me that the use of a " ! " in combination with > , < just does not seem to work for me.
vaseline28
Comments: 154
 
mIRC Snippet:  Typos Multi Messenger
Posted on Jul 4, 2008 10:27 am
I tried with the above commands (as Scakk said) and it did not work...
I'll try Scakk's edits now and see.
Typo
Comments: 223
 
mIRC Snippet:  Typos Multi Messenger
Posted on Jul 5, 2008 1:14 am
First off I cannot seem to recreate the problem where the channels won't add properly but I'll make sure my code matches the uploaded code and double/triple check for errors and I have updated this so please make sure your code matches mine as well.

Also and once again. No matter what you tell me or how many times you type it changing !<= to > is sily. They are the same exact thing. Don't believe me then type the following command:
Code:
//echo -a $iif(1 !<= 0,true,false) $iif(1 > 0,true,false)

It will return true two times because "!>=" == "<".
Nothing you type to me will change the fact that saying "is not less than or equal to" is the same as "more than".

*Edited* Code now updated with the changing of "!<=" to ">"
Scakk
Comments: 237
 
mIRC Snippet:  Typos Multi Messenger
Posted on Jul 5, 2008 10:05 am
Typo: I used the below as you stated and got "false true" not the double true you said I would.

Code:

//echo -a $iif(1 !<= 0,true,false) $iif(1 > 0,true,false)




Edit: I would also like to note I have not rated it so any change to the score , up or down , is not my doing. When I rate I will note doing so in a post.
Eugenio
Comments: 1,082
 
mIRC Snippet:  Typos Multi Messenger
Posted on Jul 6, 2008 12:42 am
ROFL @ scakk FAIL
I got true......dunno what your doing
^Neptune
Comments: 326
 
mIRC Snippet:  Typos Multi Messenger
Posted on Sep 26, 2008 2:22 pm
Cool. It's like a totally configurable amsg. I tried this while adding all my friends on it, it's like a /friendnotice now! :P Gets a 7/10 from me.
Typo
Comments: 223
 
mIRC Snippet:  Typos Multi Messenger
Posted on Sep 26, 2008 2:24 pm
Thanks. I used to use it a lot for messaging multiple channels, never really used the multiple nick part but added it anyway.

Glad you like it and thanks again.

Please Register or Login to start posting comments.
Bottom