本文整理汇总了C#中SteamBot.Bot.GetInventory方法的典型用法代码示例。如果您正苦于以下问题:C# Bot.GetInventory方法的具体用法?C# Bot.GetInventory怎么用?C# Bot.GetInventory使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SteamBot.Bot
的用法示例。
在下文中一共展示了Bot.GetInventory方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: SmeltRefined
public static void SmeltRefined(Bot bot)
{
List<ulong> refs = new List<ulong>();
bot.GetInventory();
Inventory.Item[] items = bot.MyInventory.Items;
for (int i = 0; i < items.Length; i++)
{
Inventory.Item item = items[i];
if (refs.Count == 1)
{
break;
}
if (item.Defindex == 5002 && !refs.Contains(item.Id))
{
refs.Add(item.Id);
}
}
if (refs.Count == 1)
{
Crafting.CraftItems(bot, ECraftingRecipe.SmeltRefined, refs.ToArray());
}
}
示例2: CraftReclaimed
public static void CraftReclaimed(Bot bot)
{
List<ulong> scraps = new List<ulong>();
bot.GetInventory();
Inventory.Item[] items = bot.MyInventory.Items;
for (int i = 0; i < items.Length; i++)
{
Inventory.Item item = items[i];
if (scraps.Count == 3)
{
break;
}
if (item.Defindex == 5000 && !scraps.Contains(item.Id))
{
scraps.Add(item.Id);
}
}
if (scraps.Count == 3)
{
Crafting.CraftItems(bot, ECraftingRecipe.CombineScrap, scraps.ToArray());
}
}