Author Topic: [SOLVED]Chat detection problem  (Read 745 times)

I'm trying to make a client-sided spelling corrector, and I thought the first step was to brown townyze a message right before the client sent it to the server.
This simple script echo()'s the text. Unfortunately, it is not working. The script does echo the message after the 'Enter' button is pressed, but the chat GUI element which says "SAY: " does not disappear.
Code: [Select]
package testp
{
function NMH_type::send(%this)
{
Parent::send(%this);
%msg = %this.getValue();
echo("Test: " @ %msg);
}
};
activatePackage(testp);
« Last Edit: August 26, 2013, 10:22:25 AM by hammereditor² »

I now figured out the problem.
It was a buggy client-sided add-on that I had. I removed all my Client_* add-ons, and it worked.
« Last Edit: August 26, 2013, 10:26:36 AM by hammereditor² »

I now figured out the problem.

It would help other people who have this problem and are searching if you explained what you did.