Plugins in Vb - Printable Version -Shoutbox (https://shoutbox.menthix.net) +-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58) +--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4) +---- Forum: Scripting (/forumdisplay.php?fid=39) +----- Forum: Plug-Ins (/forumdisplay.php?fid=28) +------ Thread: Plugins in Vb (/showthread.php?tid=67483) Plugins in Vb by Deco on 10-19-2006 at 10:28 PM
I've tried using Patchous examples to plugins but none of them work... RE: Plugins in Vb by matty on 10-19-2006 at 10:39 PM
Well with the example provided by Patchou you also need to register the dll and add registry entries. RE: Plugins in Vb by Deco on 10-20-2006 at 10:55 PM
I must be really dumb.. I downloaded your example.. followd the instructions on the txt file.. and nothing happened!!! RE: Plugins in Vb by matty on 10-21-2006 at 12:40 PM Which version of Messenger Plus! do you have? RE: Plugins in Vb by Deco on 10-21-2006 at 04:06 PM
4.01.0.240 -> Plus RE: Plugins in Vb by CookieRevised on 10-21-2006 at 04:12 PM
quote:Plugins are something from Messenger Plus! 3. So the examples you'll find are all for Messenger Plus!3 (with MSN Messenger 7.x or lower). In Messenger Plus! Live with Windows Live Messenger, the plugin system has been replaced with scripting, which is done in JScript 5.6. Scripting is a quite different system than plugins. If you want to make scripts, I suggest to download and read the official Plus! Live Scripting documentation. You still can make plugins in VB and load them in Messenger Plus! Live, but this will always require a wrap-around script. Also the system of making a plugin must be very well understood if you want to integrate a (old-system) plugin into Messenger Plus! Live and that isn't so strait forward. RE: Plugins in Vb by Deco on 10-21-2006 at 04:45 PM
Ok, will go from there. RE: RE: Plugins in Vb by CookieRevised on 10-21-2006 at 07:17 PM
quote:Depends on your programming knowledge quote:What has been said in that thread is that it isn't possible using normal programming; being it scripts or plugins.... You need to do it via sending and talking on the protocol level. This hasn't got much todo with scripting or plugins. It has mostly todo with how you program it, not with what you use to program it, if you know what I mean But the reason why this isn't possible with scripting alone is because you will need callbacks to do this. Callbacks aren't available in the current scripting engine. Using an external DLL which does the protocol talking for you, it would be possible. But all that is not the main problem you're facing. The main thing is, as said in that other thread, that you need to create a proxy. And that is far from easy. Also you need to understand and know the complexity of the messenger protocol. It is possible, but very far from easy... quote:The examples shown in the official plugin documenation, and the sources of plugins on these forums (eg: the one from Matty) show exactly how to make such a DLL. VB6 Plugins are ActiveX DLLs. They work in exactly the same way, and thus can be called in the same way you call any other ActiveX DLL and functions within it. RE: Plugins in Vb by Deco on 10-21-2006 at 09:45 PM
I think this is above my head.. but I'll keep trying. Any chances you guys could make this for me? RE: Plugins in Vb by CookieRevised on 10-21-2006 at 09:55 PM
quote:A useable proxy tool (opposite of the sniffer) has been requested a couple of times. Though, nobody has created one as far. So I doubt it, unless someone can be bothered... :/ RE: Plugins in Vb by Deco on 10-21-2006 at 10:03 PM
I'll keep trying if I get somewhere I'll make sure to post it. |