forked from RiceField-Plugins/RFGarage
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathConfiguration.cs
More file actions
91 lines (89 loc) · 3.48 KB
/
Copy pathConfiguration.cs
File metadata and controls
91 lines (89 loc) · 3.48 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
using System.Collections.Generic;
using RFGarage.Enums;
using RFGarage.Models;
using Rocket.API;
namespace RFGarage
{
public class Configuration : IRocketPluginConfiguration
{
public bool SafeDb;
public bool Enabled;
public bool DropAllTrunkItems;
public EDatabase Database;
public Newtonsoft.Json.Formatting JsonFormatting;
public string MySqlConnectionString;
public string MessageColor;
public string MessageIconUrl;
public bool AutoClearDestroyedVehicles;
public bool AutoAddOnDrown;
public bool AutoGarageOnLeave_IgnoreMaxStorage;
public string AutoAddOnDrownPermission;
public float VehicleAddDist;
public float AutoGarageOnLeave;
public string Permission_Ignore_AutoGarageOnLeave;
public bool AllowTrain;
public int DefaultGarageSlot;
public string GarageSlotPermissionPrefix;
public List<Blacklist> Blacklists;
public void LoadDefaults()
{
SafeDb = false;
Enabled = true;
DropAllTrunkItems = false;
Database = EDatabase.LITEDB;
JsonFormatting = Newtonsoft.Json.Formatting.Indented;
MySqlConnectionString = "SERVER=/var/run/mysqld/mysqld.sock;Protocol=unix;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";
AutoGarageOnLeave_IgnoreMaxStorage = true;
VehicleAddDist = float.MaxValue;
AutoGarageOnLeave = -1;
Permission_Ignore_AutoGarageOnLeave = "noautogarage";
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}
},
};
}
}
}