Press Button (Interact) Does Not Work

Title. The command Press Button doesn’t seem to work if the button called is Interact.

Example of a rule with this can be found here

rule(“Rule 146”)
{
event
{
Ongoing - Each Player;
All;
Sombra;
}

conditions
{
	Is Using Ability 2(Event Player) == True;
}

actions
{
	Wait(10, Abort When False);
	Press Button(Event Player, Interact);
	Small Message(All Players(All Teams), Custom String("Maximum beacon duration reached", Null, Null, Null));
	Press Button(Event Player, Interact);
	Press Button(Event Player, Interact);
	Press Button(Event Player, Interact);
	Press Button(Event Player, Interact);
	Press Button(Event Player, Interact);
}

}

yeap, it’s not working…
change it to condition variable

Is Using Ability 2(Event Player) == True;
Wait(10, Abort When False);
set a=1

if a=1 then somthing

1 Like

I just want TL to have a max duration and the only way to do that (without having her being forced to beacon to its position) is via pressing the interact key.