bots watch for players tagged

This commit is contained in:
guy
2021-06-01 14:18:28 -06:00
parent 03bae8a2e4
commit 5e3f787f54
2 changed files with 12 additions and 1 deletions
+11
View File
@@ -11,6 +11,17 @@ init()
return;
level thread onConnected();
level thread onframe();
}
onframe()
{
for(;;)
{
wait 0.05;
if(getDvarInt("developer")) print("time:" + getTime() + " child0:" + getVarUsage(0) + " child1:" + getVarUsage(1) + " notifycount:" + getVarUsage(2));
}
}
onConnected()