I can confirm that. I just logged in and played a Instant Action match. After parsing the log, I showed up as a human. Of course, I went back to being a bot as soon as I parsed an offline log.
If I was to add an If statement to check for my name, something simple like,
If $plr_name == "MyName" Then $plr_bot = 0, where exactly do I put it?
I assume it would go in this bit of code from logutevents.php, but I'm not sure how to work it in there assuming it's even the right spot.
Code: Select all
case "isabot": // 0 False
{
if ($i < 5)
break;
$plr = check_player($data[3]);
if ($plr >=0 && strtolower($data[4]) == "true")
$player[$plr]->bot = true;
break;
}