Shoutbox

[release] CrazyText v1.4 {UPDATE} - 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: [release] CrazyText v1.4 {UPDATE} (/showthread.php?tid=66412)

[release] CrazyText v1.4 {UPDATE} by skyserpent on 09-18-2006 at 07:43 PM

Name: CrazyText
Latest Version: 1.4
Description: Have you seen people with that crazy text in their display names? (example) well now you can talk in that "font"
Instructions:
There is now a GUI included :) So it can be enabled and disabled there. Also, you can choose your 'font' from the GUI. At the moment there is 6 'fonts' to choose from.
To use the crazynick feature then use the syntax...
/crazynick <nick here> (without <&> of course) [it will use the currently selected font in the GUI Window]

Old school enable/disable:
Make sure the script is enabled in script preference menu then to start it up send "/ctstart" (without quotes) to a random contact. To stop the script send "/ctstop" (without quotes) to a random contact.

------------------------

FEATURES:
> Talk in one of the 4 uber cool 'fonts'.
> /crazynick for your nick to be shown in the currently selected font.

------------------------

ADDED:
v1.4
Added compatibility warning
Added more 'fonts'
v1.3
Added new font
Fixed font selection
Fixed emoticons
v1.2
Added more character's to 3rd 'font'
v1.1
Added more character's to default 'font'
v1.0
Added one more 'font'
v0.9
Added another 'font'
v0.8
Added GUI!
v0.7
Bug fix (url's are now shown as proper url's)
v0.6
Bug fix (all emoticons work - default & custom) [edit: so we thought]
v0.5
Bug fix (default emoticons work) [edit: most]
v0.4
Added /crazynick feature for the font in your nickname
v0.3
> fixed "/" command bug
v0.2
> ctstart! and ctstop! commands to start and stop CrazyText

------------------------

BUGS
> Doesn't work with Messenger Live Customizer

Any bugs post them here or PM me!
All help fixing the bugs is appreciated

A big thanks to SpunkyLoveMuff! :)


RE: [release] CrazyText v0.2 by prashker on 09-18-2006 at 07:45 PM

1337 (h)

Good job (y)

edit: add a option to [enable/disable] the 'font' without actually stopping the script :)


RE: [release] CrazyText v0.2 by DarkMe on 09-18-2006 at 07:52 PM

* DarkMe downloads
i think adding more options wil be good
Good script


RE: [release] CrazyText v0.2 by Chris4 on 09-18-2006 at 07:54 PM

Thanks, my girlfriends using it :P


RE: [release] CrazyText v0.2 by Thor on 09-18-2006 at 07:54 PM

This was really funny, great to "make" those letters. :D

Make a possibility to change your nickname from the script with that "font"


RE: RE: [release] CrazyText v0.2 by Chris4 on 09-18-2006 at 07:56 PM

quote:
Originally posted by Nitro
This was really funny, great to "make" those letters. :D

Make a possibility to change your nickname from the script with that "font"

Something like /crazynick <nickname> :)
RE: [release] CrazyText v0.2 by Thor on 09-18-2006 at 08:06 PM

quote:
Originally posted by Chris4
Something like /crazynick <nickname> :)
Yup. And maybe a GUI aswell. :)
RE: [release] CrazyText v0.2 by skyserpent on 09-18-2006 at 08:10 PM

i cant make GIU's :( not a clue how to. so if anyone wants to help me out.... the enabling/disbaling is proving to be a problem (being stubbon and not working) so moving onto the nickname change. will go back to enable/disable later on.


EDIT: anyone want to help with a GUI for it? for the nick change?


RE: [release] CrazyText v0.2 by Chris4 on 09-18-2006 at 08:20 PM

BUG

You can't do any "/" commands 8o|


RE: [release] CrazyText v0.2 by skyserpent on 09-18-2006 at 08:21 PM

yeh... i know that one... any help fixing will be much appriciated


RE: [release] CrazyText v0.2 by skyserpent on 09-18-2006 at 08:46 PM

can anyone help with why this code isnt working??

code:

code:
var ScriptEnabled = false;

function OnEvent_ChatWndSendMessage(ChatWnd, Message) {
   if(Message == "ctstart!") ScriptEnabled = true;
   if(Message == "ctstop!") ScriptEnabled = false;
}

function OnEvent_ChatWndSendMessage(ChatWnd, Message) {
   if(ScriptEnabled) {
Message = Message.replace(/a/gi,"&#945;");
Message = Message.replace(/b/gi,"&#1074;");
Message = Message.replace(/c/gi,"¢");
Message = Message.replace(/d/gi,"&#8706;");
Message = Message.replace(/e/gi,"&#1108;");
Message = Message.replace(/f/gi,"ƒ");
Message = Message.replace(/h/gi,"&#1085;");
Message = Message.replace(/i/gi,"&#953;");
Message = Message.replace(/j/gi,"&#1504;");
Message = Message.replace(/k/gi,"&#1082;");
Message = Message.replace(/l/gi,"&#8467;");
Message = Message.replace(/m/gi,"&#1084;");
Message = Message.replace(/n/gi,"&#951;");
Message = Message.replace(/o/gi,"&#963;");
Message = Message.replace(/p/gi,"&#961;");
Message = Message.replace(/r/gi,"&#1103;");
Message = Message.replace(/t/gi,"&#1090;");
Message = Message.replace(/u/gi,"&#965;");
Message = Message.replace(/v/gi,"&#957;");
Message = Message.replace(/w/gi,"&#969;");
Message = Message.replace(/x/gi,"&#967;");
Message = Message.replace(/y/gi,"&#1091;");
}
}

RE: [release] CrazyText v0.2 by NanaFreak on 09-18-2006 at 08:53 PM

it lets / commands work


RE: [release] CrazyText v0.2 by matty on 09-18-2006 at 09:03 PM

quote:
Originally posted by skyserpent
function OnEvent_ChatWndSendMessage(ChatWnd, Message) {
   if(Message == "ctstart!") ScriptEnabled = true;
   if(Message == "ctstop!") ScriptEnabled = false;
}

function OnEvent_ChatWndSendMessage(ChatWnd, Message) {
Because you are calling the same function twice.
RE: RE: [release] CrazyText v0.2 by skyserpent on 09-18-2006 at 09:12 PM

quote:
Originally posted by SonicSpam
1337 (h)

Good job (y)

edit: add a option to [enable/disable] the 'font' without actually stopping the script :)


DONE!

quote:
Originally posted by Chris4
BUG

You can't do any "/" commands 8o|


FIXED!

thanks matty for helping
RE: RE: RE: [release] CrazyText v0.2 by Chris4 on 09-18-2006 at 11:12 PM

quote:
Originally posted by skyserpent
quote:
Originally posted by Chris4
BUG

You can't do any "/" commands 8o|


FIXED!

thanks matty for helping

Sure?

I can't get it working. I've got v0.3 ?

Meh, it was because I still had v0.2 running aswell. So I removed that, then v0.3 wasn't working. I removed it and added it again, won't work :S
RE: [release] CrazyText v0.3 by joeklc on 09-20-2006 at 12:04 PM

can anyone show some tutorial ?
i really donno how it work de


RE: [release] CrazyText v0.3 by skyserpent on 09-20-2006 at 03:12 PM

quote:
Originally posted by skyserpent
Instructions: Make sure the script is enabled in script preference menu then to start it up send "ctstart!" (without quotes) to a random contact. To stop the script send "ctstop!" (without quotes) to a random contact.


AND... the GUI is nearly done :)

preview:
[Image: screenshot102km6.png]

still no bug fixes for the web links and emoticons yet though :( any help?
RE: [release] CrazyText v0.3 by Menthix on 09-22-2006 at 04:08 PM

Two suggestions:

- Instead of regular messages ("ctstart!" and "ctstop!"), use Plus! commands ("/ctstart" and "/ctstop"). Proper Plus! commands are easier to use since they appear in the Plus! command helper.

- Make at least the deault emoticons parsable. Right now when I type ":p" the "p" gets changed so it wont display the emoticon.


RE: [release] CrazyText v0.3 by skyserpent on 09-22-2006 at 04:10 PM

ok thanks for the suggestions... but do you know how to make the default emoticons parsable?? does anyone?


RE: [release] CrazyText v0.3 by Matti on 09-22-2006 at 04:26 PM

code:
Original from the Timezone script
var EmoCI = /(:((-?(\)|D|>|O|P|\(|<|@|S|\$|\||\[)|-(\*|#))|'\()|;-?\)|\([A-IK-PRTUW-Z068@&{}#%*~^]\))/i
var EmoCS = /(8(o\||-\))|<:o\)|\+o\(|\((brb|pi|\|\||sn|bah|tu|pl|ip|li|st|um|co|mp|ap|au|so|ci|yn|h5|xx|mo)\))/
if(EmoCI.test(Message) || EmoCS.test(Message)) {
   //There are emoticons in the message
   //Here you will have to find a way to not replace emoticons, good luck!
} else {
   //There are no emoticons in the message
}

RE: RE: [release] CrazyText v0.3 by Chris4 on 09-22-2006 at 05:57 PM

quote:
Originally posted by Mattike
code:
Original from the Timezone script
var EmoCI = /(:((-?(\)|D|>|O|P|\(|<|@|S|\$|\||\[)|-(\*|#))|'\()|;-?\)|\([A-IK-PRTUW-Z068@&{}#%*~^]\))/i
var EmoCS = /(8(o\||-\))|<:o\)|\+o\(|\((brb|pi|\|\||sn|bah|tu|pl|ip|li|st|um|co|mp|ap|au|so|ci|yn|h5|xx|mo)\))/
if(EmoCI.test(Message) || EmoCS.test(Message)) {
   //There are emoticons in the message
   //Here you will have to find a way to not replace emoticons, good luck!
} else {
   //There are no emoticons in the message
}

Better ask Shondoit first.
RE: [release] CrazyText v0.3 by Spunky on 10-23-2006 at 11:27 PM

Should also find a way to not replace letters within format tags :p


RE: [release] CrazyText v0.3 by hosey on 10-24-2006 at 08:02 AM

thank you! this script is good as! i love it thanx


RE: [release] CrazyText v0.3 by EBFL on 10-24-2006 at 06:17 PM

Nice One(Y)
Its Just
Maybe you could turn it on and off in a sentence so some of the sentence is with that 'font' and the rest is noral?


RE: [release] CrazyText v0.3 by MoonGoose on 10-24-2006 at 06:55 PM

I don't know how to use this script, I can't get any menu anywhere, anyone plz help me...


RE: [release] CrazyText v0.3 by pollolibredegrasa on 10-24-2006 at 07:23 PM

quote:
Originally posted by MoonGoose
I don't know how to use this script, I can't get any menu anywhere, anyone plz help me...


It tells you in the first post:

quote:
Originally posted by skyserpent
Instructions: Make sure the script is enabled in script preference menu then to start it up send "ctstart!" (without quotes) to a random contact. To stop the script send "ctstop!" (without quotes) to a random contact.


RE: [release] CrazyText v0.3 by Spunky on 10-24-2006 at 07:29 PM

quote:
Originally posted by EnglandBoyForLife.
Maybe you could turn it on and off in a sentence so some of the sentence is with that 'font' and the rest is noral?

Possibly use format tags like [ct]Blah[/ct]
RE: [release] CrazyText v1.0 by skyserpent on 12-28-2006 at 10:18 AM

New version with new features! :)

Check out the first page of this thread.


RE: [release] CrazyText v1.2 by ..Nathan Boii x !! on 01-02-2007 at 05:04 PM

If anyone can make there own fonts out of letters i gve you can u please add     

xX_nathan-boiio_Xx@hotmail.co.uk


» × Nathan ° ¤ ]]


RE: [release] CrazyText v1.2 by skyserpent on 01-03-2007 at 09:29 PM

Hey Nathan, Could you email me the letters please as I cannot see them anywhere. Thanks

email: sladetheblade[at]gmail[dot]com


RE: [release] CrazyText v1.3 by skyserpent on 01-06-2007 at 03:11 AM

NEW VERSION

New font added!

Also font selection and emoticon showing is fixed :)


RE: [release] CrazyText v1.3 by thomashas on 01-06-2007 at 01:05 PM

hi like your script.. its very nice. first i got a problem. im using the gardient script, and when im typing a messeage there´s a problem

[¢=4]&#969;&#1108;g&#1103;&#945;g&#945;[/¢=1] .. the c will be become in ¢.. i was looking in the source and i found this     }

if(param==="[c=1]"){ret = true}
if(param==="[/c=1]"){ret = true}
if(param==="[/c=4]"){ret = true}
if(param==="[c=4]"){ret = true}
if(param===":D"){ret = true}

so ich changed it .. but it doeasnt work.. does anyone know whats the problem is? thx very much

my second problem is when im typing too much "t" there comes a "m" ?

i copied thix thext orginally from the screenshot, but the text is ok

ich hab zuviele kakao getrunken jetzt ist mir schlecht

but in msn is shows a "m"

screenshot added

[Image: unbenannt1vd4.jpg]


RE: [release] CrazyText v1.3 by skyserpent on 01-06-2007 at 02:14 PM

I'm sorry but I do not get the errors for when the t turns into a m :s strange.

Try this for the gradient problem...

After

code:
if(param==="(li)"){ret = true}

press enter a few times and then put

code:
if(param==="[c=1]"){ret = true}
if(param==="[/c=1]"){ret = true}
etc etc

Tell me if it works. Tried it and it doesn't work. I will try to fix it.
RE: [release] CrazyText v1.3 by thomashas on 01-06-2007 at 02:51 PM

serious .. hm thx for the gardient problem.. now it works ;) :D


RE: [release] CrazyText v1.3 by skyserpent on 01-06-2007 at 03:05 PM

By that do you mean that the gradient script now works with crazytext enabled?


RE: [release] CrazyText v1.3 by warmth on 01-06-2007 at 03:08 PM

for doesn't work... and I did the modifications you said skyserpent...


RE: [release] CrazyText v1.4 {UPDATE} by skyserpent on 09-23-2007 at 12:51 PM

New version: 1.4

New fonts added
Added compatibility warning


RE: [release] CrazyText v1.4 {UPDATE} by felipEx on 09-23-2007 at 04:55 PM

[Image: bugne8.th.png]

it replaced my custom emoticons  :(

:aja: | :jiji: | :C | =D


RE: [release] CrazyText v1.4 {UPDATE} by skyserpent on 09-23-2007 at 07:36 PM

It didn't. For the emotions to show, you need to leave gaps between each one.

Eg.

"Moo, I like cake:)" Should be "Moo, I like cake :)"

":(:):@" should be ":( :) :@"


RE: [release] CrazyText v1.4 {UPDATE} by markee on 09-24-2007 at 12:29 AM

quote:
Originally posted by skyserpent
It didn't. For the emotions to show, you need to leave gaps between each one.

Eg.

"Moo, I like cake:)" Should be "Moo, I like cake :)"

":(:):@" should be ":( :) :@"
This is because they are tested as a single word rather than using a regular expression to see if they exist within the word.

Also have a read of CookieRevised's reply to Replace Colour Codes for information regarding being able to use colour codes wiith the script.  I'm sure you can see how to modify Cookie's work and put it into your orwn stuff, just make sure your regular expression checks within each word and not the entire word.
RE: [release] CrazyText v1.4 {UPDATE} by skyserpent on 09-24-2007 at 08:39 AM

Thanks, I have an idea :D


RE: [release] CrazyText v1.4 {UPDATE} by skyserpent on 09-24-2007 at 03:18 PM

Nope, can't do this :(


RE: [release] CrazyText v1.4 {UPDATE} by warmth on 10-21-2007 at 05:24 PM

Hi mate... I wanna report something I didn't see before...

code:
El script está iniciandose
El script está cargado y listo
Función llamada: OnEvent_Initialize
Error: Raíz no válida en la clave del registro "HKCU\Software\Patchou\Messenger Plus! Live\GlobalSettings\Scripts\Special Small Characters\Enabled". (código: -2147024894).
       Fichero: CrazyText v1.4.js. Línea: 12.
La función OnEvent_Initialize devolvió un error. Código: -2147352567
Función llamada: OnEvent_ChatWndSendMessage
Función llamada: OnEvent_ChatWndSendMessage


RE: [release] CrazyText v1.4 {UPDATE} by -MaTaDoR- on 10-21-2007 at 07:36 PM

My big problem is: when im typing "t" there comes a "m" :S

i tried to solve this problem but i can't. i try the method above but it disn't work.

How can i fix it?


RE: [release] CrazyText v1.4 {UPDATE} by MrT on 10-21-2007 at 11:45 PM

it works with default emoticons but it doesn't work secret emoticons.  (yn),(ci),(%),(xx),*wwf,*unicef...(and all i'm shorcuts)


RE: [release] CrazyText v1.4 {UPDATE} by skyserpent on 10-22-2007 at 12:33 PM

Thanks for this, The next release will support these.


RE: [release] CrazyText v1.4 {UPDATE} by warmth on 10-22-2007 at 05:48 PM

If you need help to debug your script contact me by pms ;)!!!


RE: [release] CrazyText v1.4 {UPDATE} by nECr0 on 11-19-2007 at 09:52 AM

Nice idea but I can't turn it off either through the applet or the /cstop command. Any help?


RE: [release] CrazyText v1.4 {UPDATE} by kidoushane on 11-20-2007 at 06:00 PM

WTF~~~ i canot change back my font ~~~FIx it  -.-


RE: [release] CrazyText v1.4 {UPDATE} by kidoushane on 11-21-2007 at 05:20 AM

can u atleast add a normal font into ur choice for font here as default?...incase got bug to change back normal ..


RE: [release] CrazyText v1.4 {UPDATE} by kidoushane on 11-21-2007 at 07:24 AM

HELP LA I CANOT CHANGE BACK MY FONT -,-


RE: [release] CrazyText v1.4 {UPDATE} by skyserpent on 11-22-2007 at 10:57 PM

Crazytext can easily be removed. This can be done from the script preferences.

Alternatively you can unselect the enable tick box in the Crazytext configuration.

Please make sure you are not running Special Small Characters as this has been shown to create problems with Crazytext.


RE: [release] CrazyText v1.4 {UPDATE} by bobby2000 on 11-26-2007 at 05:17 PM

nioce.. but personally i HATE that writing lol.. but  i understand that some people like it :)


RE: [release] CrazyText v1.4 {UPDATE} by skyserpent on 11-26-2007 at 05:19 PM

I don't like it either. I just made it because I was bored and had an idea. =p


RE: [release] CrazyText v1.4 {UPDATE} by Dane85 on 01-24-2008 at 08:23 PM

Hello @ all...

Kann das jemand auch vielleicht auf Deutsch beschreiben ? Wäre sehr nett....

Ich bedank mich im Vorraus


RE: [release] CrazyText v1.4 {UPDATE} by Jimbo on 01-24-2008 at 08:37 PM

quote:
Originally posted by Dane85
Hello @ all...

Kann das jemand auch vielleicht auf Deutsch beschreiben ? Wäre sehr nett....

Ich bedank mich im Vorraus
This is an english forum, so either post or english, or try the dutch, german? forum
RE: [release] CrazyText v1.4 {UPDATE} by xNecroFlamex on 04-27-2008 at 08:12 PM

when i type with the this script it ends up like this

[¢=#0000ƒƒ]&#1085;&#1108;&#1091;&#1091;&#1091;[/¢=#8080ƒƒ]
[¢=#0000ƒƒ]&#969;&#965;&#1090;š &#965;&#961;&#961;[/¢=#8080ƒƒ]

how come it does tht? o.o
and how can i fix it


RE: [release] CrazyText v1.4 {UPDATE} by viks-212 on 05-17-2008 at 02:14 PM

my crazy text 1.4 keeps opening up as notepad and it wont let me import it to my Messenger Plus.

how do i chnage it so it doesnt open with notepad anymore

plz help me :S


RE: [release] CrazyText v1.4 {UPDATE} by zhenboon1 on 05-24-2008 at 06:00 AM

Erm the crazy text i disable but the font is still there what can i do to stop the font pls tell mi asap thk:)


RE: [release] CrazyText v1.4 {UPDATE} by star-jojo on 07-08-2008 at 06:05 PM

I don't know how to deactivate the script. I delete  it but it still works. what should I do????


RE: [release] CrazyText v1.4 {UPDATE} by betteee on 07-25-2008 at 07:24 PM

danke


RE: [release] CrazyText v1.4 {UPDATE} by stijnthegamer on 07-19-2009 at 02:45 PM

hi there, I like the script :)
there is a feature to set your nickname in that font, but there isn't one for the PSM? that's what I'm missing ;)

[sorry for my bad English, I'm Dutch]


RE: [release] CrazyText v1.4 {UPDATE} by Valiante on 02-22-2010 at 01:24 AM

hey guys
i was wondering how i could add my own font to this script ??
or maybe i could send it to you to add ??
it's an awesome script by the way
thanks :D