Beispiel #1
0
 public static void EQ(Obj_AI_Base target1, Obj_AI_Base target2, bool Enabled, bool dive)
 {
     if (ECast(target1, dive) && E.IsReady() && target1.CanDash())
     {
         if (Enabled && target2 != null && Q.IsReady() && target2.IsInRange(target1.EndPos(), 375))
         {
             Q.Cast(target2);
         }
     }
     if (Enabled && target2 != null && Q.IsReady() && user.IsDashing())
     {
         Q.Cast(target2);
     }
 }