What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [Release] Status Interceptor (Updated v1.2)

[Release] Status Interceptor (Updated v1.2)
Author: Message:
PAT.riot73
New Member
*


Posts: 12
– / Male / –
Joined: Jan 2006
RE: [Release] Status Interceptor (Updated v1.2)
in v1.3, theres an issue w/ the "send to all open conversations" when you type in "back" or "bak" your status changes but it doesnt send the message to all the open convos

to fix this just replace the function searchmessage in status interceptor.js with this

code:
function SearchMessage(Message)
{
    for(var i = 0; i < 8; i++)
    {
        SplitMessage = Message.toLowerCase().split(StatusKeyword[i], 2);
       
        if(SplitMessage.length > 1 && KeywordSetting.substr(i, 1) == 1)
        {
            //If status change is not to "back" or "bak"
            if(i > 1)
            {
                if(ScriptStatus == "Online")
                {
                    StoredStatus = Messenger.MyStatus;
                    StoredPsm = Messenger.MyPersonalMessage;
                }
            }
           
            ChangeStatus(i);
           
            //If status change is not to "back" or "bak"
            if(i > 1)
                ChangePSM(Message, Message.toLowerCase().search(StatusKeyword[i]), StatusKeyword[i].length);
            break;
        }
    }
}


the difference is i moved the break to an upper nest so the for() loop wouldnt continue to iterate even if the statuskeyword was "back" or "bak"

cheers for the script mate(Y)
"For God so loved the world that he gave his one and only Son, that whoever believes in him shall not perish but have eternal life." - John 3:16
10-01-2006 06:09 AM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[Release] Status Interceptor (Updated v1.2) - by phalanxii on 08-13-2006 at 04:09 AM
RE: [Release] Status Interceptor - by Sypher on 08-13-2006 at 08:35 AM
RE: [Release] Status Interceptor - by phalanxii on 08-13-2006 at 09:10 AM
RE: [Release] Status Interceptor (Updated v1.1) - by phalanxii on 08-14-2006 at 08:27 AM
RE: [Release] Status Interceptor (Updated v1.1) - by Sypher on 08-14-2006 at 08:41 AM
RE: [Release] Status Interceptor (Updated v1.1) - by Intosia on 08-14-2006 at 10:55 AM
RE: [Release] Status Interceptor (Updated v1.1) - by Firehalk on 08-14-2006 at 04:04 PM
RE: [Release] Status Interceptor (Updated v1.1) - by Vimto on 08-14-2006 at 07:16 PM
RE: [Release] Status Interceptor (Updated v1.1) - by qgroessl on 08-14-2006 at 07:18 PM
RE: RE: [Release] Status Interceptor (Updated v1.1) - by phalanxii on 08-15-2006 at 06:36 AM
RE: [Release] Status Interceptor (Updated v1.1) - by Dave on 08-15-2006 at 09:34 PM
RE: [Release] Status Interceptor (Updated v1.1) - by M73A on 08-15-2006 at 09:42 PM
RE: [Release] Status Interceptor (Updated v1.1) - by cloudhunter on 08-15-2006 at 10:24 PM
RE: [Release] Status Interceptor (Updated v1.2) - by phalanxii on 08-16-2006 at 07:12 AM
RE: [Release] Status Interceptor (Updated v1.2) - by Dave on 08-16-2006 at 09:45 AM
RE: RE: [Release] Status Interceptor (Updated v1.2) - by phalanxii on 08-16-2006 at 10:13 AM
RE: [Release] Status Interceptor (Updated v1.2) - by lrac522 on 08-16-2006 at 08:25 PM
RE: [Release] Status Interceptor (Updated v1.2) - by PAT.riot73 on 10-01-2006 at 06:09 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On