public static void Sphere() { if (CanUse("item_sphere") && MenuVar.ItemArcaneBootsUse && Utils.SleepCheck("AutoUse.item_sphere")) { MyHeroInfo.GetItem("item_sphere").UseAbility(false); Utils.Sleep(500, "AutoUse.item_sphere"); } }
public static void Arcane_boots() { if (CanUse("item_arcane_boots") && (double)Var.Me.Mana / Var.Me.MaximumMana < MenuVar.PercentArcaneUse && MenuVar.ItemArcaneBootsUse && Utils.SleepCheck("AutoUse.item_arcane_boots")) { MyHeroInfo.GetItem("item_arcane_boots").UseAbility(false); Utils.Sleep(500, "AutoUse.item_arcane_boots"); } }
public static void Bottle() { if (CanUse("item_bottle") && Var.Me.Modifiers.Any(x => x.Name == "modifier_fountain_aura_buff") && MenuVar.ItemBottleUse && Utils.SleepCheck("AutoUse.item_bottle")) { MyHeroInfo.GetItem("item_bottle").UseAbility(Var.Me, false); Utils.Sleep(500, "AutoUse.item_bottle"); } }
public static void Cheese() { if (CanUse("item_cheese") && (double)Var.Me.Health / Var.Me.MaximumHealth < MenuVar.PercentCheeseUse && MenuVar.ItemCheeseUse && Utils.SleepCheck("AutoUse.item_cheese")) { MyHeroInfo.GetItem("item_cheese").UseAbility(false); Utils.Sleep(500, "AutoUse.item_cheese"); } }
public static void Phase_boots() { if (CanUse("item_phase_boots") && Var.Me.NetworkActivity == NetworkActivity.Move && MenuVar.ItemPhaseBootsUse && Utils.SleepCheck("AutoUse.item_phase_boots")) { MyHeroInfo.GetItem("item_phase_boots").UseAbility(false); Utils.Sleep(500, "AutoUse.item_phase_boots"); } }
public static void Magic_wand() { if (CanUse("item_magic_wand") && (double)Var.Me.Health / Var.Me.MaximumHealth < MenuVar.PercentStickUse && MenuVar.ItemMagicWandUse && Utils.SleepCheck("AutoUse.item_magic_wand")) { if (MyHeroInfo.GetItem("item_magic_wand").CurrentCharges > 0) { MyHeroInfo.GetItem("item_magic_wand").UseAbility(false); } Utils.Sleep(500, "AutoUse.item_magic_wand"); } }