Difference between revisions of "Talk:Cleaner MLP Say"

From Second Life Wiki
Jump to navigation Jump to search
(Created page with 'You should add : 5/ then locate: <lsl> Chat(string str) { if (! chat) return; string name = llGetObjectName(); llSetObjectName(":"); say("/me " + str); llSe...')
(No difference)

Revision as of 00:23, 3 December 2009

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)