コード例 #1
0
        public ModifierMonitor(Common common)
        {
            PartialMapHackMenu = common.MenuConfig.PartialMapHackMenu;

            Verification = common.Verification;

            SpiritBreakerCharge = common.SpiritBreakerCharge;
            LifeStealerInfest   = common.LifeStealerInfest;
            PhantomAssassinBlur = common.PhantomAssassinBlur;
            BloodseekerRupture  = common.BloodseekerRupture;

            ModifierManager.ModifierAdded += OnModifierAdded;
        }
コード例 #2
0
        public MenuConfig()
        {
            var rootMenu = Menu.MenuManager.CreateRootMenu("Divine.BeAware").SetTexture(@"Divine.BeAware.Resources.Textures.divinebeaware.png").SetFontColor(Color.Aqua);

            OverlayMenu        = new OverlayMenu(rootMenu);
            ShowMeMoreMenu     = new ShowMeMoreMenu(rootMenu);
            PartialMapHackMenu = new PartialMapHackMenu(rootMenu);

            FullyDisableSoundsItem = rootMenu.CreateSwitcher("Fully Disable Sounds", false);
            VolumeItem             = rootMenu.CreateSlider("Volume", 100, 0, 100);
            DefaultSoundItem       = rootMenu.CreateSwitcher("Default Sound", false).SetTooltip("All Sounds Becomes Default");
            LanguageItem           = rootMenu.CreateSelector("Language", new[] { "EN", "RU" });
        }
コード例 #3
0
        public ParticleMonitor(Common common)
        {
            PartialMapHackMenu = common.MenuConfig.PartialMapHackMenu;

            Verification = common.Verification;

            InvokerEMP = common.InvokerEMP;
            PudgeHook  = common.PudgeHook;
            AncientApparitionIceBlast = common.AncientApparitionIceBlast;
            WindrunnerPowershot       = common.WindrunnerPowershot;
            MiranaArrow = common.MiranaArrow;

            ParticleManager.ParticleAdded += OnParticleAdded;
        }
コード例 #4
0
        public UnitMonitor(Common common)
        {
            PartialMapHackMenu = common.MenuConfig.PartialMapHackMenu;

            Verification = common.Verification;

            MiranaArrow          = common.MiranaArrow;
            InvokerSunStrike     = common.InvokerSunStrike;
            KunkkaTorrent        = common.KunkkaTorrent;
            LeshracSplitEarth    = common.LeshracSplitEarth;
            LinaLightStrikeArray = common.LinaLightStrikeArray;

            //IllusionShow = common.IllusionShow;

            EntityManager.EntityAdded += OnEntityAdded;
        }