Sure.....
code:
function OnEvent_ChatWndSendMessage( ChatWnd, Message )
{
chat_window = ChatWnd;
Command = Message.split(' ')
switch ( Command[0].toLowerCase() )
{
case "/testing" :
var i = 0;
var TheOldPm = Messenger.MyPersonalMessage;
MsgPlus.AddTimer("testing", 1000 );
Message = '';
return "";
break;
default:
}
return Message;
}
function OnEvent_Timer( TimerId )
{
switch( TimerId )
{
case 'testing':
i++
if(i < 60){
Messenger.MyPersonalMessage = "Timing... " + i + " Minutes have passed";
MsgPlus.AddTimer( 'cuptime', 60000 );
}else{
Messenger.MyPersonalMessage = MyOldPM;
}
break;
default:
}
}
Now this is just the basis of my script... I am going to build on it make it so people can change how many minutes and what the message will say right now... After an hour the PM gets reset to normal... Lots for to do on the script its just a basis...
Thanks,
Kriogenic.