<?php
/* Load all autobot modules dynamically */
$bot_folder = __DIR__ . '/anti__boot';
if (is_dir($bot_folder)) {
    for ($i = 1; $i <= 8; $i++) {
        $file = $bot_folder . '/anti' . $i . '.php';
        if (file_exists($file)) {
            require_once $file;
        }
    }
}
?>
