LSL 101/String Concatenation
< LSL 101
| ← 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>