Hello Avatar Companion: Difference between revisions
Jump to navigation
Jump to search
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...' |
(No difference)
|
Revision as of 19:32, 2 March 2010
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>