March 23rd, 2010
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);
}
}
Tags: communicate, link, linked, llMessageLinked(), message, object, prim
Posted in LSL Scripts