LSL 101/String Concatenation

From Second Life Wiki
< LSL 101
Revision as of 14:48, 20 May 2009 by Omei Turnbull (talk | contribs) (New page: Category:LSL 101 {{NavNextPrev|prev=Compile Time Errors|next=}} <lsl> default { state_entry() { // Let the object's owner know the script is working llO...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
← Compile Time Errors ↑̲  LSL 101  ̲↑


<lsl> default {

    state_entry()
    {
         // Let the object's owner know the script is working
         llOwnerSay( "Congratulations! Your script has started to execute." );
    }

    touch_start( integer num_detected )
    {
         // Let the object's owner know the script is working
         llOwnerSay( "Welcome to " + llGetRegionsName() );
    }

} </lsl>