Difference between revisions of "LSL 101/String Concatenation"

From Second Life Wiki
Jump to navigation Jump to search
(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...)
 
(No difference)

Revision as of 14:49, 20 May 2009

← 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>