Difference between revisions of "Hello Avatar"

From Second Life Wiki
Jump to navigation Jump to search
(new)
 
Line 1: Line 1:
<code>
<lsl>
default
default
{
{
Line 12: Line 12:
     }
     }
}
}
<code>
<lsl>
[[Category:LSL Library]]
[[Category:LSL Library|Hello Avatar]]

Revision as of 07:10, 28 January 2007

<lsl> default {

   state_entry()
   {
       llSay(0, "Hello, Avatar!");
   }
   touch_start(integer total_number)
   {
       llSay(0, "Touched.");
   }

} <lsl>