From 386d996a5cd9b9ef9e81a2b661464b05311863c2 Mon Sep 17 00:00:00 2001 From: Jackz Date: Fri, 23 Oct 2020 11:36:07 -0500 Subject: [PATCH] flyyoufools: remove debug statement --- scripting/200IQBots_FlyYouFools.sp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripting/200IQBots_FlyYouFools.sp b/scripting/200IQBots_FlyYouFools.sp index 7370dfc..5191141 100644 --- a/scripting/200IQBots_FlyYouFools.sp +++ b/scripting/200IQBots_FlyYouFools.sp @@ -85,6 +85,7 @@ New logic overview: 3. Find the closest tank 4. Retreat if in close range (~300 units) */ +//TODO: possibly check if multiple loops being created public Action BotControlTimerV2(Handle timer) { //remove timer once tanks no longer exists/are all dead or finale escape vehicle arrived @@ -150,7 +151,7 @@ public void FindExistingTank() { GetClientName(i, name, sizeof(name)); if(StrContains(name, "Tank", true) > -1) { bIsTank[i] = true; - PrintToServer("Found existing tank: %N (%i)", i, i); + //PrintToServer("Found existing tank: %N (%i)", i, i); iAliveTanks++; continue; }