Control button.lsl

From Second Life Wiki
Revision as of 21:27, 10 April 2008 by Uzume Grigorovich (talk | contribs) (lsl code tagging)
Jump to navigation Jump to search

<lsl> integer toAllChannel = -255; // general channel - linked message

default {

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

}

</lsl>