What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » PMS Changer

PMS Changer
Author: Message:
fayte7523
Junior Member
**


Posts: 29
Joined: Jul 2007
O.P. PMS Changer
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
10-30-2007 03:47 AM
Profile E-Mail PM Find Quote Report
fayte7523
Junior Member
**


Posts: 29
Joined: Jul 2007
O.P. RE: PMS Changer
no one knows?
10-31-2007 03:17 AM
Profile E-Mail PM Find Quote Report
Deco
Full Member
***


Posts: 188
Reputation: 4
41 / Male / Flag
Joined: Aug 2006
RE: PMS Changer
http://www.msgpluslive.net/scripts/view/319-PSM-Scheduler/

Give this one a try?


This post was edited on 10-31-2007 at 03:33 AM by Deco.
[Image: signature-user=31&back=4&clr=106,141,166&size=100.png]
10-31-2007 03:21 AM
Profile E-Mail PM Web Find Quote Report
fayte7523
Junior Member
**


Posts: 29
Joined: Jul 2007
O.P. RE: RE: PMS Changer
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
10-31-2007 09:12 PM
Profile E-Mail PM Find Quote Report
RaceProUK
Elite Member
*****

Avatar

Posts: 6073
Reputation: 57
39 / Male / Flag
Joined: Oct 2003
RE: PMS Changer
The Messenger servers won't allow more than a handful of PSM changes every minute.
[Image: spartaafk.png]
10-31-2007 09:39 PM
Profile PM Web Find Quote Report
waynewilson2
Junior Member
**

Avatar

Posts: 55
Joined: Oct 2007
RE: PMS Changer
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
[Image: waynewilson2@hotmail.com-12.png]
11-05-2007 06:13 AM
Profile E-Mail PM Find Quote Report
RaceProUK
Elite Member
*****

Avatar

Posts: 6073
Reputation: 57
39 / Male / Flag
Joined: Oct 2003
RE: PMS Changer
Initialize, not Initiate :P
[Image: spartaafk.png]
11-06-2007 12:17 AM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »


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