mirror of
https://github.com/milimoe/FunGame-Testing.git
synced 2025-12-05 16:16:36 +00:00
test
This commit is contained in:
parent
27ebde5904
commit
0e7f3004ba
@ -139,6 +139,33 @@ while (true)
|
||||
}
|
||||
else Console.WriteLine(controller.ExchangeCredits(1));
|
||||
}
|
||||
else if (msg.StartsWith("winrate"))
|
||||
{
|
||||
msg = msg.Replace("winrate", "");
|
||||
if (int.TryParse(msg, out int value))
|
||||
{
|
||||
Console.WriteLine(controller.GetWinrateRank(true));
|
||||
}
|
||||
else Console.WriteLine(controller.GetWinrateRank(false));
|
||||
}
|
||||
else if (msg.StartsWith("csj"))
|
||||
{
|
||||
msg = msg.Replace("csj", "");
|
||||
if (int.TryParse(msg, out int value))
|
||||
{
|
||||
Console.WriteLine(controller.GetStats(value));
|
||||
}
|
||||
else Console.WriteLine(controller.GetStats(1));
|
||||
}
|
||||
else if (msg.StartsWith("ctdsj"))
|
||||
{
|
||||
msg = msg.Replace("ctdsj", "");
|
||||
if (int.TryParse(msg, out int value))
|
||||
{
|
||||
Console.WriteLine(controller.GetTeamStats(value));
|
||||
}
|
||||
else Console.WriteLine(controller.GetTeamStats(1));
|
||||
}
|
||||
else if (msg == "jscs")
|
||||
{
|
||||
Console.WriteLine(controller.RandomCustomCharacter(1));
|
||||
|
||||
@ -56,7 +56,7 @@ namespace Milimoe.FunGame.Testing.Tests
|
||||
}
|
||||
}
|
||||
|
||||
Console.WriteLine("\r\n\r\nBO5系列赛,赛制:团队死斗模式,目标30人头或歼灭所有队员;死亡次数越多,复活时间越快。\r\n\r\n");
|
||||
Console.WriteLine("\r\n\r\nBO5系列赛,赛制:团队死斗模式,目标30人头或歼灭所有队员;死亡次数越多,复活时间越快。\r\n所有的数据统计格式均为:[Rating] Name K/A/D\r\n\r\n");
|
||||
|
||||
Dictionary<HashSet<User>, int> teamScore = new()
|
||||
{
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user