You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The initial delay can now be random (by default it is deactivated so as not to break the configuration of the servers, you can activate it from the configuration).
* You can now change SCP-575's RoleType from the config.
Copy file name to clipboardExpand all lines: SCP575/Config.cs
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
usingSystem.Collections.Generic;
2
2
usingSystem.ComponentModel;
3
3
usingMapGeneration;
4
+
usingPlayerRoles;
4
5
5
6
namespaceSCP575
6
7
{
@@ -38,6 +39,15 @@ public class BlackoutConfig
38
39
{
39
40
[Description("After this time, the constant blackouts will begin to be executed.")]
40
41
publicfloatInitialDelay{get;set;}=300f;
42
+
43
+
[Description("If this value is true initial_delay will be ignored and a calculation will be made between initial_max_delay and initial_min_delay which will result in the delay")]
44
+
publicboolRandomInitialDelay{get;set;}=false;
45
+
46
+
[Description("The maximum time that the main delay can have")]
47
+
publicfloatInitialMaxDelay{get;set;}=250f;
48
+
49
+
[Description("The minimun time that the main delay can have")]
50
+
publicfloatInitialMinDelay{get;set;}=190f;
41
51
42
52
[Description("The minimum duration of a blackout")]
43
53
publicfloatMinDuration{get;set;}=30f;
@@ -83,6 +93,9 @@ public class Scp575Config
83
93
[Description("The distance at which players can see the name of the SCP-575 | The game default value is 10")]
84
94
publicintViewRange{get;set;}=12;
85
95
96
+
[Description("Set the SCP-575 role, by default is SCP-106")]
0 commit comments