change patch
							parent
							
								
									23f6aa05c4
								
							
						
					
					
						commit
						e94b36059e
					
				|  | @ -1,17 +1,13 @@ | |||
| From 6ce364892b899469ecac48c76838747106a84c93 Mon Sep 17 00:00:00 2001 | ||||
| From: Christopher Latza <latzachristopher@live.de> | ||||
| Date: Wed, 10 Jun 2020 01:54:17 +0200 | ||||
| Subject: [PATCH] add os commands to patchfind | ||||
| From e502bb78dd38482366c3b4675226265bae668bdd Mon Sep 17 00:00:00 2001 | ||||
| From: Christopher <git@clatza.dev> | ||||
| Date: Wed, 10 Jun 2020 09:19:20 +0200 | ||||
| Subject: [PATCH] change pathfinding args | ||||
| 
 | ||||
| ---
 | ||||
|  .../Shared/Api/Implementation/OSSL_Api.cs     |  54 +++ | ||||
|  .../Shared/Api/Interface/IOSSL_Api.cs         |   4 + | ||||
|  .../Shared/Api/Runtime/OSSL_Stub.cs           |  10 + | ||||
|  bin/inventory/4Creative/4CreativeFolders.xml  |  50 ++ | ||||
|  bin/inventory/4Creative/4CreativeItems.xml    | 436 ++++++++++++++++++ | ||||
|  5 files changed, 554 insertions(+) | ||||
|  create mode 100644 bin/inventory/4Creative/4CreativeFolders.xml | ||||
|  create mode 100644 bin/inventory/4Creative/4CreativeItems.xml | ||||
|  .../Shared/Api/Implementation/OSSL_Api.cs     | 54 +++++++++++++++++++ | ||||
|  .../Shared/Api/Interface/IOSSL_Api.cs         |  6 ++- | ||||
|  .../Shared/Api/Runtime/OSSL_Stub.cs           | 11 ++++ | ||||
|  3 files changed, 70 insertions(+), 1 deletion(-) | ||||
| 
 | ||||
| diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs
 | ||||
| index 5e6271c8a7..008640fe31 100644
 | ||||
|  | @ -86,29 +82,46 @@ index 5e6271c8a7..008640fe31 100644 | |||
|          { | ||||
|              // if enabled It can be used to destroy | ||||
| diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
 | ||||
| index 9b4a9ca12d..a8d205fcfb 100644
 | ||||
| index 9b4a9ca12d..ac5f5bda1e 100644
 | ||||
| --- a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
 | ||||
| +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
 | ||||
| @@ -38,7 +38,7 @@ using LSL_Integer = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLInteger;
 | ||||
|  using LSL_Float = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLFloat; | ||||
|  using LSL_Rotation = OpenSim.Region.ScriptEngine.Shared.LSL_Types.Quaternion; | ||||
|  using LSL_Key = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLString; | ||||
| -
 | ||||
| +using LSL_Vector = OpenSim.Region.ScriptEngine.Shared.LSL_Types.Vector3;
 | ||||
|   | ||||
|  namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces | ||||
|  { | ||||
| @@ -134,6 +134,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
 | ||||
|          LSL_Float osTerrainGetHeight(int x, int y); // Deprecated | ||||
|          LSL_Integer osSetTerrainHeight(int x, int y, double val); | ||||
|          LSL_Integer osTerrainSetHeight(int x, int y, double val); //Deprecated | ||||
| +        
 | ||||
| +        LSL_List osGetPathfindingPath(vector _source, vector _target);
 | ||||
| +        LSL_List osGetPathfindingPath(LSL_Vector _source, LSL_Vector _target);
 | ||||
| +        LSL_List osGetObjectIDListByName(LSL_List _nameList);
 | ||||
| +
 | ||||
|          //ApiDesc Send terrain to all agents | ||||
|          void osTerrainFlush(); | ||||
|   | ||||
| diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
 | ||||
| index ba5158a2ff..61d80fe4d1 100644
 | ||||
| index ba5158a2ff..f79c90e2cb 100644
 | ||||
| --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
 | ||||
| +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
 | ||||
| @@ -205,6 +205,16 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
 | ||||
| @@ -44,6 +44,7 @@ using LSL_String = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLString;
 | ||||
|  using LSL_Key = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLString; | ||||
|  using LSL_Float = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLFloat; | ||||
|  using LSL_Integer = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLInteger; | ||||
| +using LSL_Vector = OpenSim.Region.ScriptEngine.Shared.LSL_Types.Vector3;
 | ||||
|   | ||||
|  namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | ||||
|  { | ||||
| @@ -205,6 +206,16 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
 | ||||
|              return m_OSSL_Functions.osTerrainSetHeight(x, y, val); | ||||
|          } | ||||
|   | ||||
| +        public LSL_List osGetPathfindingPath(vector _source, vector _target)
 | ||||
| +        public LSL_List osGetPathfindingPath(LSL_Vector _source, LSL_Vector _target)
 | ||||
| +        {
 | ||||
| +            return m_OSSL_Functions.osGetPathfindingPath(_source, _target);
 | ||||
| +        }
 | ||||
|  | @ -121,504 +134,6 @@ index ba5158a2ff..61d80fe4d1 100644 | |||
|          public void osTerrainFlush() | ||||
|          { | ||||
|              m_OSSL_Functions.osTerrainFlush(); | ||||
| diff --git a/bin/inventory/4Creative/4CreativeFolders.xml b/bin/inventory/4Creative/4CreativeFolders.xml
 | ||||
| new file mode 100644 | ||||
| index 0000000000..cc85b34e9c
 | ||||
| --- /dev/null
 | ||||
| +++ b/bin/inventory/4Creative/4CreativeFolders.xml
 | ||||
| @@ -0,0 +1,50 @@
 | ||||
| +<Nini> 
 | ||||
| +  <Section Name="4Creative">
 | ||||
| +    <Key Name="folderID" Value="e8bb4da2-f2a5-4e66-8c46-0ea0b7c410a4"/>
 | ||||
| +    <Key Name="parentFolderID" Value="00000112-000f-0000-0000-000100bba000"/>
 | ||||
| +    <Key Name="name" Value="Scripts Library"/>
 | ||||
| +    <Key Name="type" Value="10"/>
 | ||||
| +  </Section>
 | ||||
| +  <Section Name="Animationen">
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba003"/>
 | ||||
| +    <Key Name="parentFolderID" Value="e8bb4da2-f2a5-4e66-8c46-0ea0b7c410a4"/>
 | ||||
| +    <Key Name="name" Value="A"/>
 | ||||
| +    <Key Name="type" Value="-1"/>
 | ||||
| +  </Section>
 | ||||
| +  <Section Name="Scripte">
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba004"/>
 | ||||
| +    <Key Name="parentFolderID" Value="30000112-000f-0000-0000-000100bba002"/>
 | ||||
| +    <Key Name="name" Value="B"/>
 | ||||
| +    <Key Name="type" Value="10"/>
 | ||||
| +  </Section>
 | ||||
| +  <Section Name="Landmarken">
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba017"/>
 | ||||
| +    <Key Name="parentFolderID" Value="30000112-000f-0000-0000-000100bba002"/>
 | ||||
| +    <Key Name="name" Value="R"/>
 | ||||
| +    <Key Name="type" Value="10"/>
 | ||||
| +  </Section>
 | ||||
| +  <Section Name="Sounds">
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba018"/>
 | ||||
| +    <Key Name="parentFolderID" Value="30000112-000f-0000-0000-000100bba002"/>
 | ||||
| +    <Key Name="name" Value="S"/>
 | ||||
| +    <Key Name="type" Value="10"/>
 | ||||
| +  </Section>
 | ||||
| +  <Section Name="Objekte">
 | ||||
| +    <Key Name="folderID" Value="284858c8-9391-6bf1-ddf5-b936f73de853"/>
 | ||||
| +    <Key Name="parentFolderID" Value="30000112-000f-0000-0000-000100bba002"/>
 | ||||
| +    <Key Name="name" Value="OpenSim Specific Scripts"/>
 | ||||
| +    <Key Name="type" Value="10"/>
 | ||||
| +  </Section>
 | ||||
| +  <Section Name=".Kan-ED Scripts">
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
 | ||||
| +    <Key Name="parentFolderID" Value="30000112-000f-0000-0000-000100bba002"/>
 | ||||
| +    <Key Name="name" Value=".Kan-ED Scripts"/>
 | ||||
| +    <Key Name="type" Value="10"/>
 | ||||
| +  </Section>
 | ||||
| +  <Section Name=".Other testing scripts">
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba025"/>
 | ||||
| +    <Key Name="parentFolderID" Value="30000112-000f-0000-0000-000100bba002"/>
 | ||||
| +    <Key Name="name" Value=".Other testing scripts"/>
 | ||||
| +    <Key Name="type" Value="10"/>
 | ||||
| +  </Section>
 | ||||
| +</Nini>
 | ||||
| diff --git a/bin/inventory/4Creative/4CreativeItems.xml b/bin/inventory/4Creative/4CreativeItems.xml
 | ||||
| new file mode 100644 | ||||
| index 0000000000..42ad006219
 | ||||
| --- /dev/null
 | ||||
| +++ b/bin/inventory/4Creative/4CreativeItems.xml
 | ||||
| @@ -0,0 +1,436 @@
 | ||||
| +<!--
 | ||||
| +  In Keys,
 | ||||
| +    name is the name of the item.
 | ||||
| +    description is the description of the item.
 | ||||
| +    assetID is the ID of the asset data that is referenced by the item.
 | ||||
| +    folderID is the ID of the folder containing this item.
 | ||||
| +    inventoryID is the ID for the item.  It must be unique.
 | ||||
| +    assetType is the asset type of the item.  See the OpenMetaverse.AssetType enum in libopenmetaverse
 | ||||
| +    inventoryType is the inventory type of the item.  See the OpenMetaverse.InventoryType enum in libopenmetaverse
 | ||||
| +    flags are only required for wearables.  See OpenMetaverse.WearableType enum in libopenmetaverse.
 | ||||
| +-->
 | ||||
| +
 | ||||
| +<Nini>
 | ||||
| +
 | ||||
| +<!--
 | ||||
| +  <Section Name="Example Library Item">
 | ||||
| +    <Key Name="inventoryID" Value="30000000-0000-2222-4444-000000000001" />
 | ||||
| +    <Key Name="assetID" Value="30000000-0000-2222-3333-000000000001" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba003"/>
 | ||||
| +    <Key Name="description" Value="Example Library Item" />
 | ||||
| +    <Key Name="name" Value="Example Library Item" />
 | ||||
| +    <Key Name="assetType" Value="7" />
 | ||||
| +    <Key Name="inventoryType" Value="7" />
 | ||||
| +    <Key Name="currentPermissions" Value="2147483647" />
 | ||||
| +    <Key Name="nextPermissions" Value="2147483647" />
 | ||||
| +    <Key Name="everyonePermissions" Value="2147483647" />
 | ||||
| +    <Key Name="basePermissions" Value="2147483647" />
 | ||||
| +  </Section>
 | ||||
| +--> 
 | ||||
| +
 | ||||
| +<!-- A == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba003"/> -->
 | ||||
| +  <Section Name="llAbs">
 | ||||
| +    <Key Name="inventoryID" Value="3b055e3e-b19d-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="3b055e3f-b19d-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba003"/>
 | ||||
| +    <Key Name="description" Value="llA" />
 | ||||
| +    <Key Name="name" Value="llAbs" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="llAcos">
 | ||||
| +    <Key Name="inventoryID" Value="6519bf38-b19f-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="6519bf39-b19f-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba003"/>
 | ||||
| +    <Key Name="description" Value="llA" />
 | ||||
| +    <Key Name="name" Value="llAcos" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="llAddToLandBanList">
 | ||||
| +    <Key Name="inventoryID" Value="7ceba3f0-b1a0-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="7ceba3f1-b1a0-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba003"/>
 | ||||
| +    <Key Name="description" Value="llA" />
 | ||||
| +    <Key Name="name" Value="llAddToLandBanList" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="llAddToLandPassList">
 | ||||
| +    <Key Name="inventoryID" Value="609047e6-b390-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="609047e7-b390-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba003"/>
 | ||||
| +    <Key Name="description" Value="llA" />
 | ||||
| +    <Key Name="name" Value="llAddToLandPassList" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="llAdjustSoundVolume">
 | ||||
| +    <Key Name="inventoryID" Value="56df4bcc-b393-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="56df4bcd-b393-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba003"/>
 | ||||
| +    <Key Name="description" Value="llA" />
 | ||||
| +    <Key Name="name" Value="llAdjustSoundVolume" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="llAllowInventoryDrop">
 | ||||
| +    <Key Name="inventoryID" Value="54d6962c-b394-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="54d6962d-b394-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba003"/>
 | ||||
| +    <Key Name="description" Value="llA" />
 | ||||
| +    <Key Name="name" Value="llAllowInventoryDrop" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="llAngleBetween">
 | ||||
| +    <Key Name="inventoryID" Value="6b341608-b34e-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="6b341609-b34e-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba003"/>
 | ||||
| +    <Key Name="description" Value="llA" />
 | ||||
| +    <Key Name="name" Value="llAngleBetween" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="llAsin">
 | ||||
| +    <Key Name="inventoryID" Value="7e7422ec-b425-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="7e7422ed-b425-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba003"/>
 | ||||
| +    <Key Name="description" Value="llA" />
 | ||||
| +    <Key Name="name" Value="llAsin" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="llAtan2">
 | ||||
| +    <Key Name="inventoryID" Value="7e7422ee-b425-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="7e7422ef-b425-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba003"/>
 | ||||
| +    <Key Name="description" Value="llA" />
 | ||||
| +    <Key Name="name" Value="llAtan2" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="llApplyImpulse">
 | ||||
| +    <Key Name="inventoryID" Value="714ec678-b419-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="714ec679-b419-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba003"/>
 | ||||
| +    <Key Name="description" Value="llA" />
 | ||||
| +    <Key Name="name" Value="llApplyImpulse" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="llAvatarOnSitTarget">
 | ||||
| +    <Key Name="inventoryID" Value="579fc820-b426-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="579fc821-b426-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba003"/>
 | ||||
| +    <Key Name="description" Value="llA" />
 | ||||
| +    <Key Name="name" Value="llAvatarOnSitTarget" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +<!-- B == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba004"/> -->
 | ||||
| +  <Section Name="llBase64ToString">
 | ||||
| +    <Key Name="inventoryID" Value="1d4c71d8-b428-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="1d4c71d9-b428-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba004"/>
 | ||||
| +    <Key Name="description" Value="llB" />
 | ||||
| +    <Key Name="name" Value="llBase64ToString" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +<!-- C == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba005"/> -->
 | ||||
| +<!-- D == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba006"/> -->
 | ||||
| +<!-- E == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba007"/> -->
 | ||||
| +<!-- F == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba008"/> -->
 | ||||
| +<!-- G == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba009"/> -->
 | ||||
| +<!-- H == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba010"/> -->
 | ||||
| +<!-- I == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba011"/> -->
 | ||||
| +<!-- K == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba012"/> -->
 | ||||
| +<!-- L == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba013"/> -->
 | ||||
| +<!-- M == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba014"/> -->
 | ||||
| +<!-- O == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba015"/> -->
 | ||||
| +<!-- P == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba016"/> -->
 | ||||
| +<!-- R == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba017"/> -->
 | ||||
| +
 | ||||
| +  <Section Name="llRemoveFromLandBanList">
 | ||||
| +    <Key Name="inventoryID" Value="299b2100-b392-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="299b2101-b392-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba017"/>
 | ||||
| +    <Key Name="description" Value="llR" />
 | ||||
| +    <Key Name="name" Value="llRemoveFromLandBanList" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="llRemoveFromLandPassList">
 | ||||
| +    <Key Name="inventoryID" Value="299b2102-b392-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="299b2103-b392-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba017"/>
 | ||||
| +    <Key Name="description" Value="llR" />
 | ||||
| +    <Key Name="name" Value="llRemoveFromLandPassList" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="llResetLandBanList">
 | ||||
| +    <Key Name="inventoryID" Value="366ac8e6-b391-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="366ac8e7-b391-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba017"/>
 | ||||
| +    <Key Name="description" Value="llR" />
 | ||||
| +    <Key Name="name" Value="llResetLandBanList" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="llResetLandPassList">
 | ||||
| +    <Key Name="inventoryID" Value="366ac8e8-b391-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="366ac8e9-b391-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba017"/>
 | ||||
| +    <Key Name="description" Value="llR" />
 | ||||
| +    <Key Name="name" Value="llResetLandPassList" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +<!-- S == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba018"/> -->
 | ||||
| +  <Section Name="llSay">
 | ||||
| +    <Key Name="inventoryID" Value="3af51d20-b38f-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="366ac8e9-b391-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba018"/>
 | ||||
| +    <Key Name="description" Value="llS" />
 | ||||
| +    <Key Name="name" Value="llSay" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="llSetParcelMusicURL">
 | ||||
| +    <Key Name="inventoryID" Value="3603a4f9-b360-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="3603a4f8-b360-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba018"/>
 | ||||
| +    <Key Name="description" Value="llS" />
 | ||||
| +    <Key Name="name" Value="llSetParcelMusicURL" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="llSetRot">
 | ||||
| +    <Key Name="inventoryID" Value="220baef8-b376-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="220baef9-b376-11dc-8314-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba018"/>
 | ||||
| +    <Key Name="description" Value="llS" />
 | ||||
| +    <Key Name="name" Value="llSetRot" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +<!-- T == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba019"/> -->
 | ||||
| +<!-- U == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba020"/> -->
 | ||||
| +<!-- V == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba021"/> -->
 | ||||
| +<!-- W == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba022"/> -->
 | ||||
| +<!-- X == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba023"/> -->
 | ||||
| +<!-- .Kan-ED Scripts == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> -->
 | ||||
| +  <Section Name="Kan-Ed Test1">
 | ||||
| +    <Key Name="inventoryID" Value="42b6ac70-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="42b6ac70-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
 | ||||
| +    <Key Name="description" Value="Kan-Ed Test1" />
 | ||||
| +    <Key Name="name" Value="Kan-Ed Test1" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="Kan-Ed Test2">
 | ||||
| +    <Key Name="inventoryID" Value="42b6ac71-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="42b6ac71-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
 | ||||
| +    <Key Name="description" Value="Kan-Ed Test2" />
 | ||||
| +    <Key Name="name" Value="Kan-Ed Test2" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="Kan-Ed Test3">
 | ||||
| +    <Key Name="inventoryID" Value="42b6ac72-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="42b6ac72-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
 | ||||
| +    <Key Name="description" Value="Kan-Ed Test3" />
 | ||||
| +    <Key Name="name" Value="Kan-Ed Test3" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="Kan-Ed Test4">
 | ||||
| +    <Key Name="inventoryID" Value="42b6ac73-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="42b6ac73-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
 | ||||
| +    <Key Name="description" Value="Kan-Ed Test4" />
 | ||||
| +    <Key Name="name" Value="Kan-Ed Test4" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="Kan-Ed Test5">
 | ||||
| +    <Key Name="inventoryID" Value="42b6ac74-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="42b6ac74-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
 | ||||
| +    <Key Name="description" Value="Kan-Ed Test5" />
 | ||||
| +    <Key Name="name" Value="Kan-Ed Test5" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="Kan-Ed Test6">
 | ||||
| +    <Key Name="inventoryID" Value="42b6ac75-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="42b6ac75-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
 | ||||
| +    <Key Name="description" Value="Kan-Ed Test6" />
 | ||||
| +    <Key Name="name" Value="Kan-Ed Test6" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="Kan-Ed Test7">
 | ||||
| +    <Key Name="inventoryID" Value="42b6ac76-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="42b6ac76-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
 | ||||
| +    <Key Name="description" Value="Kan-Ed Test7" />
 | ||||
| +    <Key Name="name" Value="Kan-Ed Test7" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="Kan-Ed Test8">
 | ||||
| +    <Key Name="inventoryID" Value="42b6ac77-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="42b6ac77-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
 | ||||
| +    <Key Name="description" Value="Kan-Ed Test8" />
 | ||||
| +    <Key Name="name" Value="Kan-Ed Test8" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="Kan-Ed Test9">
 | ||||
| +    <Key Name="inventoryID" Value="42b6ac78-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="42b6ac78-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
 | ||||
| +    <Key Name="description" Value="Kan-Ed Test9" />
 | ||||
| +    <Key Name="name" Value="Kan-Ed Test9" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="Kan-Ed Test10">
 | ||||
| +    <Key Name="inventoryID" Value="42b6ac79-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="42b6ac79-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
 | ||||
| +    <Key Name="description" Value="Kan-Ed Test10" />
 | ||||
| +    <Key Name="name" Value="Kan-Ed Test10" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="Kan-Ed Test11">
 | ||||
| +    <Key Name="inventoryID" Value="42b6ac7a-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="42b6ac7a-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
 | ||||
| +    <Key Name="description" Value="Kan-Ed Test11" />
 | ||||
| +    <Key Name="name" Value="Kan-Ed Test11" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="Kan-Ed Test12">
 | ||||
| +    <Key Name="inventoryID" Value="42b6ac7b-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="42b6ac7b-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
 | ||||
| +    <Key Name="description" Value="Kan-Ed Test12" />
 | ||||
| +    <Key Name="name" Value="Kan-Ed Test12" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="Kan-Ed Test13">
 | ||||
| +    <Key Name="inventoryID" Value="42b6ac7c-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="42b6ac7c-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
 | ||||
| +    <Key Name="description" Value="Kan-Ed Test13" />
 | ||||
| +    <Key Name="name" Value="Kan-Ed Test13" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="Kan-Ed Test14">
 | ||||
| +    <Key Name="inventoryID" Value="42b6ac7d-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="42b6ac7d-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
 | ||||
| +    <Key Name="description" Value="Kan-Ed Test14" />
 | ||||
| +    <Key Name="name" Value="Kan-Ed Test14" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="Kan-Ed Test15">
 | ||||
| +    <Key Name="inventoryID" Value="42b6ac7e-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="42b6ac7e-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
 | ||||
| +    <Key Name="description" Value="Kan-Ed Test15" />
 | ||||
| +    <Key Name="name" Value="Kan-Ed Test15" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="Kan-Ed Test16">
 | ||||
| +    <Key Name="inventoryID" Value="42b6ac7f-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="assetID" Value="42b6ac7f-d21f-11dd-ad8b-0800200c9a66" />
 | ||||
| +    <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
 | ||||
| +    <Key Name="description" Value="Kan-Ed Test16" />
 | ||||
| +    <Key Name="name" Value="Kan-Ed Test16" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +<!-- .Other testing scripts == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba025"/> -->
 | ||||
| +<!-- OpenSim Specific Scripts == <Key Name="folderID" Value="284858c8-9391-6bf1-ddf5-b936f73de853"/> -->
 | ||||
| +
 | ||||
| +  <Section Name="osTextBoard">
 | ||||
| +    <Key Name="inventoryID" Value="2ddcb059-20c5-d169-4c42-673f16d3284b" />
 | ||||
| +    <Key Name="assetID" Value="2ddcb059-20c5-d169-4c42-673f16d3284b" />
 | ||||
| +    <Key Name="folderID" Value="284858c8-9391-6bf1-ddf5-b936f73de853"/>
 | ||||
| +    <Key Name="description" Value="A dynamic text board - contributed by Neas Bade" />
 | ||||
| +    <Key Name="name" Value="osTextBoard" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="osWeatherMap">
 | ||||
| +    <Key Name="inventoryID" Value="d63ad3ec-b687-6c38-410d-31ba3e50ce4d" />
 | ||||
| +    <Key Name="assetID" Value="d63ad3ec-b687-6c38-410d-31ba3e50ce4d" />
 | ||||
| +    <Key Name="folderID" Value="284858c8-9391-6bf1-ddf5-b936f73de853" />
 | ||||
| +    <Key Name="description" Value="A cycling US Weather Map - contributed by Neas Bade" />
 | ||||
| +    <Key Name="name" Value="osWeatherMap" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +
 | ||||
| +  <Section Name="GrafittiBoard">
 | ||||
| +    <Key Name="inventoryID" Value="81305ee4-8caa-9e0a-69a4-76ed57df0c8f" />
 | ||||
| +    <Key Name="assetID" Value="81305ee4-8caa-9e0a-69a4-76ed57df0c8f" />
 | ||||
| +    <Key Name="folderID" Value="284858c8-9391-6bf1-ddf5-b936f73de853" />
 | ||||
| +    <Key Name="description" Value="A text board that records what you say - contributed by Justin Clark-Casey" />
 | ||||
| +    <Key Name="name" Value="GrafittiBoard" />
 | ||||
| +    <Key Name="assetType" Value="10" />
 | ||||
| +    <Key Name="inventoryType" Value="10" />
 | ||||
| +  </Section>
 | ||||
| +</Nini>
 | ||||
| -- 
 | ||||
| 2.27.0.windows.1 | ||||
| 2.25.1.windows.1 | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	 Christopher
						Christopher