Hello Avatar Companion
Revision as of 18:32, 2 March 2010 by Chase Quinnell (talk | contribs) (Created page with '{{LSL Header|ml=*}} This script is the unofficial companion to the famous Hello Avatar script from Linden Lab. <lsl> default { state_entry() { llList...')
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
This script is the unofficial companion to the famous Hello Avatar script from Linden Lab. <lsl>
default
{
state_entry() { llListen(0,"","",""); } listen(integer chan, string name, key id, string msg) { if (msg == "Hello, Avatar!") { llSay(0, "Hello, " + name + "!"); } }
}
</lsl>