-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.cs
More file actions
29 lines (22 loc) · 1.34 KB
/
Config.cs
File metadata and controls
29 lines (22 loc) · 1.34 KB
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
using Exiled.API.Interfaces;
using System.ComponentModel;
namespace CuffConversion
{
public class Config : IConfig
{
[Description("تفعيل أو تعطيل البلجن")]
public bool IsEnabled { get; set; } = true;
[Description("تفعيل أو تعطيل البلجن")]
public bool Debug { get; set; }
[Description("تفعيل التحويل عندما يهرب لاعب Chaos بعد أن يُقيد من طرف MTF")]
public bool ConvertChaosToMTF { get; set; } = true;
[Description("تفعيل التحويل عندما يهرب لاعب MTF بعد أن يُقيد من طرف Chaos")]
public bool ConvertMTFToChaos { get; set; } = true;
[Description("مدة ظهور الرسالة عند التحويل (بالثواني)")]
public ushort BroadcastDuration { get; set; } = 5;
[Description("الرسالة التي تظهر عند التحويل إلى MTF")]
public string ChaosToMTFMessage { get; set; } = "<color=green>لقد تم تحويلك إلى MTF بعد هروبك!</color>";
[Description("الرسالة التي تظهر عند التحويل إلى Chaos")]
public string MTFToChaosMessage { get; set; } = "<color=red>لقد تم تحويلك إلى Chaos بعد هروبك!</color>";
}
}