2023-03-03 18:52:31 +00:00
|
|
|
|
using EFT.Bots;
|
|
|
|
|
|
2024-05-21 19:10:17 +01:00
|
|
|
|
namespace SPT.Custom.Models
|
2023-03-03 18:52:31 +00:00
|
|
|
|
{
|
|
|
|
|
public class DefaultRaidSettings
|
|
|
|
|
{
|
|
|
|
|
public EBotAmount AiAmount;
|
|
|
|
|
public EBotDifficulty AiDifficulty;
|
|
|
|
|
public bool BossEnabled;
|
|
|
|
|
public bool ScavWars;
|
|
|
|
|
public bool TaggedAndCursed;
|
|
|
|
|
public bool EnablePve;
|
2024-01-07 13:01:49 +00:00
|
|
|
|
public bool RandomWeather;
|
|
|
|
|
public bool RandomTime;
|
2023-03-03 18:52:31 +00:00
|
|
|
|
|
2024-01-07 13:01:49 +00:00
|
|
|
|
public DefaultRaidSettings(EBotAmount aiAmount, EBotDifficulty aiDifficulty, bool bossEnabled, bool scavWars, bool taggedAndCursed, bool enablePve, bool randomWeather, bool randomTime)
|
2023-03-03 18:52:31 +00:00
|
|
|
|
{
|
|
|
|
|
AiAmount = aiAmount;
|
|
|
|
|
AiDifficulty = aiDifficulty;
|
|
|
|
|
BossEnabled = bossEnabled;
|
|
|
|
|
ScavWars = scavWars;
|
|
|
|
|
TaggedAndCursed = taggedAndCursed;
|
|
|
|
|
EnablePve = enablePve;
|
2024-01-07 13:01:49 +00:00
|
|
|
|
RandomWeather = randomWeather;
|
|
|
|
|
RandomTime = randomTime;
|
2023-03-03 18:52:31 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|