Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2015
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.57 KB | None | 0 0
  1. using System.Linq;
  2. using LeagueSharp.Common;
  3. using LeagueSharp;
  4. using PRADA_Vayne.MyUtils;
  5. using Orbwalker = PRADA_Vayne.MyUtils.MyOrbwalker;
  6.  
  7. namespace PRADA_Vayne.MyLogic.R
  8. {
  9.     public static partial class Events
  10.     {
  11.         public static void BeforeAttack(Orbwalker.BeforeAttackEventArgs args)
  12.             {
  13.                 if (Program.Orbwalker.ActiveMode == MyOrbwalker.OrbwalkingMode.Combo)
  14.                 {
  15.                     Game.PrintChat("Combo active, fuck aa boys.");
  16.                     args.Process = false;
  17.                 }
  18.             }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement