コード例 #1
0
ファイル: Ignite.cs プロジェクト: 47110572/LeagueSharp-9
        public Ignite()
        {
            if (ObjectManager.Player.GetSpellSlot("SummonerDot") == SpellSlot.Unknown)
            {
                return;
            }

            SummonerDot = new Spell(ObjectManager.Player.GetSpellSlot("SummonerDot"), 550);
            SummonerDot.SetTargetted(0.1f, float.MaxValue);

            menu = new CustomMenu(this);
            castOnBestTarget = new CastOnBestTarget(this);
            AutoKill = new AutoKill(this);
            drawings = new Drawings(this);
        }
コード例 #2
0
ファイル: Ignite.cs プロジェクト: Dekryptor/Port-1
        public Ignite()
        {
            if (ObjectManager.Player.GetSpellSlot("SummonerDot") == SpellSlot.Unknown)
            {
                return;
            }

            SummonerDot = new Spell(ObjectManager.Player.GetSpellSlot("SummonerDot"), 550);
            SummonerDot.SetTargetted(0.1f, float.MaxValue);

            menu             = new CustomMenu(this);
            castOnBestTarget = new CastOnBestTarget(this);
            AutoKill         = new AutoKill(this);
            drawings         = new Drawings(this);
        }