示例#1
0
 static void SetSpells()
 {
     Q = new EloBuddy.SDK.Spell.Skillshot(EloBuddy.SpellSlot.Q, 900, EloBuddy.SDK.Enumerations.SkillShotType.Linear, 250, 1700, 50);
     W = new EloBuddy.SDK.Spell.Targeted(EloBuddy.SpellSlot.W, 600);
     E = new EloBuddy.SDK.Spell.Targeted(EloBuddy.SpellSlot.E, 600);
     R = new EloBuddy.SDK.Spell.Active(EloBuddy.SpellSlot.R);
 }
示例#2
0
 static void SetSpells()
 {
     Q = new EloBuddy.SDK.Spell.Skillshot(EloBuddy.SpellSlot.Q, 900, EloBuddy.SDK.Enumerations.SkillShotType.Linear, 250, 1700, 50);
     if (HasRyzeRBuff)
     {
         Q.AllowedCollisionCount = int.MaxValue;
     }
     W = new EloBuddy.SDK.Spell.Targeted(EloBuddy.SpellSlot.W, 600);
     E = new EloBuddy.SDK.Spell.Targeted(EloBuddy.SpellSlot.E, 600);
     R = new EloBuddy.SDK.Spell.Active(EloBuddy.SpellSlot.R);
 }
示例#3
0
        public void SetTargetted(float delay, float speed, Vector3 from = new Vector3(), Vector3 rangeCheckFrom = new Vector3())
        {
            From           = from;
            RangeCheckFrom = rangeCheckFrom;

            IsTargeted     = true;
            IsSkillshot    = false;
            IsChargedSpell = false;

            charge    = null;
            skillshot = null;

            targeted = new EloBuddy.SDK.Spell.Targeted(Slot, (uint)_range);
        }
示例#4
0
 static void SetSpells()
 {
     Q = new EloBuddy.SDK.Spell.Skillshot(EloBuddy.SpellSlot.Q, 900, EloBuddy.SDK.Enumerations.SkillShotType.Linear, 250, 1700, 50);
     W = new EloBuddy.SDK.Spell.Targeted(EloBuddy.SpellSlot.W, 600);
     E = new EloBuddy.SDK.Spell.Targeted(EloBuddy.SpellSlot.E, 600);
     R = new EloBuddy.SDK.Spell.Active(EloBuddy.SpellSlot.R);
 }