#pragma semicolon 1
#include <sourcemod>
#include <zombiereloaded>
#define PLUGIN_VERSION "1.0.0"
public Plugin:myinfo =
{
name = "Test",
author = "FrozDark",
description = "",
version = PLUGIN_VERSION,
url = "www.hlmod.ru"
}
public OnPluginStart()
{
}
public Action:ZR_OnClientInfect(&client, &attacker, &bool:motherInfect, &bool:respawnOverride, &bool:respawn)
{
if GetTeamClientCount(2) + GetTeamClientCount(3) == 1)
{
return Plugin_Handled;
}
return Plugin_Continue;
}