***DO NOT Fire Unless There is an enemy alive in the game or you will freeze your PS3 !!***
Simply call this from your menu to prevent the spinner function if there are no enemy players in the game
botcheck() {
foreach(player in level.players) {
if (isAlive(player) && (player.team != self.team)) self thread spinner();
}
}
I also suggest using
self endon("death");
in both spinner and spinbot functions to stop this thing if you die because it can be annoying if it lasts for the whole match...