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);
}
}