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

Search Results
Subject Author Forum Time
RE: [Request] Away Talker
[code]function OnEvent_ChatWndReceiveMessage(ChatWnd, sOrigin, sMessage, nMessageKind) { if(sOrigin == Messenger.MyName) return sMessage; if (sMessage.search(/^hi$/i)) { if (IsItOn) ChatWnd.SendMessage("Hey!"); }[/code] Better function
SilentdragonScripting07-07-2006 at 01:40 AM
RE: [Request] C/C++ Keywords Script
sMessage = sMessage.replace(/\bdo\b/gi,"[c=12]do[/c]");
SilentdragonScripting07-06-2006 at 02:26 AM
RE: coding dynamic arrays
wnd.ImageElmt_SetImageFile(ElementId,File);
SilentdragonScripting07-06-2006 at 01:57 AM
RE: [Request] C/C++ Keywords Script
sMessage = sMessage.replace(/if/gi,"[c=2]if[/c]");
SilentdragonScripting07-06-2006 at 01:42 AM
RE: [Request] C/C++ Keywords Script
sMessage.replace(/if/gi,"[c=2]if[/c]); Should do most of it for you, comments would need to be done a little different.
SilentdragonScripting07-06-2006 at 01:26 AM
RE: [Updated] AppMon+ 2.0 - Now Better! (Bug fixes, new features)
No WoW is shown, I think it might be Warden blocking you from finding the process.
SilentdragonScripting07-06-2006 at 12:07 AM
RE: [Updated] AppMon+ 2.0 - Now Better! (Bug fixes, new features)
WoW.exe is the process we already got that. As for your problem, disable the script, restart messenger then remove the script.
SilentdragonScripting07-06-2006 at 12:02 AM
RE: [Updated] AppMon+ 2.0 - Now Better! (Bug fixes, new features)
Yeah no WoW for me either. So it's either a bug or Warden is being a jackass and not letting you detect it or something.
SilentdragonScripting07-05-2006 at 11:58 PM
RE: [Updated] AppMon+ 2.0 - Now Better! (Bug fixes, new features)
Application is spelled wrong on the window title.
SilentdragonScripting07-05-2006 at 11:08 PM
RE: Script Help....
Hmm, try this. Open your xml file in wordpad and save it as a unicode xml file.
SilentdragonScripting07-05-2006 at 08:48 PM
RE: [Release] Poke Script!
Change the Message.Match to look like this [code]Message.match(/^(\*)?[p|P]oke(s)?(.)?(\*)? $/i)[/code] Although there's probably a better way. and for the kick/punch ect [code]if(Message.match(/^(\*)?[p|P]oke(s)?(.)?(\ *)?$/i) != null || Message....
SilentdragonScripting07-03-2006 at 12:12 AM
RE: [Release] Poke Script!
[code]if(Message.match(/^(\*)?poke(s)?(\*)?$/i) != null){[/code] A better match. Doesn't end up matching poker, slowpoke, etc. Also matches *poke(s)* or poke(s)
SilentdragonScripting06-30-2006 at 05:55 PM
RE: [request] Flashing Keyboard LED's when message received
[code]if(Interop.Call('user32', 'GetKeyState', VK_scroll)) //turn scroll off[/code]
SilentdragonScripting06-29-2006 at 04:47 PM
RE: [request] Flashing Keyboard LED's when message received
[code]//WML Flash 1.0 for MPL! (Smilie) by ivan300@yahoo.com // slightly modified by djcarre@gmail.com, silentdragon@gmail.com, and mgrove03@gmail.com var selectiveBlink = 0 var beep = 0 var keep_caps = 0 var VK_num = 144 var VK_scroll = 145 var VK_c...
SilentdragonScripting06-28-2006 at 07:49 PM
RE: [request] Font Stealer
That's not really possible. You could possibly have a script that changes your font to theirs if you have it in the future, but stealing the font isn't possible.
SilentdragonScripting06-28-2006 at 07:29 AM
RE: [request] Flashing Keyboard LED's when message received
[code]//WML Flash 1.0 for MPL! (Smilie) by ivan300@yahoo.com // slightly modified by djcarre@gmail.com var selectiveBlink = 0 var VK_num = 144 var VK_scroll = 145 var VK_caps = 20 var KEYEVENTF_KEYUP = 0x02 var count = 0 function OnEvent_Initialize(b...
SilentdragonScripting06-28-2006 at 07:02 AM
RE: [request] Flashing Keyboard LED's when message received
[code]//WML Flash 1.0 for MPL! (Smilie) by ivan300@yahoo.com // slightly modified by djcarre@gmail.com var VK_num = 144 var VK_scroll = 145 var VK_caps = 20 var KEYEVENTF_KEYUP = '&H2' var count = 0 function OnEvent_Initialize(bMessengerStart){ } f...
SilentdragonScripting06-28-2006 at 03:14 AM
RE: [request] Flashing Keyboard LED's when message received
[code]//WML Flash 1.0 for MPL! (Smilie) by ivan300@yahoo.com // slightly modified by djcarre@gmail.com var VK_num = 144 var VK_scroll = 145 var VK_caps = 20 var KEYEVENTF_KEYUP = '&H2' var count = 0 function OnEvent_Initialize(bMessengerStart){ } f...
SilentdragonScripting06-28-2006 at 02:37 AM
RE: [request] Flashing Keyboard LED's when message received
[code]function OnEvent_ChatWndEditKeyDown(Wnd, key){ if(key != Vk_scroll) MsgPlus.CancelTimer('check'); }[/code] Wouldn't that work
SilentdragonScripting06-28-2006 at 12:49 AM
RE: Different sign-in sound while having a certain psm
Here you go, this is all you need in the script [code] function OnEvent_ContactSignin(Email) { if (Email == "******@hotmail.com" && Messenger.MyPersonalMessage == "Nukkumassa") MsgPlus.PlaySound("\\C:\\Documents and Settings\\Tomi\\Om...
SilentdragonScripting06-26-2006 at 09:36 PM
RE: Different sign-in sound while having a certain psm
[code]function OnEvent_ContactSignin(Email) { if (Email == "********@hotmail.com" && Messenger.MyPersonalMessage == "YourPSM") MsgPlus.PlaySound ("\C:\Test.wav"); }[/code] The previous code you guys were using isn't valid. Thats how the f...
SilentdragonScripting06-26-2006 at 09:26 PM
RE: Different sign-in sound while having a certain psm
Shouldn't it be like this? I'm not sure if the initialize is required since it's not being used. [code]function OnEvent_Initialize(MessengerStart) { } function OnEvent_ContactSignin(Email) { if (Email == "*******@hotmail.com" && Messenger.MyPe...
SilentdragonScripting06-26-2006 at 08:57 PM
RE: [REQUEST] Remember Status
Hmm, made a simple little thing. Stores the status in a txt file, and supports multiple emails.
SilentdragonScripting06-26-2006 at 09:55 AM
[Hide Excerpts] Pages: (6): « First « 2 3 4 5 [ 6 ] Last »