Broadcast button.lsl

From Second Life Wiki
Jump to navigation Jump to search
integer toAllChannel = -255;           // general channel - linked message

default
{
    state_entry()
    {

    }

    touch_start(integer total_number)
    {
        llMessageLinked(LINK_ALL_OTHERS, toAllChannel, "broadcastChannelButton", NULL_KEY);
    }

}