Add more bot types

This commit is contained in:
Chomp 2021-08-17 17:32:03 +01:00
parent 01cd594ca2
commit 58b4e59bfa
3 changed files with 29 additions and 3 deletions

View File

@ -30,11 +30,23 @@ namespace Generator
var raiderBot = new Bot(BotType.pmcBot);
var marksmanBot = new Bot(BotType.marksman);
var bossbully = new Bot(BotType.bossbully);
var bossgluharBot = new Bot(BotType.bossgluhar);
var bosskillaBot = new Bot(BotType.bosskilla);
var bosskojaniyBot = new Bot(BotType.bosskojaniy);
var bosssanitarBot = new Bot(BotType.bosssanitar);
var rawBots = new List<Bot>
{
assaultBot,
raiderBot,
marksmanBot
marksmanBot,
bossbully,
bossgluharBot,
bosskillaBot,
bosskojaniyBot,
bosssanitarBot
};
foreach (var botToUpdate in rawBots)

View File

@ -4,6 +4,11 @@
{
assault = 1,
pmcBot = 2,
marksman = 3
marksman = 3,
bossbully = 4,
bossgluhar = 5,
bosskilla = 6,
bosskojaniy = 7,
bosssanitar = 8
}
}

View File

@ -7,7 +7,16 @@ namespace Generator
static void Main(string[] args)
{
//TODO: pass these into functions to act as whitelist
string[] botTypes = { "assault", "marksman", "pmcbot", "bossbully", "bosskilla" };
string[] botTypes = {
"assault",
"marksman",
"pmcbot",
"bossbully",
"bossgluhar",
"bosskilla",
"bosskojaniy",
"bosssanitar"
};
// Read raw bot dumps from live and turn into c# objects
var workingPath = Directory.GetCurrentDirectory();