Пример #1
0
 private void AIBaseClientBuffLose(AIBaseClient sender, AIBaseClientBuffLoseEventArgs args)
 {
     if (args.Buff.Name == "VarusQLaunch" && (new[] { OrbwalkerMode.Combo, OrbwalkerMode.Harass }).Contains(Orbwalker.ActiveMode))
     {
         spells[Spells.Q].Range = 925;
     }
 }
Пример #2
0
 private static void OnBuffGain(AIBaseClient sender, AIBaseClientBuffLoseEventArgs args)
 {
     if (sender.IsMe)
     {
         AAPassive = Player.HasBuff("LucianPassiveBuff");
     }
 }
Пример #3
0
 private static void OnBuffLose(AIBaseClient sender, AIBaseClientBuffLoseEventArgs args)
 {
     if (!sender.IsMe)
     {
         return;
     }
     if (args.Buff.Name == "Meditate")
     {
         Orbwalker.ResetAutoAttackTimer();
         //Orbwalker.AttackState = true;
         //Orbwalker.MovementState = true;
     }
 }