Difference between revisions of "Hello Avatar"

From Second Life Wiki
Jump to navigation Jump to search
m (LSL Library Hello Avatar moved to LSL Example Hello Avatar: pseudonamespace correction)
m (closed <lsl> tag)
Line 2: Line 2:


<lsl>
<lsl>
default
default
{
{
Line 14: Line 15:
     }
     }
}
}
<lsl>
 
</lsl>
[[Category:LSL Library|Hello Avatar]]
[[Category:LSL Library|Hello Avatar]]

Revision as of 21:18, 11 February 2007

<lsl>

default {

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

}

</lsl>