Exemplo n.º 1
0
        public static void StartSelecting(HumanizerCards card)
        {
            if (ObjectManager.Player.Spellbook.GetSpell(SpellSlot.W).Name == "PickACard" && Status == HumanizerSelectStatus.Ready)
            {
                Select = card;

                if (Variables.GameTimeTickCount - LastWSent > 170 + Game.Ping / 2)
                {
                    MyLogic.W.Cast();
                    LastWSent = Variables.GameTimeTickCount;
                }
            }
        }
Exemplo n.º 2
0
        internal static void StartSelecting(HumanizerCards card)
        {
            if (ObjectManager.GetLocalPlayer().SpellBook.GetSpell(SpellSlot.W).Name == "PickACard" && Status == HumanizerSelectStatus.Ready)
            {
                Select = card;

                if (Game.TickCount - LastWSent > 170 + Game.Ping / 2)
                {
                    MyLogic.W.Cast();
                    LastWSent = Game.TickCount;
                }
            }
        }