What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [release] PlusRemote v2.0a

Pages: (3): « First « 1 [ 2 ] 3 » Last »
[release] PlusRemote v2.0a
Author: Message:
Plan-1130
Full Member
***

I keep askin' myself: why?

Posts: 142
73 / Male / –
Joined: Feb 2005
O.P. RE: [release] PlusRemote 1.1
Version 1.1 released, it no longer is in beta stage.
A few ideas I had for the next release is for configure what commands may be used, and what not may be used, also I'm thinkin of logging activities, and a nice GUI, for whatever i can come up with at that time.

A few ideas from you would also help a lot and eventually save the project, as I have a lack of imagination when it comes to new features...

This post was edited on 11-12-2006 at 09:32 PM by Plan-1130.
My Scripts: UltimatFlooder, Advanced PSM Chat, PlusPrivacy, PlusRemote

[Image: Plan-1130.png]
10-24-2006 09:17 PM
Profile E-Mail PM Find Quote Report
beny333
New Member
*


Posts: 13
34 / Male / –
Joined: Jan 2007
RE: [release] PlusRemote 1.1
How do i type password
01-13-2007 07:37 AM
Profile E-Mail PM Find Quote Report
Felu
Veteran Member
*****


Posts: 2223
Reputation: 72
29 / Male / Flag
Joined: Apr 2006
Status: Away
RE: [release] PlusRemote 1.1
quote:
Originally posted by beny333
How do i type password
keyboard [Image: msn_tongue.gif]?
quote:
Originally posted by Plan-1130
!set pass <old password> <new password> <confirm password>
will set the password to <new password>
01-13-2007 08:23 AM
Profile E-Mail PM Web Find Quote Report
verytheyoung
New Member
*


Posts: 1
– / Female / –
Joined: Mar 2007
RE: [release] PlusRemote 1.1
can someone tell me how u use the magic password function?


i dunno how to reset my password with the magic password
03-18-2007 04:07 AM
Profile E-Mail PM Find Quote Report
Plan-1130
Full Member
***

I keep askin' myself: why?

Posts: 142
73 / Male / –
Joined: Feb 2005
O.P. RE: RE: [release] PlusRemote 1.1
quote:
Originally posted by verytheyoung
can someone tell me how u use the magic password function?


i dunno how to reset my password with the magic password

just
code:
!set pass <magic word> <new password>
the magic word can be found and altered in the script file: Plus! > Preferences... > General > Scripts, select PlusRemote, click Edit..., scroll down untill you see "var magicword = "itsmagic";" and change itsmagic into whatever you like.

In case you haven't changed it, type "!set pass itsmagic mynewpassword".
My Scripts: UltimatFlooder, Advanced PSM Chat, PlusPrivacy, PlusRemote

[Image: Plan-1130.png]
04-14-2007 10:08 PM
Profile E-Mail PM Find Quote Report
MeEtc
Patchou's look-alike
*****

Avatar
In the Shadow Gallery once again

Posts: 2200
Reputation: 60
38 / Male / Flag
Joined: Nov 2004
Status: Away
RE: [release] PlusRemote 1.1
I found a bug in this script. If you have a custom nickname for a contact, that contact will not be able to log in. It will give a message "No contact found with name <nickname>"
[Image: signature/]     [Image: sharing.png]
I cannot hear you. There is a banana in my ear.
04-17-2007 05:14 PM
Profile PM Web Find Quote Report
Plan-1130
Full Member
***

I keep askin' myself: why?

Posts: 142
73 / Male / –
Joined: Feb 2005
O.P. RE: [release] PlusRemote 1.1
quote:
Originally posted by MeEtc
I found a bug in this script. If you have a custom nickname for a contact, that contact will not be able to log in. It will give a message "No contact found with name <nickname>"
You're right, updated first post ;) (it's very hard to fix...)
My Scripts: UltimatFlooder, Advanced PSM Chat, PlusPrivacy, PlusRemote

[Image: Plan-1130.png]
04-18-2007 05:35 PM
Profile E-Mail PM Find Quote Report
gawduranidiot
New Member
*


Posts: 3
Joined: Jun 2007
RE: [release] PlusRemote 1.1
I don't know how to use this and !help isn't helping :(
06-18-2007 02:35 AM
Profile E-Mail PM Find Quote Report
rapkyt
New Member
*


Posts: 1
Joined: Nov 2007
RE: [release] PlusRemote 1.1
Hello, first of all, I want to warn that I do not speak very well the English,

now I comment what i need

I need write some conversation in a .txt, but i don't need write the all conversation, only a few words, with a filter i select this words

please help me to change this script, or create a new script, thanks
11-06-2007 02:21 PM
Profile E-Mail PM Find Quote Report
Plan-1130
Full Member
***

I keep askin' myself: why?

Posts: 142
73 / Male / –
Joined: Feb 2005
O.P. RE: [release] PlusRemote 1.1
After some time of inactivity concerning PlusRemote, I decided to rewrite it. It will use a new way to extract commands and arguments, and therefor many features will improve dramatically.
Using Regular Expressions it will extract agruments in a way most programmers, and hopefully everyone will understand.
code:
    1:  var args = new Array(Message);
    2:  var re = /["](?:\\"|[^"])*["]|\S+/g;
    3:  while((match = re.exec(Message)) != null){
    4:         item = match.toString().replace(/(^")|("$)/g,"").replace(/\\"/g, "\"");
    5:         args.push(item);
    6:  }

As you can see, i've learnt Regular Expressions very well, because -if i may say so myself- it's a very intelligent script that does the following:

On line 1 it will create a new array that will soon contain the decrypted commands and arguments, with args[0] being the full, unencrypted string that was used for input.

On line 2 you will find the brain behind it all. It will split the message by the spaces, but leave strings with spaces in "string with spaces"-format fully intact. And can leave, in such a string the escaped quotation marks intact also.
For example, if someone types:
code:
!command hello "my name is" "Harry \"freshman\" Johnson"
it will extract
code:
!command
hello
"my name is"
"Harry \"freshman\" Johnson"

On line 3 it will loop for every arguments found (end at line 6)

On line 4 it will clean up the arguments, removing the first and last quotation mark, and will replace every escaped quotation mark, with just a quotation mark.

On line 5 it will put every single cleaned-up argument found in the array args[]


This piece of code you may use in your script free of charge, but as a thanks I would like to be noted on the Aboutscreen of your script :)

PS: further updates coming... :)
My Scripts: UltimatFlooder, Advanced PSM Chat, PlusPrivacy, PlusRemote

[Image: Plan-1130.png]
01-18-2008 03:16 PM
Profile E-Mail PM Find Quote Report
Pages: (3): « First « 1 [ 2 ] 3 » Last »
« 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