What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [Release] Photo Sharing Disabler

[Release] Photo Sharing Disabler
Author: Message:
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: [Release] Photo Sharing Disabler
psst, correction:

quote:
Originally posted by TheGuruSupremacy
The Function patch was made by me not by Cookie.
Sorry, but if you want to talk origins and be precise, then the patch function like it is written was actually made by me. (so are the many other code flows like the SignIn function etc, which are all almost literally copies of what I did before in my memory patching scripts). See all my patch scripts where I used the exact same code.

The patch functions in your NudgesToolScript and Idle Liar scripts for example are also a word for word 'copy' of the one I used in Auto-Emoticons, Unlimited Nudges, etc... including the variable names (but minus the comments from my scripts).

Not that I didn't wanted you to copy them though, but correct is correct ;)

---

and the code:
code:
var Handle = Interop.Call("Kernel32","GetModuleHandleW",null);
    var sBuffer = Interop.Allocate(PatchOld.length);
    Address = (Address - 0x00400000) + Handle;

Can't be 'be stolen' because it is almost strait forward stuff to convert a base address to the correct virtual address in case the module is loaded in a different base offset. Nothing unique at all. It is (should be) used in almost every program and script which deals with memory patching (although not always like in my scripts where I simply ignore the possebility :p). It is in fact a mandatory step for such programs and thus should be common knowledge* and can not be owned or be claimed that "someone came up with it" or "invented it" and thus "stole it". It's another thing when someone (eg: TB) points out the nessecity of it of course.

provided he who put that code in his program/script knows what it does and why it is there of course. Otherwise it is just plain script-kiddy copying (but still not "stealing unique code" imho).

---

All and still with huge respect to TheGuruSupremacy though ;)

---

quote:
Originally posted by NanaFreak
this can be easily done with the registry setting made available by Patchou with MP!L.

see Messenger Plus! Live - Registry Settings and search for "OverrideImgTransfer"

a simple .reg file would be all that is required to fix the issue...
No, that registry setting will not completely disable Photo Sharing....
This script does...

see OverrideImgTransfer and photo sending
in which you actually corrected the OP and said the exact same thing I do now: that the registry key does not completely disables Photo Sharing; it only disables Photo Sharing for pasted image data, not for dropped graphic files

---

PS: master4523, I suggest to change this:
code:
MsgPlus.DisplayToast("Photo Sharing", "Windows Live Messenger " + Messenger.Version.toFixed(1) + ".0" + Messenger.VersionBuild + "\nis not supported");

to:
code:
MsgPlus.DisplayToast("Photo Sharing", "Windows Live Messenger " + Messenger.Version.toFixed(1) + "." + ("000" + Messenger.VersionBuild).slice(-4) + "\nis not supported");
Since the buildnumber isn't always a 3 digit number anymore (since a long time actually).

Also, the function OnGetScriptCommands() is wrong in your code. You don't have any commands in your code to begin with.

And you might want to store the setting user specific, not globally (thus by using Messenger.MyUserId).

And I hope you didn't just blindly copied all the code from my scripts and from TheGuruSupremacy's scripts without understanding what it all does.

This post was edited on 05-22-2009 at 03:54 AM by CookieRevised.
.-= A 'frrrrrrrituurrr' for Wacky =-.
05-22-2009 02:22 AM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[Release] Photo Sharing Disabler - by master4523 on 05-20-2009 at 11:14 AM
RE: [Release] Photo Sharing Disabler - by NanaFreak on 05-20-2009 at 11:33 AM
RE: [Release] Photo Sharing Disabler - by Schnappi on 05-20-2009 at 12:33 PM
RE: [Release] Photo Sharing Disabler - by blessedguy on 05-21-2009 at 12:50 AM
RE: [Release] Photo Sharing Disabler - by NanaFreak on 05-21-2009 at 06:46 AM
RE: [Release] Photo Sharing Disabler - by Menthix on 05-21-2009 at 11:04 AM
RE: [Release] Photo Sharing Disabler - by matty on 05-21-2009 at 11:09 AM
RE: [Release] Photo Sharing Disabler - by blessedguy on 05-21-2009 at 05:33 PM
RE: [Release] Photo Sharing Disabler - by Mnjul on 05-21-2009 at 05:35 PM
RE: [Release] Photo Sharing Disabler - by Menthix on 05-21-2009 at 05:42 PM
RE: [Release] Photo Sharing Disabler - by TheGuruSupremacy on 05-21-2009 at 06:09 PM
RE: [Release] Photo Sharing Disabler - by Mnjul on 05-21-2009 at 06:39 PM
RE: [Release] Photo Sharing Disabler - by blessedguy on 05-21-2009 at 06:56 PM
RE: [Release] Photo Sharing Disabler - by TheGuruSupremacy on 05-21-2009 at 07:03 PM
RE: [Release] Photo Sharing Disabler - by blessedguy on 05-21-2009 at 07:25 PM
RE: [Release] Photo Sharing Disabler - by CookieRevised on 05-22-2009 at 02:22 AM
RE: [Release] Photo Sharing Disabler - by NanaFreak on 05-22-2009 at 05:20 AM
RE: [Release] Photo Sharing Disabler - by TheGuruSupremacy on 05-22-2009 at 01:46 PM
RE: [Release] Photo Sharing Disabler - by CookieRevised on 05-22-2009 at 06:13 PM
RE: [Release] Photo Sharing Disabler - by TheGuruSupremacy on 05-22-2009 at 06:54 PM
RE: [Release] Photo Sharing Disabler - by blessedguy on 05-22-2009 at 08:06 PM
RE: [Release] Photo Sharing Disabler - by TheGuruSupremacy on 05-22-2009 at 08:13 PM
RE: [Release] Photo Sharing Disabler - by CookieRevised on 05-22-2009 at 09:17 PM
RE: [Release] Photo Sharing Disabler - by TheGuruSupremacy on 05-22-2009 at 09:45 PM
RE: [Release] Photo Sharing Disabler - by NanaFreak on 05-29-2009 at 01:31 PM
RE: [Release] Photo Sharing Disabler - by CookieRevised on 05-31-2009 at 09:38 AM
RE: [Release] Photo Sharing Disabler - by NanaFreak on 05-31-2009 at 10:55 AM
RE: [Release] Photo Sharing Disabler - by CookieRevised on 05-31-2009 at 11:46 AM
RE: [Release] Photo Sharing Disabler - by Mizery_Made on 06-25-2009 at 07:33 PM
RE: [Release] Photo Sharing Disabler - by CookieRevised on 06-26-2009 at 11:31 PM
RE: [Release] Photo Sharing Disabler - by Scovery on 08-21-2009 at 07:47 PM
RE: [Release] Photo Sharing Disabler - by Schnappi on 08-22-2009 at 06:52 AM
RE: RE: [Release] Photo Sharing Disabler - by Moh on 08-22-2009 at 11:55 AM
RE: [Release] Photo Sharing Disabler - by Michel le Roi on 08-26-2009 at 01:26 PM
RE: [Release] Photo Sharing Disabler - by TheGuruSupremacy on 08-26-2009 at 05:43 PM
RE: RE: [Release] Photo Sharing Disabler - by Michel le Roi on 08-27-2009 at 11:50 PM
RE: RE: RE: [Release] Photo Sharing Disabler - by puding on 09-20-2009 at 05:12 PM
RE: RE: [Release] Photo Sharing Disabler - by RHAF on 09-20-2009 at 05:57 PM
RE: [Release] Photo Sharing Disabler - by puding on 09-20-2009 at 11:29 PM
RE: RE: [Release] Photo Sharing Disabler - by RHAF on 09-21-2009 at 06:37 AM
RE: [Release] Photo Sharing Disabler - by hshah on 10-11-2009 at 10:25 PM
RE: [Release] Photo Sharing Disabler - by maximino on 11-04-2009 at 03:55 PM
RE: [Release] Photo Sharing Disabler - by CookieRevised on 11-04-2009 at 04:11 PM
RE: [Release] Photo Sharing Disabler - by maximino on 11-07-2009 at 11:57 AM
RE: [Release] Photo Sharing Disabler - by CookieRevised on 11-07-2009 at 05:51 PM
RE: [Release] Photo Sharing Disabler - by maximino on 11-09-2009 at 05:47 PM
RE: [Release] Photo Sharing Disabler - by maximino on 11-11-2009 at 05:49 PM
RE: [Release] Photo Sharing Disabler - by TheGuruSupremacy on 11-12-2009 at 08:40 PM
RE: [Release] Photo Sharing Disabler - by CookieRevised on 11-12-2009 at 09:56 PM
RE: [Release] Photo Sharing Disabler - by Mnjul on 11-13-2009 at 10:41 AM
RE: [Release] Photo Sharing Disabler - by CookieRevised on 11-13-2009 at 12:14 PM
RE: [Release] Photo Sharing Disabler - by TheGuruSupremacy on 11-13-2009 at 07:01 PM
RE: [Release] Photo Sharing Disabler - by CookieRevised on 12-11-2009 at 06:39 AM
RE: [Release] Photo Sharing Disabler - by BrutalAl on 08-09-2010 at 03:21 PM


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