-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathConfiguration.cs
More file actions
77 lines (75 loc) · 2.81 KB
/
Copy pathConfiguration.cs
File metadata and controls
77 lines (75 loc) · 2.81 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
using System.Collections.Generic;
using RFGarage.Enums;
using RFGarage.Models;
using Rocket.API;
namespace RFGarage
{
public class Configuration : IRocketPluginConfiguration
{
public bool Enabled;
public EDatabase Database;
public string MySqlConnectionString;
public string MessageColor;
public string MessageIconUrl;
public bool AutoClearDestroyedVehicles;
public bool AutoAddOnDrown;
public string AutoAddOnDrownPermission;
public bool AllowTrain;
public int DefaultGarageSlot;
public string GarageSlotPermissionPrefix;
public List<Blacklist> Blacklists;
public void LoadDefaults()
{
Enabled = true;
Database = EDatabase.LITEDB;
MySqlConnectionString = "SERVER=127.0.0.1;DATABASE=unturned;UID=root;PASSWORD=123456;PORT=3306;TABLENAME=rfgarage;";
MessageColor = "magenta";
MessageIconUrl = "https://cdn.jsdelivr.net/gh/RiceField-Plugins/UnturnedImages@images/plugin/Announcer.png";
AutoClearDestroyedVehicles = true;
AutoAddOnDrown = true;
AutoAddOnDrownPermission = "garagedrown";
AllowTrain = false;
DefaultGarageSlot = 5;
GarageSlotPermissionPrefix = "garageslot";
Blacklists = new List<Blacklist>
{
new Blacklist
{
Type = EBlacklistType.BARRICADE,
BypassPermission = "garagebypass.barricade.example",
IdList = new List<ushort> {1, 2}
},
new Blacklist
{
Type = EBlacklistType.ITEM,
BypassPermission = "garagebypass.item.example",
IdList = new List<ushort> {1, 2}
},
new Blacklist
{
Type = EBlacklistType.VEHICLE,
BypassPermission = "garagebypass.vehicle.example",
IdList = new List<ushort> {1, 2}
},
new Blacklist
{
Type = EBlacklistType.BARRICADE,
BypassPermission = "garagebypass.barricade.example2",
IdList = new List<ushort> {3, 4}
},
new Blacklist
{
Type = EBlacklistType.ITEM,
BypassPermission = "garagebypass.item.example2",
IdList = new List<ushort> {3, 4}
},
new Blacklist
{
Type = EBlacklistType.VEHICLE,
BypassPermission = "garagebypass.vehicle.example2",
IdList = new List<ushort> {3, 4}
},
};
}
}
}