instead of putting all four autism bots on a team directly its done over playcount consideration

This commit is contained in:
jenz 2026-03-14 13:38:09 +01:00
parent 5ad7d70018
commit de8b4645a1

View File

@ -589,6 +589,18 @@ public Action recursive_pressing(Handle timer, any data)
{ {
if (GetClientTeam(client) == 1 || GetClientTeam(client) == 0) if (GetClientTeam(client) == 1 || GetClientTeam(client) == 0)
{ {
if (specific_bot_player[client] == 2 && valid_ct_counter < 7)
{
continue;
}
if (specific_bot_player[client] == 3 && valid_ct_counter < 13)
{
continue;
}
if (specific_bot_player[client] == 4 && valid_ct_counter < 19)
{
continue;
}
ChangeClientTeam(client, 2); ChangeClientTeam(client, 2);
continue; continue;
} }