Ejemplo n.º 1
0
 private static void OnBuffUpdateCount(Obj_AI_Base sender, Obj_AI_BaseBuffUpdateEventArgs Args)
 {
     if (sender.IsMe && Args.Buff.Name == "blindmonkpassive_cosmetic")
     {
         PassiveStack = 1;
     }
 }
Ejemplo n.º 2
0
 private static void Obj_AI_Base_OnBuffUpdate(Obj_AI_Base sender, Obj_AI_BaseBuffUpdateEventArgs args)
 {
     if (!sender.IsMe || args.Buff.DisplayName != "YasuoDashScalar")
     {
         return;
     }
     Variables.cDash = 2;
 }
Ejemplo n.º 3
0
 private static void OnBuffUpdateCount(Obj_AI_Base sender, Obj_AI_BaseBuffUpdateEventArgs args)
 {
     if (!sender.IsMe)
     {
         return;
     }
     if (args.Buff.Name != "RivenTriCleave")
     {
         return;
     }
     ++Stacks;
     if (Stacks == 2)
     {
         Q.Width = WindSlash.HasRBuff ? 200 : 150;
     }
 }
Ejemplo n.º 4
0
        private static void Obj_AI_Base_OnBuffUpdate(Obj_AI_Base sender, Obj_AI_BaseBuffUpdateEventArgs args)
        {
            if (!sender.IsMe)
                return;

            //Chat.Print(args.Buff.DisplayName, System.Drawing.Color.Orange);
        }
Ejemplo n.º 5
0
 private static void Obj_AI_Base_OnBuffUpdate(Obj_AI_Base sender, Obj_AI_BaseBuffUpdateEventArgs args)
 {
     if (!sender.IsMe || args.Buff.DisplayName != "YasuoDashScalar")
     {
         return;
     }
     Variables.cDash = 2;
 }
Ejemplo n.º 6
0
 static void OnBuffUpdate(Obj_AI_Base sender, Obj_AI_BaseBuffUpdateEventArgs buff)
 {
     // if (sender.IsMe)
     Chat.Print("Buff Updated: " + buff.Buff.Name);
 }
Ejemplo n.º 7
0
 static void OnBuffUpdate(Obj_AI_Base sender, Obj_AI_BaseBuffUpdateEventArgs buff)
 {
    // if (sender.IsMe)
         Chat.Print("Buff Updated: " + buff.Buff.Name);
 }
Ejemplo n.º 8
0
 static void Obj_AI_Base_OnBuffUpdate(Obj_AI_Base sender, Obj_AI_BaseBuffUpdateEventArgs buff)
 {
     if (Display.GetCheckBoxValue("OnBuffUpdateplayer") && sender.IsMe)
         Display.Printer(sender.BaseSkinName + "(" + sender.Name + ")" + " - OnBuffUpdate: " + buff.Buff.Name);
     if (Display.GetCheckBoxValue("OnBuffUpdatetarget") && !sender.IsMe && sender.Type == GameObjectType.AIHeroClient)
         Display.Printer(sender.BaseSkinName + "(" + sender.Name + ")" + " - OnBuffUpdate: " + buff.Buff.Name);
     if (Display.GetCheckBoxValue("OnBuffUpdateminion") && !sender.IsMe && sender.Type == GameObjectType.obj_AI_Minion && !sender.IsMonster)
         Display.Printer(sender.BaseSkinName + "(" + sender.Name + ")" + " - OnBuffUpdate: " + buff.Buff.Name);
     if (Display.GetCheckBoxValue("OnBuffUpdatemonster") && !sender.IsMe && sender.Type == GameObjectType.obj_AI_Minion && sender.IsMonster)
         Display.Printer(sender.BaseSkinName + "(" + sender.Name + ")" + " - OnBuffUpdate: " + buff.Buff.Name);
 }