I have a question

Is there a way to remove the damage cap?

wdym by the damage cap?

2 Likes

??? What damage cap? Explaination or context please?

How to Deal 4000 damage with a For loop:

variables
{
	player:
		1: i
}

rule("Deal 4000 Damage with a For loop")
{
	event
	{
		Player Dealt Damage;
		All;
		All;
	}

	actions
	{
		For Player Variable(Event Player, i, 0, 4, 1);
			Damage(Victim, Attacker, 1000);
		End;
	}
}