Gast Melden Geschrieben 18. Juni 2005 Hi! Es gibt einen Fix für die Autoteambalance die verhindert dass ein Squadleader oder Commander automatisch das Team wechseln muss. Vorsicht! EA könnte auch Server mit dieser Modifikation aus der Serverliste bannen. Lest dazu das hier mal durch: http://www.bf-games.net/forum/index.php?showtopic=19631 Falls ihr die BF2CC Adminscripts installiert habt: To prevent the commander and the squadleaders from beeing affected by the autobalance, add the following two lines to the file "admin/standard_admin/autobalance.py". find the line (34): if g_debug: print 'handling player death autobalance' after, add: if p.isCommander(): return None if p.isSquadLeader(): return None hopefully ea has no objections Falls ihr die BF2CC Adminscripts nicht installiert habt: without the BF2CC Admin Scripts its line 37: if not bf2.serverSettings.getAutoBalanceTeam(): return None *Edit* Und falls nur Spieler automatisch das Team wechseln sollen die alleine Spielen und keinem Squad angehören sollte das hier funktionieren: Yes...I'm pretty sure this worked for me tonight on my server - Nobody on my squad ever got autoswitched. Here is the start of the onPlayerDeath handler. p.getSquadId() returns 0 if they are not in a squad. def onPlayerDeath(p, vehicle): if not bf2.serverSettings.getAutoBalanceTeam(): return None if p.isCommander(): return None if p.isSquadLeader(): return None if p.getSquadId() > 0: return None # dont use autobalance when its suicide/changes team