Talk:Cleaner MLP Say
Revision as of 23:23, 2 December 2009 by Teq Hutchinson (talk | contribs) (Created page with 'You should add : 5/ then locate: <lsl> Chat(string str) { if (! chat) return; string name = llGetObjectName(); llSetObjectName(":"); say("/me " + str); llSe...')
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)