forked from RisottoMan/AutoEvent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfig.cs
33 lines (29 loc) · 1.21 KB
/
Config.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using AutoEvent.Events.Infection;
using AutoEvent.Events.Jail;
using AutoEvent.Events.Versus;
using Exiled.API.Interfaces;
using System.Collections.Generic;
using System.ComponentModel;
namespace AutoEvent
{
public class Config : IConfig
{
[Description("Enable/Disable AutoEvent.")]
public bool IsEnabled { get; set; } = true;
[Description("Enable/Disable Debug.")]
public bool Debug { get; set; } = false;
[Description("If you have donaters, then you can disable the admin panel for them during mini-games.")]
public bool IsDisableDonators { get; set; } = true;
[Description("List of donaters. Specify the GroupName from the RemoteAdmin config.")]
public List<string> DonatorList { get; set; } = new List<string>()
{
"donate1"
};
[Description("Infection config..")]
public InfectionConfig InfectionConfig { get; set; } = new InfectionConfig();
[Description("Enable/Disable jailbird ability..")]
public bool IsJailbirdAbilityEnable { get; set; } = false;
[Description("Enable/Disable infinity charges of jailbird..")]
public bool IsJailbirdHasInfinityCharges { get; set; } = true;
}
}