kill command is not stock in sggm 4.x. I thought br still made use of teams2 unless brenbot.dll was detected. That's what I remember when looking at br 1.53.
Edit
Guess not
# Use kill console command if SSGM 4 is installed, otherwise use team2 twice
if ( $brconfig::ssgm_version >= 4 )
{
RenRem::RenRemCMD ( "kill $player{id}" );
}
else
{
my $team = ( $player{side} eq "GDI" || $player{side} eq "All" ) ? 0 : 1;
RenRem::RenRemCMD( "team2 $player{id} $team" );
$team = ( $team == 0 ) ? 1 : 0;
RenRem::RenRemCMD( "team2 $player{id} $team" );
}
[Updated on: Thu, 24 July 2014 10:09]
Report message to a moderator