From de8b4645a1d602eeb2d5c7dd5963e2c1510fc17e Mon Sep 17 00:00:00 2001 From: jenz Date: Sat, 14 Mar 2026 13:38:09 +0100 Subject: [PATCH] instead of putting all four autism bots on a team directly its done over playcount consideration --- AutismBotIngame/scripting/autism_bot_info.sp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/AutismBotIngame/scripting/autism_bot_info.sp b/AutismBotIngame/scripting/autism_bot_info.sp index 5fad164..9d6162c 100755 --- a/AutismBotIngame/scripting/autism_bot_info.sp +++ b/AutismBotIngame/scripting/autism_bot_info.sp @@ -589,6 +589,18 @@ public Action recursive_pressing(Handle timer, any data) { 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); continue; }