I don't understand this part of the manual fully.
Quote:

If many instances of the same function are running, which is normally the case with entity actions, each instance uses its own independent set of local variables.



For the code below, if I create 10 entities with the action Bot, would each entity have its own copy of botcount? Or do all 10 share just 1 botcount?
Code:
var botcount = 0;
function BotUpdate()
{
...
botcount = 0;
if (vec_dist(my.x, you.x) < 200)
{
botcount += 1;
}
}
action Bot
{
...
}