Talk:Cleaner MLP Say
You should add :
5/ then locate:
<lsl> Chat(string str) {
if (! chat) return;
string name = llGetObjectName();
llSetObjectName(":");
say("/me " + str);
llSetObjectName(name);
} </lsl>
and replace it by:
<lsl>
Chat(string str) {
if (! chat) return;
string name = llGetObjectName();
llSetObjectName(":");
say("" + str);
llSetObjectName(name);
} </lsl>
07:23, 3 December 2009 (UTC)