-
Notifications
You must be signed in to change notification settings - Fork 0
/
miscstuffConfiguration.cs
55 lines (51 loc) · 1.93 KB
/
miscstuffConfiguration.cs
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
using Rocket.API;
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
namespace Random.miscstuff
{
public class miscstuffConfiguration : IRocketPluginConfiguration
{
public float axisy;
public float axisx;
public float alliesy;
public float alliesx;
public string raidalertchannel;
public string hqalertchannel;
public float artyshipoffsetlistx;
public float artyshipoffsetlisty;
public float artyshipoffsetlistz;
public int ZombieXP;
public int MegaXP;
public bool Siphon;
public List<Registereddoortype> listofregistereddoors;
[XmlArrayItem("ItemId")] public List<ushort> listofblacklistedspawners;
[XmlArrayItem("ItemId")] public List<ushort> listofignoredexploitbarricades;
[XmlArrayItem("ItemId")] public List<ushort> artycalculatorids;
public void LoadDefaults()
{
alliesy = 1003;
alliesx = 1666;
axisx = -1482;
axisy = -1684;
listofregistereddoors = new List<Registereddoortype>
{ };
ZombieXP = 0;
MegaXP = -1000;
Siphon = false;
artyshipoffsetlistx = 0f;
artyshipoffsetlisty = 15f;
artyshipoffsetlistz = 0.84f;
raidalertchannel =
"https://ptb.discordapp.com/api/webhooks/731832920544641045/L5vfn6rGJIAd3gzCulgASwshPmA1Jx5d4OYSDH4X6h3Mi4HykY8TE8lSsS-Gep65KsW-";
hqalertchannel =
"https://ptb.discordapp.com/api/webhooks/731855861013807174/nq19tM__yYiub57hJbvRdN8KXG9DhuJ1t358z0XnnTkgKQOkmVRBMN5JSoknSLP4jNV0";
listofblacklistedspawners = new List<ushort>
{ 76 };
listofignoredexploitbarricades = new List<ushort>
{ 386};
artycalculatorids = new List<ushort>
{ 30129 };
}
}
}