コード例 #1
0
ファイル: Maokai.cs プロジェクト: qazji3/LeagueSharp-7
 private void OnPossibleToInterrupt(Obj_AI_Hero sender, Interrupter2.InterruptableTargetEventArgs args)
 {
     if (config.Item("useQint", true).GetValue <bool>())
     {
         if (Qint.CanCast(sender))
         {
             Q.Cast(sender);
         }
     }
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: sadnecc/CHportcn
 private void OnPossibleToInterrupt(AIHeroClient sender, Interrupter2.InterruptableTargetEventArgs args)
 {
     if (getCheckBoxItem(miscMenu, "useQint"))
     {
         if (Qint.CanCast(sender))
         {
             Q.Cast(sender, getCheckBoxItem(config, "packets"));
         }
     }
 }