forked from chomp/BotGenerator
Add more bot types
This commit is contained in:
parent
01cd594ca2
commit
58b4e59bfa
@ -30,11 +30,23 @@ namespace Generator
|
|||||||
var raiderBot = new Bot(BotType.pmcBot);
|
var raiderBot = new Bot(BotType.pmcBot);
|
||||||
var marksmanBot = new Bot(BotType.marksman);
|
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>
|
var rawBots = new List<Bot>
|
||||||
{
|
{
|
||||||
assaultBot,
|
assaultBot,
|
||||||
raiderBot,
|
raiderBot,
|
||||||
marksmanBot
|
marksmanBot,
|
||||||
|
|
||||||
|
bossbully,
|
||||||
|
bossgluharBot,
|
||||||
|
bosskillaBot,
|
||||||
|
bosskojaniyBot,
|
||||||
|
bosssanitarBot
|
||||||
};
|
};
|
||||||
|
|
||||||
foreach (var botToUpdate in rawBots)
|
foreach (var botToUpdate in rawBots)
|
||||||
|
@ -4,6 +4,11 @@
|
|||||||
{
|
{
|
||||||
assault = 1,
|
assault = 1,
|
||||||
pmcBot = 2,
|
pmcBot = 2,
|
||||||
marksman = 3
|
marksman = 3,
|
||||||
|
bossbully = 4,
|
||||||
|
bossgluhar = 5,
|
||||||
|
bosskilla = 6,
|
||||||
|
bosskojaniy = 7,
|
||||||
|
bosssanitar = 8
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,16 @@ namespace Generator
|
|||||||
static void Main(string[] args)
|
static void Main(string[] args)
|
||||||
{
|
{
|
||||||
//TODO: pass these into functions to act as whitelist
|
//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
|
// Read raw bot dumps from live and turn into c# objects
|
||||||
var workingPath = Directory.GetCurrentDirectory();
|
var workingPath = Directory.GetCurrentDirectory();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user