My goal is to apply an effect to the character that is being aimed at when using ability 1. I made the following rule to execute exactly that but no status is being applied to the hero test bot in the practice range. Is there something wrong there that I’m not comprehending or is it just Workshop being broken again?
rule("Sigma - Force Hold")
{
event
{
Ongoing - Each Player;
All;
Sigma;
}
conditions
{
Is Game In Progress == True;
Is Using Ability 1(Event Player) == True;
}
actions
{
Set Status(Ray Cast Hit Player(Eye Position(Event Player), Facing Direction Of(Event Player), All Players(All Teams), Event Player,
True), Event Player, Asleep, 9999);
}
}