Пример #1
0
        public OlafDrawingSpells(OlafMenu olafMenu, OlafSpells olafSpells)
        {
            this.olafMenu   = olafMenu;
            this.olafSpells = olafSpells;

            Drawing.OnDraw += Drawing_OnDraw;
        }
Пример #2
0
        public OlafDrawingSpells(OlafMenu olafMenu, OlafSpells olafSpells)
        {
            this.olafMenu = olafMenu;
            this.olafSpells = olafSpells;

            Drawing.OnDraw += Drawing_OnDraw;
        }
Пример #3
0
 public Olaf()
 {
     olafSpells           = new OlafSpells();
     olafMenu             = new OlafMenu(olafSpells, out olafOrbwalker);
     olafPotions          = new OlafPotions(olafMenu);
     olafCore             = new OlafCore(olafSpells, olafOrbwalker, olafMenu);
     olafLegacysAxeFinder = new OlafLegacysAxeFinder(olafMenu);
     olafDrawingSpells    = new OlafDrawingSpells(olafMenu, olafSpells);
     commonForceUltimate  = new CommonForceUltimate(olafMenu, olafSpells, olafOrbwalker);
     commonForceUltimate.ForceUltimate = olafCore.ForceUltimate;
 }
Пример #4
0
 public Olaf()
 {
     olafSpells = new OlafSpells();
     olafMenu = new OlafMenu(olafSpells, out olafOrbwalker);
     olafPotions = new OlafPotions(olafMenu);
     olafCore = new OlafCore(olafSpells, olafOrbwalker, olafMenu);
     olafLegacysAxeFinder = new OlafLegacysAxeFinder(olafMenu);
     olafDrawingSpells = new OlafDrawingSpells(olafMenu, olafSpells);
     commonForceUltimate = new CommonForceUltimate(olafMenu, olafSpells, olafOrbwalker);
     commonForceUltimate.ForceUltimate = olafCore.ForceUltimate;
 }
Пример #5
0
        public OlafMenu(OlafSpells olafSpells, out Orbwalking.Orbwalker orbwalker)
        {
            MainMenu = new Menu("【红叶推介】Korean 奥拉夫", "mainmenu", true);
            this.olafSpells = olafSpells;

            AddTargetSelector();
            AddOrbwalker(out orbwalker);
            ComboMenu();
            HarassMenu();
            LaneClearMenu();
            LastHitMenu();
            MiscMenu();
            DrawingMenu();

            MainMenu.AddToMainMenu();

            GetInitialSpellValues();
        }
Пример #6
0
        public OlafMenu(OlafSpells olafSpells, out Orbwalking.Orbwalker orbwalker)
        {
            MainMenu        = new Menu("Korean Olaf", "mainmenu", true);
            this.olafSpells = olafSpells;

            AddTargetSelector();
            AddOrbwalker(out orbwalker);
            ComboMenu();
            HarassMenu();
            LaneClearMenu();
            LastHitMenu();
            MiscMenu();
            DrawingMenu();

            MainMenu.AddToMainMenu();

            GetInitialSpellValues();
        }
Пример #7
0
        public OlafCore(OlafSpells olafSpells, Orbwalking.Orbwalker olafOrbwalker, OlafMenu olafMenu)
        {
            q = olafSpells.Q;
            w = olafSpells.W;
            e = olafSpells.E;
            r = olafSpells.R;

            player             = ObjectManager.Player;
            this.olafOrbwalker = olafOrbwalker;
            this.olafMenu      = olafMenu;

            actionQueue     = new ActionQueue();
            harasQueue      = new ActionQueueList();
            comboQueue      = new ActionQueueList();
            laneClearQueue  = new ActionQueueList();
            autoAttackCheck = new ActionQueueCheckAutoAttack();
            olafItems       = new OlafOffensiveItems(olafMenu);

            Game.OnUpdate += Game_OnUpdate;
        }
Пример #8
0
        public OlafCore(OlafSpells olafSpells, Orbwalking.Orbwalker olafOrbwalker, OlafMenu olafMenu)
        {
            q = olafSpells.Q;
            w = olafSpells.W;
            e = olafSpells.E;
            r = olafSpells.R;

            player = ObjectManager.Player;
            this.olafOrbwalker = olafOrbwalker;
            this.olafMenu = olafMenu;

            actionQueue = new ActionQueue();
            harasQueue = new ActionQueueList();
            comboQueue = new ActionQueueList();
            laneClearQueue = new ActionQueueList();
            autoAttackCheck = new ActionQueueCheckAutoAttack();
            olafItems = new OlafOffensiveItems(olafMenu);

            Game.OnUpdate += Game_OnUpdate;
        }