#include <cstrike>
#include <sdktools_functions>
public OnPluginStart() HookEvent("player_death", Event);
public Action:Event(Handle:event, const String:name[], bool:dontBroadcast)
{
new ct = GetTeamClientCount(3), t = GetTeamClientCount(2);
if((t == 2 && ct == 0) || (t == 0 && ct == 2))
{
CS_TerminateRound(0.1, CSRoundEnd_Draw);
}
}