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.