-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEACFOBConfiguration.cs
More file actions
35 lines (32 loc) · 1.13 KB
/
EACFOBConfiguration.cs
File metadata and controls
35 lines (32 loc) · 1.13 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
30
31
32
33
34
35
using Rocket.API;
namespace Ekin.EACFOB
{
public class EACFOBConfiguration : IRocketPluginConfiguration
{
public ushort teleportcooldown { get; set; }
public ushort createfobcooldown { get; set; }
public ushort fobobjectid { get; set; }
public bool samefob { get; set; }
public ushort team1fobobjectid { get; set; }
public ushort team2fobobjectid { get; set; }
public float fobobjectYadjust { get; set; }
public string team1permission { get; set; }
public string team2permission { get; set; }
public string team1type { get; set; }
public string team2type { get; set; }
public void LoadDefaults()
{
teleportcooldown = 20;
createfobcooldown = 600;
fobobjectid = 1232;
samefob = false;
team1fobobjectid = 1233;
team2fobobjectid = 1234;
fobobjectYadjust = +1;
team1permission = "usa";
team2permission = "russia";
team1type = "usa";
team2type = "russia";
}
}
}