當前位置: 首頁>>代碼示例>>C#>>正文


C# Item.Buy方法代碼示例

本文整理匯總了C#中System.Item.Buy方法的典型用法代碼示例。如果您正苦於以下問題:C# Item.Buy方法的具體用法?C# Item.Buy怎麽用?C# Item.Buy使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Item的用法示例。


在下文中一共展示了Item.Buy方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Game_OnUpdate

        private void Game_OnUpdate(EventArgs args)
        {
            if (!Program.LagFree(0) || Player.IsRecalling() || Player.IsDead)
                return;

            foreach (var obj in HiddenObjList)
            {
                if (obj.endTime < Game.Time)
                {
                    HiddenObjList.Remove(obj);
                    return;
                }
            }

            if (getCheckBoxItem("autoBuy") && Player.InFountain() && !FarsightOrb.IsOwned() && Player.Level >= 9)
            {
                var itm = new Item(ItemId.Farsight_Alteration);
                itm.Buy();
            }

            if (rengar && Player.HasBuff("rengarralertsound"))
                CastVisionWards(Player.ServerPosition);

            if (Vayne != null && Vayne.IsValidTarget(1000) && Vayne.HasBuff("vaynetumblefade"))
                CastVisionWards(Vayne.ServerPosition);

            AutoWardLogic();
        }
開發者ID:Xelamats,項目名稱:PortAIO,代碼行數:28,代碼來源:OKTWward.cs

示例2: OnUpdate

        /// <summary>
        ///     TODO The on update.
        /// </summary>
        /// <param name="args">
        ///     TODO The args.
        /// </param>
        private void OnUpdate(EventArgs args)
        {
            if (PortAIO.OrbwalkerManager.isComboActive)
            {
                OnCombo();
            }

            if (PortAIO.OrbwalkerManager.isHarassActive)
            {
                OnHarass();
            }

            if (PortAIO.OrbwalkerManager.isLastHitActive)
            {
                OnLastHit();
            }

            if (PortAIO.OrbwalkerManager.isLaneClearActive)
            {
                OnLaneClear();
            }

            this.HandleSentinels();
            this.KillstealQ();

            var enemies = HeroManager.Enemies.Count(x => ObjectManager.Player.LSDistance(x) <= spells[SpellSlot.E].Range);

            if (getCheckBoxItem(comboMenu, "eDeath") && enemies > 2 && ObjectManager.Player.HealthPercent <= getSliderItem(comboMenu, "eHealth") && spells[SpellSlot.E].IsReady())
            {
                var target = HeroManager.Enemies.Where(x => spells[SpellSlot.E].IsInRange(x) && x.HasBuff("KalistaExpungeMarker")).OrderBy(x => Extensions.GetRendDamage(x)).FirstOrDefault();
                if (target != null)
                {
                    var stacks = Extensions.GetRendDamage(target);
                    var damage = Math.Ceiling(stacks * 100 / target.GetTotalHealth());
                    if (damage >= getSliderItem(comboMenu, "eDeathC") && Environment.TickCount - spells[SpellSlot.E].LastCastAttemptT > 500)
                    {
                        spells[SpellSlot.E].Cast();
                        spells[SpellSlot.E].LastCastAttemptT = Environment.TickCount;
                    }
                }
            }

            if (getCheckBoxItem(miscMenu, "useJungleSteal"))
            {
                this.DoMobSteal();
            }

            if (getKeyBindItem(miscMenu, "fleeKey") || PortAIO.OrbwalkerManager.isFleeActive)
            {
                this.OnFlee();
            }

            var item = new Item(ItemId.Farsight_Alteration);
            if (getCheckBoxItem(miscMenu, "autoTrinket") && ObjectManager.Player.Level >= 9 && ObjectManager.Player.InShop() && !Items.HasItem((int)ItemId.Farsight_Alteration))
            {
                item.Buy();
            }

            this.HandleBalista();
        }
開發者ID:yashine59fr,項目名稱:PortAIO-1,代碼行數:66,代碼來源:Kalista.cs

示例3: Buy

 private static void Buy(CItem item)
 {
     Item itm = new Item(item.ID);
     itm.Buy();
 }
開發者ID:TristeMyth,項目名稱:Triste,代碼行數:5,代碼來源:Items.cs


注:本文中的System.Item.Buy方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。