Shoutbox

PMS Changer - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: PMS Changer (/showthread.php?tid=78534)

PMS Changer by fayte7523 on 10-30-2007 at 03:47 AM

Hey guys, Ive seen some people on my contact list have a script where PMS are changed after X seconds, and there is like an icon. It's like exact same script as (http://www.msgpluslive.net/scripts/view/57-xPSM/) except you can change the message every X seconds instead of minutes. Does anyone know a script like that? Thanks


RE: PMS Changer by fayte7523 on 10-31-2007 at 03:17 AM

no one knows?


RE: PMS Changer by Deco on 10-31-2007 at 03:21 AM

http://www.msgpluslive.net/scripts/view/319-PSM-Scheduler/

Give this one a try?


RE: RE: PMS Changer by fayte7523 on 10-31-2007 at 09:12 PM

quote:
Originally posted by Deco
http://www.msgpluslive.net/scripts/view/319-PSM-Scheduler/

Give this one a try?




I tried that but the message can only change in minutes and hours, but I want it to change in seconds, but it doesnt have that option
RE: PMS Changer by RaceProUK on 10-31-2007 at 09:39 PM

The Messenger servers won't allow more than a handful of PSM changes every minute.


RE: PMS Changer by waynewilson2 on 11-05-2007 at 06:13 AM

try sumthin like this

code:
var NewPSM = new array;

Function OnEvent_Initiate{
MsgPlus.AddTimer("Name",1000); //called every second
NewPSM[0]="new PSM1";
NewPSM[1]="new PSM2";
NewPSM[2]="new PSM3";
NewPSM[3]="new PSM4";
NewPSM[4]="new PSM5";
}

function OnEvent_Timer(TimerId) {
var PassPSM = RandomPSM();
Messenger.MyPeronalMessage = PassPSM;
MsgPlus.AddTimer("Name",1000); //called every second
}

function RandomPSM(){
var x = Math.floor(Math.random()*NewPSM.length)
return NewPSM[x];
}


That One Should Work Good For Ya...Im Not 100% Sure Because I've Never Tried Before And I Do Not Have The Documentation Or Anything Open...Have Fun :D
RE: PMS Changer by RaceProUK on 11-06-2007 at 12:17 AM

Initialize, not Initiate :P