Exemplo n.º 1
0
        public bool UseMoveAbility(BlinkAbility ability)
        {
            if (!this.CanBeCasted(ability, false))
            {
                return(false);
            }

            return(ability.UseAbility(this.TargetManager, this.comboSleeper, Game.MousePosition));
        }
Exemplo n.º 2
0
        public bool UseAbility(BlinkAbility ability, float minUseRange, float blinkToEnemyRange)
        {
            if (!this.CanBeCasted(ability))
            {
                return(false);
            }

            return(ability.UseAbility(this.TargetManager, this.comboSleeper, minUseRange, blinkToEnemyRange));
        }
Exemplo n.º 3
0
        public bool UseAbility(BlinkAbility ability, Vector3 position)
        {
            if (!this.CanBeCasted(ability))
            {
                return(false);
            }

            return(ability.UseAbility(this.TargetManager, this.comboSleeper, position));
        }
 // Token: 0x06000A0D RID: 2573 RVA: 0x00007063 File Offset: 0x00005263
 public bool UseAbility(BlinkAbility ability, Vector3 position)
 {
     return(this.CanBeCasted(ability, true, true, true, true) && ability.UseAbility(this.TargetManager, this.comboSleeper, position));
 }