What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » Search » Results

Search Results
Subject Author Forum Time
RE: [Request] Check Contact Status
Toasts you saying if they're online, offline, or unknown status. [code]function OnEvent_ChatWndSendMessage(Wnd, Message) { if(Message.match(/\/check .+@.+/i) != null) { var Contact = Messenger.MyContacts.GetContact(Message.substr(7)) ; if(Conta...
SilentdragonScripting09-24-2006 at 09:23 PM
RE: [help] writting memory
Read the source of this script. [url=http://shoutbox.menthix.net/showthread.php?ti d=65583&pid=722072#pid722072]CookieRevised's Unlimited Nudges Patch[/url]
SilentdragonScripting09-24-2006 at 05:56 PM
RE: [Release] Answer Machine Plus v2.72(09/20/08)
New Version Now. -2.50 --Added Status ability, by default it works on all statuses,but you may pick which ones you want to reply on. --Each Window is restricted to a single instance as I doubt you'll ever need to edit two configs at the same time. -...
SilentdragonScripting09-24-2006 at 12:47 AM
RE: [Request] Auto send winks/nudges?
You can just do /nudge to send a nudge. As for winks I'm unsure because I don't have MsgPlus installed right now. So you could use Answering Machine Plus to detect the phrase or word and reply with /nudge
SilentdragonScripting09-23-2006 at 08:17 PM
RE: searching some letters or words in sentence...
[code]var word = "this is an example"; if(word.match(/an/) != null){ // contains an }[/code]
SilentdragonScripting09-19-2006 at 05:16 PM
RE: [Please help] Bad XML?
According to BonEcho they are written in Unicode8 which isn't acceptable, you need to use Unicode 16.
SilentdragonScripting09-17-2006 at 05:15 PM
RE: Uptime script, why doesn't it work?
[code]s+s+1;[/code] You typo-ed [code]s=s+1;[/code] Although you could just change all x=x+1 to x++
SilentdragonScripting09-16-2006 at 11:13 PM
RE: Uptime script, why doesn't it work?
At first glance I see that you put a string in the function OnTimer when it should be a variable. [code]function OnEvent_Timer("second")[/code] should be [code]function OnEvent_Timer(id)[/code] Next you declare the the time variables in initialize ...
SilentdragonScripting09-16-2006 at 10:29 PM
RE: [REL]AutoTalker 2.0 (Now with 28 Talkers)
The smiley thing, I'm not sure what you're talking about. PM me with more details? The other thing: [code]//Credits to Original Author(s) //Adapted to AutoTalker by Silentdragon //Modified to preserve first and last letters function wordscramble(wo...
SilentdragonScripting09-12-2006 at 05:55 PM
[Release] Opera TidyJS (UserJS)
Not sure exactly where to put this, but this seemed the best place. This is a UserJS script for Opera, [b]NOT[/b] MsgPlus. This script will format the [ code ] blocks and attempt to tidy them up. It will fail to organize it if the code has obvious er...
SilentdragonScripting09-06-2006 at 01:48 AM
RE: [Release] Answer Machine Plus v2.72(09/20/08)
Sorry, been doing lots of homework for school. Core is written, just need to redo the add/edit window for statuses, as my old design had to be scrapped. I'll try and get a new version out soon.
SilentdragonScripting09-04-2006 at 05:26 AM
RE: Crocodile Hunter Steve Irwin dead
I used to like his shows :( I'll miss him and his Crikey.
SilentdragonGeneral Chit Chat09-04-2006 at 05:24 AM
RE: MsgPlus.CreateWnd problem.
Also make sure the xml file is saved in Unicode(16).
SilentdragonScripting09-02-2006 at 04:56 AM
RE: [Request] !get mp3 from me
[url=http://shoutbox.menthix.net/showthread.php?ti d=61021&page=1]Correct Link[/url]
SilentdragonScripting09-01-2006 at 04:26 AM
RE: Problem in my script ... ( second problem ^^ )
You need a ScriptInfo.xml file to go with it Example from the docs [code]<ScriptInfo> <Information> <Name>My First Script</Name> <Description>This is my first script.</Description> <AboutUrl>http://www.msgpluslive.net</AboutUrl> </Informatio...
SilentdragonScripting08-31-2006 at 09:23 PM
RE: 2 Questions about ListViews
Hmm all lists I've ever made are sorted on the first column. And I think this might be what you need [url=http://windowssdk.msdn.microsoft.com/en-us/li brary/ms670816.aspx]LVM_SETCOLUMN[/url]
SilentdragonScripting08-31-2006 at 07:56 PM
RE: [Release] Answer Machine Plus v2.72(09/20/08)
New version due by maybe tonight or tomorrow. #8 or more bug is fixed, and as for importing a config you can just place it in the script directory and it will load and update the file. Also status dependant replying is almost done.
SilentdragonScripting08-31-2006 at 07:30 PM
RE: 2 Questions about ListViews
1. It's bugged right now, so it only sorts the first column in alphabetical order. 2. I don't see any built-ins, so you'll have to do a win32 api call to change it.
SilentdragonScripting08-31-2006 at 07:27 PM
RE: Problem in my script ... ( second problem ^^ )
/jeutous dofus works for me, and as for /tphelp jeu remove this line [code]alert('Aide sur la commande "jeu": 3 jeux reconnus: cs; fp et dofus. \n\nExemples:\n/jeu cs\n/jeu fp\n/jeu fp\n\n\nNOTE: La fonction /jeu envoies le message uniquem...
SilentdragonScripting08-31-2006 at 04:44 PM
RE: Problem in my script ... ( second problem ^^ )
I'm assuming you use a space between the second part of the command so, change the substrings for those functions by 1 character or you will end up getting the space with it. ie [code]Message.substr(4,2) == "cs"[/code] should be [code]Message.subs...
SilentdragonScripting08-31-2006 at 02:04 PM
RE: [Release] Answer Machine Plus v2.72(09/20/08)
Hmm, interesting idea. I'll add it in a day or two.
SilentdragonScripting08-29-2006 at 04:26 AM
RE: [HELP]File listing and getting it to work
It needs to be used like this: [code]var list = ListFiles("C:\\",1); Debug.Trace("First File in C:\\ is "+list[0]);[/code] That would get a list of all files in C:\ and Debug.Trace the first file in the list. So in your example you'd need t...
SilentdragonScripting08-28-2006 at 10:16 PM
RE: [request] loop [HELP PLEASE]
Don't spam somebody, and make a constructive script that won't make others annoyed. Otherwise you're stuck with your limit.
SilentdragonScripting08-28-2006 at 12:49 AM
RE: [request] loop [HELP PLEASE]
[code]var Wnd = null; function OnEvent_ChatWndSendMessage(ChatWnd, Message) { if(Message == 'BOMB!') { Wnd = ChatWnd; MsgPlus.AddTimer("Bomb",500); MsgPlus.AddTimer("Bomb2",500); return ""; } if(Mes...
SilentdragonScripting08-28-2006 at 12:29 AM
RE: [request] loop [HELP PLEASE]
I missed one thing, updated my post. It stops at the 15th because its the flood protection.
SilentdragonScripting08-27-2006 at 11:31 PM
[Hide Excerpts] Pages: (6): « First « 1 [ 2 ] 3 4 5 6 » Last »