-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
52 changed files
with
7,075 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
using Exiled.API.Interfaces; | ||
using Exiled.API.Features; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using System.ComponentModel; | ||
using UserSettings.AudioSettings; | ||
|
||
namespace Scp575_Exiled8 | ||
{ | ||
public class Config : IConfig | ||
{ | ||
public bool IsEnabled { get; set; } = true; | ||
public bool Debug { get; set; } = false; | ||
public int spawnChance { get; set; } = 100; | ||
public int minSpawnTime { get; set; } = 120; | ||
public int maxSpawnTime { get; set; } = 180; | ||
public int minBlackoutTime { get; set; } = 60; | ||
public int maxBlackoutTime { get; set; } = 120; | ||
[Description("The breach message used for C.A.S.S.I.E announcement")] | ||
public string breachCassie { get; set; } = "Attention . All personnel . SCP 5 7 5 has breached containment"; | ||
[Description("The recontainment message used for C.A.S.S.I.E announcement")] | ||
public string recontainCassie { get; set; } = "SCP 5 7 5 has been recontained"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
| ||
using Exiled.API.Features; | ||
using PluginAPI.Events; | ||
using System; | ||
using System.Collections; | ||
using System.Threading; | ||
using MEC; | ||
using System.Collections.Generic; | ||
using Exiled.Events.EventArgs.Server; | ||
using UnityEngine; | ||
using Random = UnityEngine.Random; | ||
using Exiled.Events.EventArgs.Player; | ||
using PlayerRoles; | ||
using System.Linq; | ||
using System.Diagnostics.Eventing.Reader; | ||
|
||
namespace Scp575_Exiled8.Events | ||
{ | ||
public class ServerHandler | ||
{ | ||
private static Config config = Scp575.Instance.Config; | ||
private static bool scpsAlive = true; | ||
private static MEC.CoroutineHandle yes; | ||
private static bool breached = false; | ||
|
||
public static void OnRoundStarted() | ||
{ | ||
yes = Timing.RunCoroutine(iHaveNoIdeaWhatToNameThis()); | ||
} | ||
|
||
public static void OnRoundEnded(RoundEndedEventArgs ev) | ||
{ | ||
Timing.KillCoroutines(yes); | ||
} | ||
|
||
|
||
|
||
public static IEnumerator<float> iHaveNoIdeaWhatToNameThis() | ||
{ | ||
for (; ; ) | ||
{ | ||
yield return Random.Range(config.minSpawnTime, config.maxSpawnTime); | ||
if (Player.List.Count(x => x.IsScp) == 0) scpsAlive = false; else scpsAlive = true; | ||
if (Random.Range(config.spawnChance, 101) == 100 && scpsAlive) | ||
{ | ||
Log.Info("Spawn chance met"); | ||
if (scpsAlive) | ||
{ | ||
Map.TurnOffAllLights(Random.Range(config.minBlackoutTime, config.maxSpawnTime)); | ||
if (breached) Cassie.Message(config.breachCassie); Log.Info("Breached"); | ||
if (!breached) Log.Info("Breach already happened"); | ||
OnRoundStarted(); | ||
breached = true; | ||
Timing.KillCoroutines(yes); | ||
} else | ||
{ | ||
if (breached) | ||
{ | ||
Cassie.Message(config.recontainCassie); | ||
Log.Info("No More SCPs are left"); | ||
break; | ||
} | ||
else Log.Info("Breach never happened"); | ||
|
||
} | ||
} else | ||
{ | ||
Log.Info("Spawn chance not met"); | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<Weavers xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="FodyWeavers.xsd"> | ||
<Costura /> | ||
</Weavers> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> | ||
<!-- This file was generated by Fody. Manual changes to this file will be lost when your project is rebuilt. --> | ||
<xs:element name="Weavers"> | ||
<xs:complexType> | ||
<xs:all> | ||
<xs:element name="Costura" minOccurs="0" maxOccurs="1"> | ||
<xs:complexType> | ||
<xs:all> | ||
<xs:element minOccurs="0" maxOccurs="1" name="ExcludeAssemblies" type="xs:string"> | ||
<xs:annotation> | ||
<xs:documentation>A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element minOccurs="0" maxOccurs="1" name="IncludeAssemblies" type="xs:string"> | ||
<xs:annotation> | ||
<xs:documentation>A list of assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element minOccurs="0" maxOccurs="1" name="ExcludeRuntimeAssemblies" type="xs:string"> | ||
<xs:annotation> | ||
<xs:documentation>A list of runtime assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element minOccurs="0" maxOccurs="1" name="IncludeRuntimeAssemblies" type="xs:string"> | ||
<xs:annotation> | ||
<xs:documentation>A list of runtime assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element minOccurs="0" maxOccurs="1" name="Unmanaged32Assemblies" type="xs:string"> | ||
<xs:annotation> | ||
<xs:documentation>A list of unmanaged 32 bit assembly names to include, delimited with line breaks.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element minOccurs="0" maxOccurs="1" name="Unmanaged64Assemblies" type="xs:string"> | ||
<xs:annotation> | ||
<xs:documentation>A list of unmanaged 64 bit assembly names to include, delimited with line breaks.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element minOccurs="0" maxOccurs="1" name="PreloadOrder" type="xs:string"> | ||
<xs:annotation> | ||
<xs:documentation>The order of preloaded assemblies, delimited with line breaks.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
</xs:all> | ||
<xs:attribute name="CreateTemporaryAssemblies" type="xs:boolean"> | ||
<xs:annotation> | ||
<xs:documentation>This will copy embedded files to disk before loading them into memory. This is helpful for some scenarios that expected an assembly to be loaded from a physical file.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="IncludeDebugSymbols" type="xs:boolean"> | ||
<xs:annotation> | ||
<xs:documentation>Controls if .pdbs for reference assemblies are also embedded.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="IncludeRuntimeReferences" type="xs:boolean"> | ||
<xs:annotation> | ||
<xs:documentation>Controls if runtime assemblies are also embedded.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="UseRuntimeReferencePaths" type="xs:boolean"> | ||
<xs:annotation> | ||
<xs:documentation>Controls whether the runtime assemblies are embedded with their full path or only with their assembly name.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="DisableCompression" type="xs:boolean"> | ||
<xs:annotation> | ||
<xs:documentation>Embedded assemblies are compressed by default, and uncompressed when they are loaded. You can turn compression off with this option.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="DisableCleanup" type="xs:boolean"> | ||
<xs:annotation> | ||
<xs:documentation>As part of Costura, embedded assemblies are no longer included as part of the build. This cleanup can be turned off.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="LoadAtModuleInit" type="xs:boolean"> | ||
<xs:annotation> | ||
<xs:documentation>Costura by default will load as part of the module initialization. This flag disables that behavior. Make sure you call CosturaUtility.Initialize() somewhere in your code.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="IgnoreSatelliteAssemblies" type="xs:boolean"> | ||
<xs:annotation> | ||
<xs:documentation>Costura will by default use assemblies with a name like 'resources.dll' as a satellite resource and prepend the output path. This flag disables that behavior.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="ExcludeAssemblies" type="xs:string"> | ||
<xs:annotation> | ||
<xs:documentation>A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with |</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="IncludeAssemblies" type="xs:string"> | ||
<xs:annotation> | ||
<xs:documentation>A list of assembly names to include from the default action of "embed all Copy Local references", delimited with |.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="ExcludeRuntimeAssemblies" type="xs:string"> | ||
<xs:annotation> | ||
<xs:documentation>A list of runtime assembly names to exclude from the default action of "embed all Copy Local references", delimited with |</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="IncludeRuntimeAssemblies" type="xs:string"> | ||
<xs:annotation> | ||
<xs:documentation>A list of runtime assembly names to include from the default action of "embed all Copy Local references", delimited with |.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="Unmanaged32Assemblies" type="xs:string"> | ||
<xs:annotation> | ||
<xs:documentation>A list of unmanaged 32 bit assembly names to include, delimited with |.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="Unmanaged64Assemblies" type="xs:string"> | ||
<xs:annotation> | ||
<xs:documentation>A list of unmanaged 64 bit assembly names to include, delimited with |.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="PreloadOrder" type="xs:string"> | ||
<xs:annotation> | ||
<xs:documentation>The order of preloaded assemblies, delimited with |.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:all> | ||
<xs:attribute name="VerifyAssembly" type="xs:boolean"> | ||
<xs:annotation> | ||
<xs:documentation>'true' to run assembly verification (PEVerify) on the target assembly after all weavers have been executed.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="VerifyIgnoreCodes" type="xs:string"> | ||
<xs:annotation> | ||
<xs:documentation>A comma-separated list of error codes that can be safely ignored in assembly verification.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="GenerateXsd" type="xs:boolean"> | ||
<xs:annotation> | ||
<xs:documentation>'false' to turn off automatic generation of the XML Schema file.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:schema> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
using System.Reflection; | ||
using System.Runtime.CompilerServices; | ||
using System.Runtime.InteropServices; | ||
|
||
// General Information about an assembly is controlled through the following | ||
// set of attributes. Change these attribute values to modify the information | ||
// associated with an assembly. | ||
[assembly: AssemblyTitle("Scp939MaxHealth-Exiled880")] | ||
[assembly: AssemblyDescription("")] | ||
[assembly: AssemblyConfiguration("")] | ||
[assembly: AssemblyCompany("")] | ||
[assembly: AssemblyProduct("Scp939MaxHealth-Exiled880")] | ||
[assembly: AssemblyCopyright("Copyright © 2024")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
|
||
// Setting ComVisible to false makes the types in this assembly not visible | ||
// to COM components. If you need to access a type in this assembly from | ||
// COM, set the ComVisible attribute to true on that type. | ||
[assembly: ComVisible(false)] | ||
|
||
// The following GUID is for the ID of the typelib if this project is exposed to COM | ||
[assembly: Guid("0efba00c-a84f-4ca1-8714-8390e9ce993b")] | ||
|
||
// Version information for an assembly consists of the following four values: | ||
// | ||
// Major Version | ||
// Minor Version | ||
// Build Number | ||
// Revision | ||
// | ||
// You can specify all the values or you can default the Build and Revision Numbers | ||
// by using the '*' as shown below: | ||
// [assembly: AssemblyVersion("1.0.*")] | ||
[assembly: AssemblyVersion("1.0.0.0")] | ||
[assembly: AssemblyFileVersion("1.0.0.0")] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{0EFBA00C-A84F-4CA1-8714-8390E9CE993B}</ProjectGuid> | ||
<OutputType>Library</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>Scp939MaxHealth_Exiled880</RootNamespace> | ||
<AssemblyName>Scp575-Exiled8</AssemblyName> | ||
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion> | ||
<FileAlignment>512</FileAlignment> | ||
<Deterministic>true</Deterministic> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>false</DebugSymbols> | ||
<DebugType>none</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="Assembly-CSharp-firstpass"> | ||
<HintPath>..\..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\SCP Secret Laboratory Dedicated Server\SCPSL_Data\Managed\Assembly-CSharp-firstpass.dll</HintPath> | ||
</Reference> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Xml.Linq" /> | ||
<Reference Include="System.Data.DataSetExtensions" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
<Reference Include="System.Data" /> | ||
<Reference Include="System.Net.Http" /> | ||
<Reference Include="System.Xml" /> | ||
<Reference Include="UnityEngine.CoreModule"> | ||
<HintPath>..\..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\SCP Secret Laboratory Dedicated Server\SCPSL_Data\Managed\UnityEngine.CoreModule.dll</HintPath> | ||
</Reference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="Config.cs" /> | ||
<Compile Include="Events\ServerHandler.cs" /> | ||
<Compile Include="Scp575.cs" /> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Costura.Fody"> | ||
<Version>5.8.0-alpha0098</Version> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="EXILED"> | ||
<Version>8.8.0</Version> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<WCFMetadata Include="Connected Services\" /> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
using Exiled.API.Features; | ||
using Exiled; | ||
using Exiled.Events.EventArgs.Player; | ||
using Scp575_Exiled8.Events; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Security.Policy; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Scp575_Exiled8 | ||
{ | ||
public class Scp575 : Plugin<Config> | ||
{ | ||
public override string Author => "6hundred9"; | ||
public override string Name => "SCP575"; | ||
|
||
public override string Prefix => "575"; | ||
|
||
public override Version Version => new Version(1, 2, 0); | ||
|
||
public static Scp575 Instance { get; set; } = null; | ||
|
||
|
||
|
||
public override void OnEnabled() | ||
{ | ||
Instance = this; | ||
Exiled.Events.Handlers.Server.RoundStarted += ServerHandler.OnRoundStarted; | ||
Exiled.Events.Handlers.Server.RoundEnded += ServerHandler.OnRoundEnded; | ||
} | ||
|
||
public override void OnDisabled() | ||
{ | ||
Exiled.Events.Handlers.Server.RoundStarted -= ServerHandler.OnRoundStarted; | ||
Exiled.Events.Handlers.Server.RoundEnded -= ServerHandler.OnRoundEnded; | ||
|
||
} | ||
} | ||
} |
Binary file not shown.
Binary file added
BIN
+24.7 KB
...6EC746D684E1188320AA00BB5846E46B09C1.costura.exiled.customroles.dll.compressed.compressed
Binary file not shown.
Binary file added
BIN
+932 KB
...82C34ECFDFB05776BFD333D7C2B7.costura.assembly-csharp-publicized.dll.compressed.compressed
Binary file not shown.
Binary file added
BIN
+27.3 KB
.../161780C09F38C111CEEF3D2AE11CF6077C98A2D9.costura.exiled.loader.dll.compressed.compressed
Binary file not shown.
Binary file added
BIN
+936 KB
...5540E9B8ABAED0C24095CB12F20C.costura.assembly-csharp-publicized.dll.compressed.compressed
Binary file not shown.
Binary file added
BIN
+195 KB
.../3CAC345213AB4AC33B2BD04274633C8159AD297F.costura.exiled.events.dll.compressed.compressed
Binary file not shown.
Binary file added
BIN
+2.07 KB
...ostura/461A5E4448688BE12A7E94578132CAD735A13D02.costura.costura.dll.compressed.compressed
Binary file not shown.
Binary file added
BIN
+9.81 KB
...0DAE42FDA0381457D41B62E5F347538F19AA.costura.exiled.permissions.dll.compressed.compressed
Binary file not shown.
Binary file added
BIN
+193 KB
.../5D04194BB4231574EB20FA643A7DB68CE3E3DCCA.costura.exiled.events.dll.compressed.compressed
Binary file not shown.
Binary file added
BIN
+177 KB
...ura/5F146AA10DAD910684BCAF403FD196F73633EC7E.costura.exiled.api.dll.compressed.compressed
Binary file not shown.
Binary file added
BIN
+25.8 KB
...B0E972A0B7382529EA00E1EBC9BF3D910CC4.costura.exiled.customitems.dll.compressed.compressed
Binary file not shown.
Binary file added
BIN
+27.3 KB
.../6796423A5F7A6EC075EB8F5C6A45F99166556D8E.costura.exiled.loader.dll.compressed.compressed
Binary file not shown.
Binary file added
BIN
+1.76 KB
...ostura/6F8FE76A0D5297A4FA7D4F7054093411D51F71B1.costura.costura.pdb.compressed.compressed
Binary file not shown.
Binary file added
BIN
+18.2 KB
...E075C4DEF8A3D64E43B.costura.system.diagnostics.diagnosticsource.dll.compressed.compressed
Binary file not shown.
Binary file added
BIN
+24.7 KB
...B22CA786F0A44F53F933843B06C23139A7FA.costura.exiled.customroles.dll.compressed.compressed
Binary file not shown.
Binary file added
BIN
+178 KB
...ura/95CF0F64ABB41AB2B7BF437F307E89ECFBE689FD.costura.exiled.api.dll.compressed.compressed
Binary file not shown.
Binary file added
BIN
+7.1 KB
...605A4C77E68BEE8D0D17BDE6A5D8655E2F909.costura.exiled.credittags.dll.compressed.compressed
Binary file not shown.
Binary file added
BIN
+21.6 KB
...a/C44F17988AF718332EF1FE5B35D04B139F310194.costura.northwoodlib.dll.compressed.compressed
Binary file not shown.
Binary file added
BIN
+406 KB
...9BECE8BC96C09B7CF2720F69E89F34A1.costura.unityengine.coremodule.dll.compressed.compressed
Binary file not shown.
Binary file added
BIN
+88.6 KB
...ura/CD09560D320CE2B4154270FF0C95CE827DECB1F1.costura.yamldotnet.dll.compressed.compressed
Binary file not shown.
Binary file added
BIN
+9.81 KB
...1A0F0C156576368F35F881B4F7C55F270E37.costura.exiled.permissions.dll.compressed.compressed
Binary file not shown.
Binary file added
BIN
+77.3 KB
...8A5CB0750EC43A1FA3AD1FF57B72B.costura.assembly-csharp-firstpass.dll.compressed.compressed
Binary file not shown.
Binary file added
BIN
+69.6 KB
...tura/F293DCECE0A7848C3A4B1BBBE450002D3B81C683.costura.pluginapi.dll.compressed.compressed
Binary file not shown.
Binary file added
BIN
+2.81 KB
...F97E76337018185C88AD3162B65C2C98770F.costura.commandsystem.core.dll.compressed.compressed
Binary file not shown.
Binary file added
BIN
+7.1 KB
...8F9892DDF1C265C03BA3540F6C413E467570F.costura.exiled.credittags.dll.compressed.compressed
Binary file not shown.
Binary file added
BIN
+25.9 KB
...E1D38304F79BA9B04EDC572FC206C862D143.costura.exiled.customitems.dll.compressed.compressed
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+15.3 KB
Scp575-Exiled8/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Binary file not shown.
Binary file added
BIN
+28.4 KB
Scp575-Exiled8/obj/Debug/Scp575-Exiled8.csproj.AssemblyReference.cache
Binary file not shown.
Oops, something went wrong.