removed useless _ folders

This commit is contained in:
Fred Beckhusen
2015-08-09 16:54:31 -05:00
parent fde850293c
commit 948a44dfba
5204 changed files with 2425579 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
<Solution name="Remote_Texture_Loader">
<Project name="Remote_Texture_Loader" path="Remote_Texture_Loader\Remote_Texture_Loader.prj" active="true"/>
</Solution>

View File

@@ -0,0 +1,98 @@
// :CATEGORY:Texture
// :NAME:Remote_Texture_Loader
// :AUTHOR:Bobbyb30 Swashbuckler
// :CREATED:2010-12-27 12:20:34.060
// :EDITED:2013-09-18 15:39:01
// :ID:691
// :NUM:941
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// Remote Texture Loader Description
//
// These set of scripts allow for a prim to act as a server and load textures onto unlinked prims. The main benefit is that the recieving prims have *no* scripts. This means that the server, which consists of three scripts can load onto 30 prims without needing 20 scripts. Please note there is a 3 second delay for each remote load.
//
// It's main use would be for billboards, although it could substitute some texture changers.
//
//
// They are hereby released into public domain.
// Disclaimer
//
// These programs are distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// Directions
//
// Get the keys of the textures you want to use. Put them into both Remote Load Texture Display(input list).lsl and Main Display.lsl. Now decide on what number you want to use as your pin(you can leave the default of 606 if you choose). Set up the prims you want to use as billboards. Select which billboard you want to use as a server. Get the keys and set the pins for all the billboards except the server using Get key & set pin.lsl. Copy these keys into Remote Loader.lsl. Add Remote Loader.lsl to the server. Add Load Texture Display(input list).lsl to the server. Check Main Display.lsl parameters to make sure they are what you want and add that to the server. Enjoy=D.
//
// Scripts
//
// There are 3 scripts that go in the server:
//
// * Remote Loader.lsl which remotely loads the 'Remote Load Texture Display(input list).lsl' script.
// * Remote Load Texture Display(input list).lsl which is remotely loaded and display the texture before deleting itself.
// * Main Display.lsl which tells the remote loader when to load, and is the only active script most of the time.
//
// Two other scripts are:
//
// * Print inventory texture keys.lsl which prints the keys of inventory textures
// * Get key & set pin.lsl which sets the remote load pin on prims and tells the owner the prim key.
// :CODE:
//***********************************************************************************************************
// *
// --Remote Loader-- *
// *
//***********************************************************************************************************
// www.lsleditor.org by Alphons van der Heijden (SL: Alphons Jano)
//Creator: Bobbyb30 Swashbuckler
//Attribution: None required, but it is appreciated.
//Created: November 28, 2009
//Last Modified: November 28, 2009
//Released: Saturday, November 28, 2009
//License: Public Domain
//Status: Fully Working/Production Ready
//Version: 1.0.1
//Name: Remote Loader.lsl
//Purpose: To remotely load the 'Remote Load Texture Display(input list).lsl' script.
//Technical Overview: This script remotely loads Remote Load Texture Display(input list).lsl into the proper objects.
//Directions: Add object UUID's to targets list. Correct the pin to the one you set.
//Compatible: Mono & LSL compatible
//Other items required: Requires the 'Remote Load Texture Display(input list).lsl' & 'Main Display.lsl' scripts.
//Notes: Commented for easier following. This script will shut off after use. Do not rename script. There is a
// 3 second delay between remote loads.
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////
//user variables...you may change these...

View File

@@ -0,0 +1,76 @@
// :CATEGORY:Texture
// :NAME:Remote_Texture_Loader
// :AUTHOR:Bobbyb30 Swashbuckler
// :CREATED:2010-12-27 12:20:34.060
// :EDITED:2013-09-18 15:39:01
// :ID:691
// :NUM:942
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// Remote Load Texture Display(input list).lsl
// :CODE:
//***********************************************************************************************************
// *
// --Remote Load Texture Display(input list)-- *
// *
//***********************************************************************************************************
// www.lsleditor.org by Alphons van der Heijden (SL: Alphons Jano)
//Creator: Bobbyb30 Swashbuckler
//Attribution: None required, but it is appreciated.
//Created: November 28, 2009
//Last Modified: November 28, 2009
//Released: Saturday, November 28, 2009
//License: Public Domain
//Status: Fully Working/Production Ready
//Version: 1.0.1
//Name: Remote Load Texture Display(input list).lsl
//Purpose: To be remotely loaded onto a prim and then display the appropriate texture.
//Technical Overview: When this script is remotely loaded to an object, it changes that objects texture and then
// deletes itself.
//Directions: Add the appropriate textures to the list. Place the script in the server.
//Compatible: Mono & LSL compatible
//Other items required: Requires the 'Remote Loader.lsl' & 'Main Display.lsl' scripts.
//Notes: Commented for easier following. This script will delete itself after use. Do not rename script.
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//Adjustable global variables...you may change these
//texture list...this list should have 2 or more textures
list textures = [//put your texture UUIDs/keys in here
"f150313b-1f38-8978-b2ed-e0b2ffb62d5c",// black

View File

@@ -0,0 +1,119 @@
// :CATEGORY:Texture
// :NAME:Remote_Texture_Loader
// :AUTHOR:Bobbyb30 Swashbuckler
// :CREATED:2010-12-27 12:20:34.060
// :EDITED:2013-09-18 15:39:01
// :ID:691
// :NUM:943
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// Main Display.lsl
// :CODE:
//***********************************************************************************************************
// *
// --Main Display -- *
// *
//***********************************************************************************************************
// www.lsleditor.org by Alphons van der Heijden (SL: Alphons Jano)
//Creator: Bobbyb30 Swashbuckler
//Attribution: None required, but it is appreciated.
//Created: November 28, 2009
//Last Modified: November 28, 2009
//Released: Saturday, November 28, 2009
//License: Public Domain
//Status: Fully Working/Production Ready
//Version: 1.0.1
//Name: Main Display.lsl
//Purpose: This is the heart of the server. It tells remote loader when to load and changes the pictures on the server.
//Technical Overview: Tell remote loader when to load using a timer. Also displays texture on server.
//Description: The main display serves as the core of the server telling remote loader when to load and changin the
// texture on the server.
//Directions: Create a prim. Place the script in prim inventory. Modify the script parameters to suit your needs and
// save. Copy the textures from here to the 'Remote Load Texture Display(input list).lsl' script.
//Compatible: Mono & LSL compatible
//Other items required: Requires the 'Remote Loader.lsl' & 'Remote Load Texture Display(input list).lsl' scripts.
//Notes: Uses a timer event. Should be low lag. Commented for easier following.
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//Adjustable global variables...you may change these
//texture list...this list should have 2 or more textures
list textures = [//put your texture UUIDs/keys in here
"f150313b-1f38-8978-b2ed-e0b2ffb62d5c",// black
"16e92b19-7407-44c6-1f7a-03d75ef3e4a6",// unabletoconnect
"1c482bda-802d-2991-5a03-4bb128792326"// white
];//end of list
//Please note there is a .2 second delay between prims.
integer side = ALL_SIDES;//which side to change , put #, or put ALL_SIDES for all sides,-1 equals all sides
float frequency = 100.0;//how often to change the texture in seconds. Shouldn't be below 20.0
//This script is meant for longer periods of time such as 1 or 2 minutes for savings to be viable
//please note that the last and first texture will be shown less frequently than those in between
integer random = TRUE;//whether to show the textures randomly, or in order
integer duplicatecheck = TRUE;//if random is true, this will check to make sure the random selection is a new texture
/////////////////////////////////////////////////////////////
//global variables...do not change
integer numberoftextures;//number of textures in inventory
integer currenttexture;//inventory number of current texture
changetexture()//user fucntion to change texture

View File

@@ -0,0 +1,55 @@
// :CATEGORY:Texture
// :NAME:Remote_Texture_Loader
// :AUTHOR:Bobbyb30 Swashbuckler
// :CREATED:2010-12-27 12:20:34.060
// :EDITED:2013-09-18 15:39:01
// :ID:691
// :NUM:944
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// Get key & set pin.lsl
// :CODE:
//***********************************************************************************************************
// *
// -- Get key & set pin -- *
// *
//***********************************************************************************************************
// www.lsleditor.org by Alphons van der Heijden (SL: Alphons Jano)
//Creator: Bobbyb30 Swashbuckler
//Attribution: None required, but it is appreciated.
//Created: November 28, 2009
//Last Modified: November 28, 2009
//Released: Saturday, November 28, 2009
//License: Public Domain
//Status: Fully Working/Production Ready
//Version: 1.0.1
//Name: Get key & set pin.lsl
//Purpose: To set the pin and print out the UUID of the object.
//Description: Gets the key of the object and sets the object remote load pin.
//Directions: Modify pin to match the one used in remote loader and then drop into prim.
//Compatible: Mono & LSL compatible

View File

@@ -0,0 +1,66 @@
// :CATEGORY:Texture
// :NAME:Remote_Texture_Loader
// :AUTHOR:Bobbyb30 Swashbuckler
// :CREATED:2010-12-27 12:20:34.060
// :EDITED:2013-09-18 15:39:01
// :ID:691
// :NUM:945
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// Print inventory texture keys.lsl
// :CODE:
//***********************************************************************************************************
// *
// -- Print inventory texture keys-- *
// *
//***********************************************************************************************************
// www.lsleditor.org by Alphons van der Heijden (SL: Alphons Jano)
//Creator: Bobbyb30 Swashbuckler
//Attribution: None required, but it is appreciated.
//Created: November 28, 2009
//Last Modified: November 28, 2009
//Released: Saturday, November 28, 2009
//License: Public Domain
//Status: Fully Working/Production Ready
//Version: 1.0.1
//Name: Print inventory texture keys.lsl
//Purpose: Prints out the UUID of inventory textures on chat for use in Main Display and Remote
// Load texture display.
//Description: Prints out the keys of inventory textures on touch.
//Directions: Create a prim. Add desired texture. Add this script. Touch.
//Compatible: Mono & LSL compatible
//Other items required: None
//Notes: Commented for easier following.
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

View File

@@ -0,0 +1,14 @@
<Project name="Remote_Texture_Loader" guid="D880AB38-6C00-1014-B904-200204C60A89">
<Object name="Object" guid="D880AC35-6C00-1014-B904-200204C60A89">
<Script name="Remote_Texture_Loader_1.lsl" guid="D88AD2C1-6C00-1014-B904-200204C60A89">
</Script>
<Script name="Remote_Texture_Loader_2.lsl" guid="D88BF594-6C00-1014-B904-200204C60A89">
</Script>
<Script name="Remote_Texture_Loader_3.lsl" guid="D88C1321-6C00-1014-B904-200204C60A89">
</Script>
<Script name="Remote_Texture_Loader_4.lsl" guid="D88C4917-6C00-1014-B904-200204C60A89">
</Script>
<Script name="Remote_Texture_Loader_5.lsl" guid="D88C5E74-6C00-1014-B904-200204C60A89">
</Script>
</Object>
</Project>