Author Topic: Too many bots interfere with ghosting  (Read 291 times)

I am having an RPG and people leave due to ghosting too long (Bots) and I am wondering if there is a way to fix this other than deleting some.

Or, how it is possible to clear and reset bots when non-admins are on?

The ghosting priority is messed up. This is a problem with the game.

The ghosting priority is messed up. This is a problem with the game.
Dang, looks like I have to find a way.

I was thinking of this:
Code: [Select]
messageAll('',%this @ " has spawned, reseting bots in 15 seconds.");
if(%this.isAdmin)
{
serverCmdClearBots(%this);
$LevelUpResetBots = schedule(15000, 0, servercmdresetallbots, %this);
return;
}
%this.isAdmin = true;
serverCmdClearBots(%this);
%this.isAdmin = false;
$LevelUpResetBots = schedule(15000, 0, servercmdresetallbots, %this);