diff --git a/All In One NPC Recorder and Player/All In One NPC Recorder and Player/All In One NPC Recorder and Player.prj b/All In One NPC Recorder and Player/All In One NPC Recorder and Player/All In One NPC Recorder and Player.prj
index faeb35ae..a1cc8cc2 100644
--- a/All In One NPC Recorder and Player/All In One NPC Recorder and Player/All In One NPC Recorder and Player.prj
+++ b/All In One NPC Recorder and Player/All In One NPC Recorder and Player/All In One NPC Recorder and Player.prj
@@ -26,6 +26,8 @@
+
-
-
diff --git a/Give all inventory items in a folder when close by/Give all inventory items in a folder when close by/Object/Script for Board.lsl b/Give all inventory items in a folder when close by/Give all inventory items in a folder when close by/Object/Script for Board.lsl
deleted file mode 100644
index be368183..00000000
--- a/Give all inventory items in a folder when close by/Give all inventory items in a folder when close by/Object/Script for Board.lsl
+++ /dev/null
@@ -1,171 +0,0 @@
-// :SHOW:
-// :CATEGORY:Presentation
-// :NAME:Give all inventory items in a folder when close by
-// :AUTHOR:Lum Pfohl
-// :KEYWORDS:
-// :CREATED:2015-11-24 20:25:32
-// :EDITED:2015-11-24 19:25:32
-// :ID:1086
-// :NUM:1833
-// :REV:1
-// :WORLD:Second Life
-// :DESCRIPTION:
-// LumVision-Presentation Script v 0.2
-// :CODE:
-// Mods by Ferd Frederix to support GIFS
-//
-// LumVision-Presentation Script v 0.2
-//
-// Written by Lum Pfohl December 11, 2007
-//
-// January 02, 2008 - Added code to precache the next texture after a short time delay
-
-
-// set to TRUE if you want debug messages written to chat screen
-integer __debug = FALSE;
-string __version_id = "Presentation Script v 0.3";
-
-// global variables
-integer interval;
-integer currentTexture = 0;
-
-integer totalTextures = 0;
-list textureList =[];
-integer messageChannel = 999888;
-list dynMenu =["Back", "Version", "Forward", "Reset"];
-
-
-gif()
-{
- string t = llList2String(textureList, currentTexture);
- list gif = llParseString2List(t,[";"],[]);
- string aname = llList2String(gif,0);
- integer X = (integer) llList2String(gif,1);
- integer Y = (integer) llList2String(gif,2);
- float FPS = (float) llList2String(gif,3);
- float product = X * Y;
-
-
-
- // Set the new prim texture
-
- llSetTexture(llList2String(textureList, currentTexture), 0);
-
- if (X) {
- llSetTextureAnim( ANIM_ON | LOOP, ALL_SIDES, X, Y, 0.0, product, FPS);
- } else {
- llSetTextureAnim( LOOP, ALL_SIDES, 1,1, 0.0, 1 , FPS);
- }
-
-}
-default {
-state_entry() {
-
-
-// read in the textures in the prim and store it
- integer typeCount = llGetInventoryNumber(INVENTORY_TEXTURE);
-
- integer j;
-
- for (j = 0; j < typeCount; ++j) {
- string invName = llGetInventoryName(INVENTORY_TEXTURE, j);
- if (__debug) {
- llWhisper(0, "Inventory " + invName);
- }
- textureList += invName;
- ++totalTextures;
- }
-
- if (__debug) {
- llWhisper(0, "Found " + (string) totalTextures + " textures");
- }
-
- llSetTexture(llList2String(textureList, 0), 0);
- gif();
-
- // initialize the channel on which the vendor will talk to the owner via dialog
- messageChannel = (integer) llFrand(2000000000.0);
- llListen(messageChannel, "", NULL_KEY, "");
-
- currentTexture = 0;
- }
-
-on_rez(integer start_param) {
- llResetScript();
-}
-
-
-touch_start(integer total_number) {
-
- if (llDetectedKey(0) == llGetOwner()) {
- llDialog(llDetectedKey(0), "What do you want to do?", dynMenu, messageChannel);
- }
-
-}
-
-// listen for for dialog box messages and respond to them as appropriate
-
-listen(integer channel, string name, key id, string message) {
-
- if (id != llGetOwner()) {
- return;
- }
-
- if (message == "Version") {
- llWhisper(0, __version_id);
- return;
- }
-
- if (message == "Reset") {
- llResetScript();
- }
-
- if (message == "Back" && currentTexture > 0) {
- --currentTexture;
- } else if (message == "Forward") {
- ++currentTexture;
- } else {
- llDialog(llGetOwner(), "What do you want to do?", dynMenu, messageChannel);
- return;
- }
-
- // If there are textures to apply, do so now. Otherwise - quietly
- // do nothing.
- if (totalTextures > 0) {
-
- // Ensure that we do not go out of bounds with the index
- if (currentTexture >= totalTextures) {
- currentTexture = 0;
- }
- if (currentTexture < 0 ) {
- currentTexture = 0;
- }
-
- gif();
-
- // set up so that in 3 seconds, we display the next image on a different face (hidden)
- llSetTimerEvent(3.00);
-
- llDialog(llGetOwner(), "What do you want to do?", dynMenu, messageChannel);
- }
-}
-
- timer() {
- // Cancel any further timer events
- llSetTimerEvent(0.00);
-
- // set the next texture (as a pre-cache) on the reverse face
- integer nextTexture = currentTexture + 1;
- if (nextTexture >= totalTextures) {
- nextTexture = 0;
- }
- llSetTexture(llList2String(textureList, nextTexture), 1);
- }
-
- changed(integer what)
- {
- if (what & CHANGED_INVENTORY)
- llResetScript();
- }
-
-}
diff --git a/Give all inventory items in a folder when close by/Give all inventory items in a folder when close by/Object/Script.lsl b/Give all inventory items in a folder when close by/Give all inventory items in a folder when close by/Object/Script.lsl
deleted file mode 100644
index df37f0a1..00000000
--- a/Give all inventory items in a folder when close by/Give all inventory items in a folder when close by/Object/Script.lsl
+++ /dev/null
@@ -1,12 +0,0 @@
-
-default
-{
- state_entry()
- {
- llSay(0, "Hello, Avatar!");
- }
- touch_start(integer total_number)
- {
- llSay(0, "Touched: "+(string)total_number);
- }
-}
\ No newline at end of file
diff --git a/Give all inventory items in a folder when close by/Give all inventory items in a folder when close by/Object/dragon lady5;2;5.jpg b/Give all inventory items in a folder when close by/Give all inventory items in a folder when close by/Object/dragon lady5;2;5.jpg
deleted file mode 100644
index bf6bfb24..00000000
Binary files a/Give all inventory items in a folder when close by/Give all inventory items in a folder when close by/Object/dragon lady5;2;5.jpg and /dev/null differ
diff --git a/Give all inventory items in a folder when close by/Give all inventory items in a folder when close by/Object/dragon;4;4;5.jpg b/Give all inventory items in a folder when close by/Give all inventory items in a folder when close by/Object/dragon;4;4;5.jpg
deleted file mode 100644
index fe5f9be0..00000000
Binary files a/Give all inventory items in a folder when close by/Give all inventory items in a folder when close by/Object/dragon;4;4;5.jpg and /dev/null differ
diff --git a/MOAP Top 2000 Radio Stations Player/Top_Radio_Stations_Player/Object/Top_Radio_Stations_Player_1.lsl b/MOAP Top 2000 Radio Stations Player/Top_Radio_Stations_Player/Object/Top_Radio_Stations_Player_1.lsl
index 3806aa6e..578f23c7 100644
--- a/MOAP Top 2000 Radio Stations Player/Top_Radio_Stations_Player/Object/Top_Radio_Stations_Player_1.lsl
+++ b/MOAP Top 2000 Radio Stations Player/Top_Radio_Stations_Player/Object/Top_Radio_Stations_Player_1.lsl
@@ -4,7 +4,7 @@
// :AUTHOR:Ferd Frederix
// :KEYWORDS:
// :CREATED:2012-09-04 15:30:52.010
-// :EDITED:2016-07-09 14:33:55
+// :EDITED:2016-07-27 15:13:53
// :ID:902
// :NUM:1278
// :REV:1.1
diff --git a/Multi-pose script/Multi-pose script/Multi-pose script.prj b/Multi-pose script/Multi-pose script/Multi-pose script.prj
index 9ee89496..384de095 100644
--- a/Multi-pose script/Multi-pose script/Multi-pose script.prj
+++ b/Multi-pose script/Multi-pose script/Multi-pose script.prj
@@ -1,5 +1,9 @@
diff --git a/Top2000_Radio_Stations_Player/Top_Radio_Stations_Player/Object/Remote parcel script.lsl b/Top2000_Radio_Stations_Player/Top_Radio_Stations_Player/Object/Remote parcel script.lsl
index 590af860..110ab7ef 100644
--- a/Top2000_Radio_Stations_Player/Top_Radio_Stations_Player/Object/Remote parcel script.lsl
+++ b/Top2000_Radio_Stations_Player/Top_Radio_Stations_Player/Object/Remote parcel script.lsl
@@ -4,7 +4,7 @@
// :AUTHOR:Ferd Frederix
// :KEYWORDS:
// :CREATED:2013-12-14 13:33:32
-// :EDITED:2016-07-09 14:34:03
+// :EDITED:2016-07-27 15:14:06
// :ID:902
// :NUM:1558
// :REV:1.2
diff --git a/Top2000_Radio_Stations_Player/Top_Radio_Stations_Player/Object/Top_Radio_Stations_Player_1.lsl b/Top2000_Radio_Stations_Player/Top_Radio_Stations_Player/Object/Top_Radio_Stations_Player_1.lsl
index 378024c2..a16b43b3 100644
--- a/Top2000_Radio_Stations_Player/Top_Radio_Stations_Player/Object/Top_Radio_Stations_Player_1.lsl
+++ b/Top2000_Radio_Stations_Player/Top_Radio_Stations_Player/Object/Top_Radio_Stations_Player_1.lsl
@@ -178,7 +178,7 @@ getCategories()
{
type = 1;
busy = TRUE;
- string url = "http://www.free-lsl-scripts.com/cgi/shoutcast.plx?search=1";
+ string url = "http://www.outworldz.com/cgi/shoutcast.plx?search=1";
http_request_id = llHTTPRequest(url, [], "");
}
@@ -186,7 +186,7 @@ getCategory()
{
type = 2;
busy = TRUE;
- string url = "http://www.free-lsl-scripts.com/cgi/shoutcast.plx?genre=" + llEscapeURL(genre);
+ string url = "http://www.outworldz.com/cgi/shoutcast.plx?genre=" + llEscapeURL(genre);
// llOwnerSay(url);
@@ -197,7 +197,7 @@ getURL()
{
type = 3;
busy = TRUE;
- string url = "http://www.free-lsl-scripts.com/cgi/shoutcast.plx?genre=" + llEscapeURL(genre) + "&station=" + llEscapeURL(station);
+ string url = "http://www.outworldz.com/cgi/shoutcast.plx?genre=" + llEscapeURL(genre) + "&station=" + llEscapeURL(station);
http_request_id = llHTTPRequest(url, [], "");
}
@@ -328,10 +328,11 @@ listen(integer channel, string name, key id, string message)
}
http_response(key request_id, integer status, list metadata, string body)
- {
+ {
if (request_id == http_request_id)
{
busy = FALSE;
+
if (type == 1)
{
lCategories = llParseString2List(body,["|"],[]);