Difference between revisions of "LlSetParcelMusicURL"

From Second Life Wiki
Jump to navigation Jump to search
(Added example.)
m (Replaced old <LSL> block with <source lang="lsl2">)
 
(One intermediate revision by one other user not shown)
Line 10: Line 10:
|constants
|constants
|examples=
|examples=
<lsl>// This script changes the music URL based on time of day.
<source lang="lsl2">// This script changes the music URL based on time of day.


integer night = FALSE;
integer night = FALSE;
Line 40: Line 40:
         }  
         }  
     }
     }
}</lsl>
}</source>
|helpers
|helpers
|also_functions
|also_functions=
{{LSL DefineRow||[[llGetParcelMusicURL]]|Gets the music stream URL for the parcel object is on}}
|also_tests
|also_tests
|also_events
|also_events

Latest revision as of 14:21, 22 January 2015

Summary

Function: llSetParcelMusicURL( string url );

Sets the streaming audio URL for the parcel object is on

• string url

The object owner must also be the land owner. If the land is deeded to a group the object will need to be deeded to the same group for this function to work.

Caveats

  • This function causes the script to sleep for 2.0 seconds.
All Issues ~ Search JIRA for related Bugs

Examples

// This script changes the music URL based on time of day.

integer night = FALSE;
string nighturl = "http://205.188.215.228:8006";
string dayurl = "http://208.122.59.30:7156";

default
{
    state_entry()
    {
        llSetTimerEvent(10);
    }
    
    timer()
    {
        vector pos = llGetSunDirection();
        
        if ((pos.z < -.75) != night)
        {
            night = !night;
            if (night)
            {
                llSetParcelMusicURL(nighturl);
            }
            else
            {
                llSetParcelMusicURL(dayurl);   
            }
        } 
    }
}

See Also

Functions

•  llGetParcelMusicURL Gets the music stream URL for the parcel object is on

Deep Notes

Search JIRA for related Issues

Signature

function void llSetParcelMusicURL( string url );