update dlls

This commit is contained in:
Chomp 2021-12-26 16:30:53 +00:00
parent 4aba4de9d3
commit 34b75a805c
6 changed files with 3 additions and 1 deletions

Binary file not shown.

View File

@ -118,6 +118,7 @@ namespace astealz.BotMonitor
distance.BotName = player.Profile.GetNickname(); distance.BotName = player.Profile.GetNickname();
distance.Distance = botOwner.DistTo(localPlayer.Transform.position); distance.Distance = botOwner.DistTo(localPlayer.Transform.position);
distance.BotType = botOwner.Profile.GetRole(); distance.BotType = botOwner.Profile.GetRole();
distance.Side = botOwner.Side;
distance.BotDifficulty = botOwner.Profile.GetDifficulty(); distance.BotDifficulty = botOwner.Profile.GetDifficulty();
zoneData.Distance.Add(distance); zoneData.Distance.Add(distance);
} }
@ -155,7 +156,7 @@ namespace astealz.BotMonitor
{ {
foreach (var element in keyValue.Value.Distance) foreach (var element in keyValue.Value.Distance)
{ {
stringBuilder.AppendLine($" > [{element.Distance.ToString("F1")}m] [{element.BotType.ToStr()}][{element.BotDifficulty.ToStr()}] '{element.BotName.TransliterateThis()}'"); stringBuilder.AppendLine($" > [{element.Distance.ToString("F1")}m] [{element.BotType.ToStr()}][{element.BotDifficulty.ToStr()}] [{element.Side}] '{element.BotName.TransliterateThis()}'");
} }
} }
} }
@ -192,6 +193,7 @@ namespace astealz.BotMonitor
public string BotName { get; set; } public string BotName { get; set; }
public WildSpawnType BotType { get; set; } public WildSpawnType BotType { get; set; }
public BotDifficulty BotDifficulty { get; set; } public BotDifficulty BotDifficulty { get; set; }
public EPlayerSide Side { get; set; }
public float Distance { get; set; } public float Distance { get; set; }
public DistanceData() public DistanceData()

Binary file not shown.

Binary file not shown.