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

Search Results
Subject Author Forum Time
RE: Some simple plugin questions
Well... there is one way you could do what you describe. You can use the oMessenger object to create a new IM window (just to make sure there's somewhere to send it), then use SendKeys or the equivalent message in C++s SendMessage with the WM_KeyPre...
Predatory KangarooPlug-Ins11-18-2003 at 12:10 PM
RE: Some simple plugin questions
Well, no-one else is making a... constructive reply to this, so (even though i haven't made any plugins for a while) i will try. If you want to change ur status, you should send back a command like /online where you would normally send back some tex...
Predatory KangarooPlug-Ins11-13-2003 at 08:48 AM
RE: Hopper...let's Hop! (3.04.0275: Updates available!)
Raddie, what I think he means is that it will execute "/xhop 3" like normal, then nothing but "/xhop about" (from that plugin at least) will work for the next ten minutes
Predatory KangarooPlug-Ins10-29-2003 at 11:53 AM
RE: WMPlus 2 - Windows Media Player plugin
I have a history lesson now, so I'm gonna try it again. I had forgotten about my plugin because you needed to open a window for it to work, but it may be time to resurrect it... If I can get it working, I'll post it here in a few hours, along with ...
Predatory KangarooPlug-Ins09-25-2003 at 02:29 AM
RE: WMPlus 2 - Windows Media Player plugin
PsychoMark: I'm intrigued as to how you did this. I have the code you can use to detect when the song changes, so if you message me, I can send it over to you :) (Although it uses Remoting, not a WMP plugin, didn't think of doing it that way :$)
Predatory KangarooPlug-Ins09-24-2003 at 01:50 PM
RE: manipulating sText in ReceiveNotify?
I had this problem a while ago, when i was experimenting with making a game as a plugin... I had it send the IP for winsock in 3 parts - first off the client computer sent "pkr01", the server replied with "pk127", the client sent "pkr02", serve...
Predatory KangarooPlug-Ins09-24-2003 at 01:44 PM
RE: New plugin feature
Hmm, so we can... like... send up to 20 messages in return? Nice :) Shame there's no way to send a message at any time (without using sendkeys) Ah well, y'cant have everything :) gj, PatchOU (Y)(Y)
Predatory KangarooPlug-Ins09-10-2003 at 09:12 AM
RE: Using the message received
I'm doing my own research on the history thing right now. I'll post again in a coupla hours when i've figured it out :)
Predatory KangarooPlug-Ins09-06-2003 at 05:10 PM
RE: Plugin change in Plus! 2.21
Ah well, can't have everything I guess :) But this does mean that I can do my WMP Plugin without the need for a seperate executable (because it needs a window to be created) Shame there isn't anything to change the nickname without forcing it to ty...
Predatory KangarooPlug-Ins09-06-2003 at 05:04 PM
RE: Plugin change in Plus! 2.21
Ah, nice PatchOU :) Are there any other changes in 2.21? Any of those highly requested features (hint hint) ;)
Predatory KangarooPlug-Ins09-06-2003 at 04:36 PM
RE: Using the message received
Yeah, Xerxis' FDToaster to display the toast and you can use the .History property of the ConversationWnd object you're passed to get the messages (I'm not sure if they're passed in an array or if you have to figure out where the messages start y...
Predatory KangarooPlug-Ins09-05-2003 at 04:33 PM
RE: Running in background
That's not the way I did it... I put this in the general declarations part (the very top of the module): [code] Public WithEvents my_timer As Timer [/code] Then this in the initialize function: [code] my_timer = New Timer [/code] Then, I set the pro...
Predatory KangarooPlug-Ins08-30-2003 at 05:10 PM
RE: MSN Messenger Dice Roller: Needed
weeeeeell... u could require that each user has the plugin, then use the notify code to send a simple random number, or the 5 letter hash (i don't know much about hashing so i don't know if u can have a 5 letter hash :)), then recievenotify to pick...
Predatory KangarooPlug-Ins08-21-2003 at 05:00 PM
RE: Ignore ReceiveNotify()
Well, that's what you said you wanted to do :S This will ignore ReceiveNotify() by doing the absolute minimal amount of processing when the event is triggered. If that's what you meant, then try to explain some more :)
Predatory KangarooPlug-Ins08-21-2003 at 05:17 AM
RE: Ignore ReceiveNotify()
Example in C++: MPPLUGIN_RETURN_BOOL ReceiveNotify(/*[in]*/ const char* sNotifyCode, /*[in]*/ const char* sText, /*[in]*/ PLUGIN_PARAM* pParam, /*[out]*/ char* sTextToSend) { return FALSE; } Example in VB: Public ...
Predatory KangarooPlug-Ins08-20-2003 at 12:56 PM
RE: Ignore ReceiveNotify()
To ignore a RecieveNotify, all you should need to do is return false immediately after entering the function.
Predatory KangarooPlug-Ins08-20-2003 at 04:16 AM
RE: Who you're chatting too
oConversationWindow.Contacts.Item(0).Property(1) that will get the first user in the conversation's e-mail address (there are different ways, but that is the most foolproof). change the parameter in Item(n) to change which user you get the e-mail of...
Predatory KangarooPlug-Ins08-19-2003 at 03:23 PM
RE: can not find the Messenger API in the reference list
gijs_liegbeest, i've attached a .reg file that I use to add 3 of the 4 MSN typelibraries to the reference list. Works fine for me. I'm working on this same type of thing in C++, but i'm still debugging that :( P.S. the easiest way to use them is t...
Predatory KangarooPlug-Ins08-13-2003 at 01:39 PM
RE: Status change notifier
Wtbw, I was talking to Xerxis when he was making this plugin, when he was trying to make a toast window for the first time, I had seen your dll before, and tried it out, but i couldn't remember the name or where I had seen it (it's in my favourites...
Predatory KangarooPlug-Ins07-28-2003 at 09:35 AM
RE: Status change notifier
wtbw, i take offense at that... I was the one who got the background image for it :S (it's not a resource or anything, either)
Predatory KangarooPlug-Ins07-27-2003 at 10:33 AM
RE: Multiple message Sending (flood:$)
He doesn't have a flooder in his plugin, but he has a really long message to send (longer than the message character limit), so he has to split it up
Predatory KangarooPlug-Ins07-24-2003 at 10:43 AM
RE: Multiple message Sending (flood:$)
True If anyone is really desperate to flood, make a plugin out of that (then you really will need to use wouter's real status viewer)
Predatory KangarooPlug-Ins07-24-2003 at 10:31 AM
RE: Be popular! Show your plugin to the world!
Didn't this used to be stickied?
Predatory KangarooPlug-Ins07-23-2003 at 01:05 PM
RE: [REQ] - advanced winamp tags
Alright, I've never worked with the winamp SDK before, but I think I know a way to do this (although it's not really a plugin). If the SDK has an event like WMP's MediaChange event, it should be possible to change the name (i think)
Predatory KangarooPlug-Ins07-19-2003 at 09:02 AM
RE: WMPPlugin now with current playing song and nick changer
let u know? What can i say but... (Y)(Y)(Y)(Y)(Y)
Predatory KangarooPlug-Ins07-18-2003 at 12:18 PM
[Hide Excerpts] Pages: (4): « First [ 1 ] 2 3 4 » Last »