Difference between revisions of "Hello Avatar"
Jump to navigation
Jump to search
Kent Faulds (talk | contribs) m (→Create A Chair) |
(reverting this back to the March 7th, 2007 revision. It was only intended to be the example of the default LSL script. All other edits should have had a new page.created) |
||
Line 1: | Line 1: | ||
{{LSL Header}} | {{LSL Header}} | ||
<lsl> | <lsl> | ||
Line 25: | Line 15: | ||
} | } | ||
</lsl> | </lsl> | ||
{{#vardefine:sort|Hello Avatar}}{{LSLC|Library}}{{LSLC|Examples}} | {{#vardefine:sort|Hello Avatar}}{{LSLC|Library}}{{LSLC|Examples}} | ||
{{LSLC|Tutorials}} | {{LSLC|Tutorials}} |
Revision as of 22:18, 6 February 2008
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
<lsl> default {
state_entry() { llSay(0, "Hello, Avatar!"); }
touch_start(integer total_number) { llSay(0, "Touched."); }
} </lsl>