What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Avoid the "[MyName] says:" line

Avoid the "[MyName] says:" line
Author: Message:
TheGuruSupremacy
Full Member
***

Avatar

Posts: 367
Reputation: 19
34 / Male / Flag
Joined: Nov 2006
RE: RE: Avoid the "[MyName] says:" line
quote:
Originally posted by pd_

Interesting stuff. Yeah, that would not be possible using the scripts anymore, would have to go further for that. :(

Thanks for the info!

Yeah it's possible to do that using scripts and it's quite simple.You just have to use writeprocessmemory api:
code:
function Patch(nAddress, sByteString) {
    var sBuffer = Interop.Allocate(++sByteString.length);
    for (var j = 0; j < sByteString.length; j++) sBuffer.WriteWORD(j, sByteString.charCodeAt(j));
    var hProc = Interop.Call("Kernel32", "GetCurrentProcess");
    Interop.Call("Kernel32", "WriteProcessMemory", hProc, nAddress, sBuffer.DataPtr, sByteString.length, 0);
}

Greetings!

This post was edited on 05-05-2008 at 06:31 PM by TheGuruSupremacy.
05-05-2008 06:30 PM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Avoid the "[MyName] says:" line - by pd_ on 04-19-2008 at 09:00 AM
RE: Avoid the "[MyName] says:" line - by Plan-1130 on 04-24-2008 at 08:17 PM
RE: Avoid the "[MyName] says:" line - by TheGuruSupremacy on 05-04-2008 at 10:39 PM
RE: Avoid the "[MyName] says:" line - by pd_ on 05-05-2008 at 05:29 PM
RE: RE: Avoid the "[MyName] says:" line - by TheGuruSupremacy on 05-05-2008 at 06:30 PM
RE: Avoid the "[MyName] says:" line - by Ezra on 05-05-2008 at 05:44 PM
RE: Avoid the "[MyName] says:" line - by CookieRevised on 05-05-2008 at 11:30 PM
RE: Avoid the "[MyName] says:" line - by pd_ on 05-06-2008 at 09:56 AM
RE: Avoid the "[MyName] says:" line - by CookieRevised on 05-07-2008 at 12:45 AM
RE: Avoid the "[MyName] says:" line - by TheGuruSupremacy on 05-07-2008 at 08:23 AM
RE: Avoid the "[MyName] says:" line - by devmsn on 05-10-2008 at 11:49 AM
RE: Avoid the "[MyName] says:" line - by TheGuruSupremacy on 05-11-2008 at 09:40 AM


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