can i have a code pls thanks
It doesn’t work completely, trying to hit AI in Overwatch with Goomba Stomps is an utter pain to test…
Basically You need the attacker to be in the air, on the y component above the victim and in proxmity. Change the numbers until you get the right feels for the game mode
rule(“Victim being Hit from above”)
{
event
{
Ongoing - Each Player;
All;
All;
}
conditions
{
Subtract(Y Component Of(Position Of(Closest Player To(Position Of(Event Player), Opposite Team Of(Team Of(Event Player))))),
Y Component Of(Position Of(Event Player))) > 1;
Distance Between(Position Of(Event Player), Position Of(Closest Player To(Position Of(Event Player), Opposite Team Of(Team Of(
Event Player))))) <= 2;
Is In Air(Closest Player To(Position Of(Event Player), Opposite Team Of(Team Of(Event Player)))) == True;
}
actions
{
Kill(Event Player, Event Player);
}
}
Good luck