matty
Scripting Guru
Posts: 8336 Reputation: 109
39 / /
Joined: Dec 2002
Status: Away
|
RE: Error: unknown (code: -2147418113)
I made a few changes. Those are highlighted.
js code: var originalPSM;
var originalPSM1;
var idleSeconds;
var isIdle;
var isBusy;
var PSMnumber;
var PSM1number;
>>>var PSMtype = 1;<<<
var seconds = 15;
var allowed = 1;
>>>var aPSMArray [<<<
>>> 1 : 'Growing old is mandatory, growing up is optional',<<<
>>> 2 : 'Tower: "Please report height and position?" - Pilot: "I\'m 5 foot 10 and sitting up front!';<<<
>>> 3 : 'The owner of a \'91 Toyota Camry!';<<<
>>> 4 : 'He who dies with the most toys wins!!!';<<<
>>> 5 : 'You\'d Better Run, Egg!!!';<<<
>>> 6 : '<?php while(!success) { $try++; } ?>';<<<
>>> 7 : 'There are 10 kinds of ppl in this world! One kind know binary, and the other doesn\'t';<<<
>>> 8 : 'There is no "I" in team, but there is an "m" and an "e"!';<<<
>>> 9 : 'Extension Maths is just like doing normal Maths..... TO THE EXTREME!!!';<<<
>>> 10 : 'Never play leapfrog with a unicorn ;)';<<<
>>> 11 : 'One day Wally should wear something different and really screw everyone up';<<<
>>> 12 : 'Parental Controls: Settings used to controls ones parents activity on ones computer.';<<<
>>> 13 : 'Part of being sane, is being a little bit crazy.';<<<
>>> 14 : 'I have noticed that the people who are late are often so much jollier than the people who have to wait for them.';<<<
>>> 15 : 'I believe whatever doesn\'t kill you simply makes you... stranger...';<<<
>>> 16 : 'You haven\'t seen a tree until you\'ve seen its shadow from the sky';<<<
>>> ];<<<
function OnEvent_Initialize(MessengerStart) {
idleSeconds = 0;
isIdle = false;
isBusy = false;
MsgPlus.AddTimer('rotate', seconds * 1000);
}
function OnEvent_Signin(sEmail) { MsgPlus.DisplayToast("Nick,","You're so awesome!"); }
function updateMessage() {
if(allowed==1) {
if(PSMtype==1) {
if (PSMNumber < 16)
>>> originalPSM = aPSMArray[++PSMnumber];<<<
}
else {
originalPSM = "There are only two ways to live your life. One is as though nothing is a miracle. The other is as if everything is.";
PSMnumber=1;
}
Messenger.MyPersonalMessage = originalPSM;
PSMtype=2;
} else {
if(PSM1number==1) {
originalPSM1 = "Nick Has 12.5% Of His (au) License";
PSM1number=2;
} else {
originalPSM1 = "Nick Has 31.5% Of His (ap) License";
PSM1number=1;
}
Messenger.MyPersonalMessage = originalPSM1;
PSMtype=1;
}
}
}
function OnEvent_MyStatusChange(NewStatus) {
if(allowed==1) {
if( NewStatus == 7 || NewStatus == 6 ) {
Messenger.MyPersonalMessage = "Text/ ring me and I'll be back ASAP! 0hrs:0mins:0secs";
MsgPlus.AddTimer( "incIdle", 1000 );
MsgPlus.AddTimer( "updateDisplay", 6000 );
isIdle = true;
isBusy = false;
//Messenger.MyDisplayPicture = "C:\\Program Files\Messenger Plus! Live\Scripts\StatusDP\DP\offline.jpg";
MsgPlus.DisplayToast("Status Checker","Idle/Away State Activated");
} else if(NewStatus == 4) {
Messenger.MyPersonalMessage = "Text me! I'm in a full screen app and msngr alerts are off! :)";
isBusy = true;
isIdle = false;
idleSeconds = 0;
MsgPlus.DisplayToast("Status Checker","Busy State Activated");
} else {
isIdle = false;
isBusy = false;
idleSeconds = 0;
updateMessage();
MsgPlus.DisplayToast("Status Checker","Normal State Activated");
MsgPlus.AddTimer('rotate', seconds * 1000);
}
}
}
function OnEvent_Timer(sTimerId) {
if( isIdle == false && isBusy == false) {
updateMessage();
MsgPlus.AddTimer('rotate', seconds * 1000);
return 0;
} else if( sTimerId == "incIdle" ) {
if(isIdle==true) {
idleSeconds ++;
MsgPlus.AddTimer( "incIdle", 1000 );
}
}
else if( sTimerId == "updateDisplay" ) {
if(isIdle==true) {
var cIdleSeconds = idleSeconds;
var idleHours = 0;
var idleMinutes = 0;
while( cIdleSeconds > 59 ) {
cIdleSeconds -= 60;
idleMinutes ++;
}
while( idleMinutes > 59 ) {
idleMinutes -= 60;
idleHours ++;
}
Messenger.MyPersonalMessage = "Text/ ring me and I'll be back ASAP! "+idleHours+"hrs:"+idleMinutes+"mins:"+cIdleSeconds+"secs";
MsgPlus.AddTimer( "updateDisplay", 6000 );
}
}
}
function OnGetScriptCommands(){
var oCommand = new Commands();
with (oCommand) {
AddCommand('pmrotate', 'Rotate your Personal Message');
>>> AddCommand('pmtoggle', (allowed === 1 ? 'Disable' : 'Enable')+' Automatic PM Changes');<<<
}
return oCommand.ExportCommands();
}
function OnEvent_ChatWndSendMessage(oChatWnd, sMessage) {
if (/^\/([^\s\/]+)\s*([\s\S]*)$/.exec(sMessage) !== null) {
var _command = RegExp.$1.toLowerCase();
var _param = RegExp.$2;
switch (_command) {
case 'pmrotate':
if ( _param !== '' ) {
seconds = _param;
} else {
updateMessage();
}
return '';
break;
case 'pmtoggle':
if(allowed==1) {
allowed=0;
MsgPlus.DisplayToast("Status Checker","Disabled");
} else if(allowed==0) {
allowed=1;
MsgPlus.DisplayToast("Status Checker","Enabled");
}
return '';
break;
}
}
}
function OnGetScriptMenu(nLocation) {
var oMenu = new ScriptMenu();
>>> with (oMenu) {<<<
>>> AddItem('/pmtoggle', (allowed === 1 ? 'Disable' : 'Enable') );<<<
>>> AddItem('/pmrotate', 'Rotate PM');<<<
>>> }<<<
return oMenu.ExportMenu();
}
function OnEvent_MenuClicked(sMenuId, nLocation, oChatWnd) { OnEvent_ChatWndSendMessage(0, sMenuId); }
This post was edited on 04-30-2009 at 07:58 PM by matty.
|
|