-->

FoxSan's 3D Tools and LSL Script Repository

Tons of LSL scripts, examples and 3D tools, free for all. There are currently 207 scripts and articles in this database.

llMessageLinked

default
{
    state_entry()
    {
        llSetText("llMessageLinked()\nTouch to send myself a link message",<1,1,1>,1);
    }
 
    touch_start(integer total_number)
    {
        llMessageLinked(LINK_SET, 0, "The llama (Lama glama) is a South American camelid, widely used as a pack animal by the Incas and other natives of the Andes mountains.", NULL_KEY);
    }
 
    link_message(integer sender_num, integer num, string str, key id)
    {
        llSay(0, str);
    }
}

Comments are closed.