Hello Avatar Companion
Revision as of 12:27, 24 January 2015 by ObviousAltIsObvious Resident (talk | contribs)
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.
default
{
state_entry()
{
llListen(0,"","","");
}
listen(integer chan, string name, key id, string msg)
{
if (msg == "Hello, Avatar!")
{
llSay(0, "Hello, " + name + "!");
}
}
}