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

Help with status2ftp
Author: Message:
MeEtc
Patchou's look-alike
*****

Avatar
In the Shadow Gallery once again

Posts: 2200
Reputation: 60
38 / Male / Flag
Joined: Nov 2004
Status: Away
O.P. Help with status2ftp
Is anyone out there familiar with the status2ftp code?

The release version of the script does not upload the numeric equivalent of MSN's status in the XML file. I am trying to add this.
code:
  //Details array
  this.dtlarray = {
    'Username' : Messenger.MyName,
    'CleanUsername' : MsgPlus.RemoveFormatCodes(Messenger.MyName),
    'PSM' : this.getpsm(),
    'CleanPSM' : MsgPlus.RemoveFormatCodes(this.getpsm()),
    'Status' : this.status[Messenger.MyStatus],
    'NumericStatus' : Messenger.MyStatus,
    'LastUpdate' : Math.round(new Date().getTime() / 1000)
  };
I added the red line to the script. This works fine, when I first sign into messenger, but it didn't update when my status changed. I recently added this
code:
function OnEvent_MyStatusChange(NewStatus){
  Status2FTP.dtlarray.Status = Status2FTP.status[NewStatus];
  Status2FTP.dtlarray.NumericStatus = NewStatus;
  Status2FTP.savedetails();
  if(Status2FTP.cfgarray.EventStatusChange == 'true') Status2FTP.upload();
}
the script now fails to make an upload to the server, but gives no error.

anyone want to help me?


Nevermind, it worked after I re-installed the script and made my changes again :D

This post was edited on 06-10-2007 at 04:42 PM by MeEtc.
[Image: signature/]     [Image: sharing.png]
I cannot hear you. There is a banana in my ear.
06-10-2007 04:28 PM
Profile PM Web Find Quote Report
felipEx
Scripting Contest Winner
***


Posts: 378
Reputation: 24
35 / Male / Flag
Joined: Jun 2006
RE: Help with status2ftp
quote:
Originally posted by MeEtc
The release version of the script does not upload the numeric equivalent of MSN's status in the XML file.


try to convert to string :D
06-10-2007 06:15 PM
Profile E-Mail PM 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