Modify Capture Objective

Hi

Can I disable a Capture Point to prevent the advance of the game?

I don’t think you can pause capture point/payload progress directly. However, you can interact with players who are on the objective by killing them, teleporting them, or pushing them away.

variables
{
	global:
		0: playersOnObjective
}

rule("Kill Players On Objective")
{
	event
	{
		Ongoing - Global;
	}

	conditions
	{
		Global.playersOnObjective != All Players On Objective(All Teams);
	}

	actions
	{
		Global.playersOnObjective = All Players On Objective(All Teams);
		Kill(Global.playersOnObjective, Null);
	}
}
1 Like