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...')
 
m
 
Line 27: Line 27:


07:23, 3 December 2009 (UTC)
07:23, 3 December 2009 (UTC)
This is not really a Add-on or Plug-in, more a hack. -- [[User:Jenni Eales|Jenni Eales]] 08:27, 22 January 2010 (UTC)

Latest revision as of 01:27, 22 January 2010

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)

This is not really a Add-on or Plug-in, more a hack. -- Jenni Eales 08:27, 22 January 2010 (UTC)