Shoutbox

[pre-release] Letter Switcher (make sure your contacts dont know what you are saying) - 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)
+----- Thread: [pre-release] Letter Switcher (make sure your contacts dont know what you are saying) (/showthread.php?tid=68979)

[pre-release] Letter Switcher (make sure your contacts dont know what you are saying) by roflmao456 on 11-30-2006 at 12:14 AM

Hey it's letter switcher/encrypter

make sure your contacts dont see what you are typing :O
it switches the letters around by replacing certain letters with different ones... beta version so there might be bugs.


RE: [pre-release] Letter Switcher (make sure your contacts dont know what you are saying) by Spunky on 11-30-2006 at 12:59 AM

Whats the point without another script to decode. Sure your friends won't understand (or like) you, but they won't know you're laughing at them about it ;)

Also the source code seems very familiar (one of the "1337" scripts that were lying around on the forum somewhere)


RE: [pre-release] Letter Switcher (make sure your contacts dont know what you are saying) by roflmao456 on 11-30-2006 at 01:03 AM

quote:
Originally posted by SpunkyLoveMuff

Also the source code seems very familiar (one of the "1337" scripts that were lying around on the forum somewhere)

:O i didnt know that!
RE: [pre-release] Letter Switcher (make sure your contacts dont know what you are say by CookieRevised on 11-30-2006 at 01:13 AM

roflmao456, with all due respect, but slow down on the release of scripts.

Non of your scripts are finished, contain many bugs, and many are quite useless or simply don't even work.

It is better to release something working and at least bug tested, than release a script every hour.

Even simply start by making your code nice and tidy instead of spaces and tabs everywhere... If you do at least this, you'll see that your code contains a lot of redundant stuff (eg: 1 OnGetScriptMenu() in this letter switcher script contains a lot of unneeded spaces, tabs and { } which doesn't need to be there).

2 Not to mention that the function OnEvent_ChatWndSendMessage() in this script doesn't work like you intended it at all. And this is even the core of this whole script... eg:

code:
Message = Message.replace(/f/gi,"s");
Message = Message.replace(/s/gi,"f");
will simply return the very same Message content since you first replace "f" with "s" and then you replace that same "s" back to "f"...

3 There are no about or how-to windows defined

4 etc...

and all that just with this simple script....

I don't want to discourage you from scripting at all, but simply note that all those releases aren't good for anybody. If everybody would release their 5-minute-instant scripts they've made, the forum would be one big chaos.

So please stop releasing these kinds of scripts and put some more time and effort into 1 script instead.
RE: [pre-release] Letter Switcher (make sure your contacts dont know what you are saying) by xsouldeath on 12-09-2006 at 02:16 AM

my bot uses such a feature
to translate like
google.com/dogs+are+fun
so that the user can type
google dogs are fun
and it messages them with a nice link rather than them messaging with
google dogs+are+fun :)