Self Kill Check

Just wondering if anyone knows a good way to check if you perform a check for a self kill, Something I need for a Custom I’m creating

1 Like

This should work.

rule("Rule 1")
{
	event
	{
		Player Died;
		All;
		All;
	}

	conditions
	{
		Victim == Attacker;
	}

	actions
	{
		Small Message(All Players(All Teams), Custom String("Self Killed"));
	}
}

Action do not necessarily have to copy this.