Copy and paste the script:
// Title: Music Streams
//
//
integer dialogChannel = 19242; // dialog channel
list stationMenu;
list streams;
string stationURL;
streams = ["http://stream.radionigel.com:8020/"]; // Radio Nigel
streams+= ["http://scfire-chi0l-2.stream.aol.com:80/stream/1065"]; // Club
streams+= ["http://64.202.98.102:8000"]; // Demented radio
streams+= ["http://scfire-dll-aa01.stream.aol.com:80/stream/1040"]; // 80s
streams+= ["http://scfire-dll-aa01.stream.aol.com:80/stream/1074"]; // Top 500
}
default
{
state_entry()
{
init();
}
on_rez(integer start_param)
{
init();
}
touch(integer touchCounter)
{
llDialog(llDetectedKey(0), “Click a button to choose a different internet radio station”, stationMenu, dialogChannel); // present dialog on click
}
Copy and paste the script:-
// Title: British Birdsongs
// Written: 11/04/2007
// Comments:
//
//
//
string version = "version: 1.00"; // change for each version
list listSongs;
integer counter;
integer songCount;
integer song;
//
// GMT time display in HH:MM format
//
float seconds;
float hours;
float minutes;
integer hh;
integer mm;
integer ss;
string HH;
string MM;