Talk:Cleaner MLP Say

From Second Life Wiki
Revision as of 00:23, 3 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...')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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)