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