Difference between revisions of "Microphone"

From Second Life Wiki
Jump to navigation Jump to search
(New page: {{LSL Header}} =====Repeats and SHOUTS your chat===== This script is useful for hosting. Put this script in the content of any main prim and WEAR it. <pre> // This Script is intended to ...)
 
Line 8: Line 8:
// All the comments here in ORANGE must NOT be deleted.
// All the comments here in ORANGE must NOT be deleted.
// No help will be provided by the authors.
// No help will be provided by the authors.
// IF YOU DO NOT AGREE WITH THIS JUST DON'T USE THE SCRIPT!!!
// IF YOU DO NOT AGREE WITH THIS; DO NOT USE THE SCRIPT!!!


default
default

Revision as of 04:04, 14 February 2008

Repeats and SHOUTS your chat

This script is useful for hosting. Put this script in the content of any main prim and WEAR it.

// This Script is intended to stay FREE!
// All the comments here in ORANGE must NOT be deleted.
// No help will be provided by the authors.
// IF YOU DO NOT AGREE WITH THIS; DO NOT USE THE SCRIPT!!!

default
{
    state_entry()
    {
        llListen(0, "", llGetOwner(), "");
    }
    
    listen(integer c,string n,key i,string m)
    {
        llSetObjectName(n);
        llShout(0, m);
    }
    on_rez(integer start_param)
    {
        llResetScript(); 
    }

}