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;
//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