-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.cs
More file actions
32 lines (26 loc) · 841 Bytes
/
Config.cs
File metadata and controls
32 lines (26 loc) · 841 Bytes
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
using Rocket.API;
namespace AuthMe
{
public class Config : IRocketPluginConfiguration
{
public bool GodModeOnLogging;
public bool RestrictChatOnLogging;
public bool AllowVoiceChatOnLogging;
public bool RestrictDamageOnLogging;
public bool RestrictLootOnLogging;
public int SpeedOnLogging;
public int JumpOnLogging;
public int GravityOnLogging;
public void LoadDefaults()
{
GodModeOnLogging = true;
RestrictChatOnLogging = true;
AllowVoiceChatOnLogging = false;
RestrictDamageOnLogging = true;
RestrictLootOnLogging = true;
SpeedOnLogging = 0;
JumpOnLogging = 0;
GravityOnLogging = 0;
}
}
}