Jump to content

Donkomon

Members
  • Posts

    17
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Donkomon's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. just turn it off, its possible? without unnecessary code.
  2. Hello, is it possible to remove wManager.Wow.Bot.States? like wManager.Wow.Bot.States.Resurrect wManager.Wow.Bot.States.Looting
  3. you didnt understand <QuestsSorted> <QuestsSorted Action="RunCode" NameClass="any code" /> <- during the execution of this line, dont work any Bot.States. I need them to work. </QuestsSorted>
  4. During the execution <QuestsSorted Action="RunCode" NameClass="CustomGrind;" />, all states dont work(like loot or death). How can I fix this?
  5. I already tried it. My state, after adding, the text should be spammed. But there is nothing public class TestState : robotManager.FiniteStateMachine.State { public override string DisplayName { get { return "TestState"; } } public override int Priority { get { return priority; } set { priority = value; } } private int priority; public override bool NeedToRun { get { if (!Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause || Conditions.IsAttackedAndCannotIgnore) return false; return true; } } public override List<robotManager.FiniteStateMachine.State> NextStates { get { return new List<robotManager.FiniteStateMachine.State>(); } } public override List<robotManager.FiniteStateMachine.State> BeforeStates { get { return new List<robotManager.FiniteStateMachine.State>(); } } public override void Run() { Logging.Write("TestState", Logging.LogType.Normal, System.Drawing.Color.BlueViolet); } }
  6. there is no information how to add a custom State.
  7. Hello, сan you show a working example of adding a new wManager.Wow.Bot.States? Quester bot via .cs file Can you also add functions to the bot? Me.SubZoneId == 111 ItemsManager.UseItem() - by WoWItem, not entry Item.UseContainerItem() WoWGameObject.InteractDistance WoWGameObject.IsGoodInteractDistance Me.GetAllAuras().Any(a => (a.Spell.Mechanic == WoWSpellMechanic.Stunned || a.Spell.Mechanic == WoWSpellMechanic.Fleeing || a.Spell.Mechanic == WoWSpellMechanic.Asleep || a.Spell.Mechanic == WoWSpellMechanic.Charmed) && a.TimeLeft.TotalSeconds >= 2)) and fix this wManager.Wow.Helpers.Bag.PickupContainerItem - just does not work. wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWith(WoWGameObject) - goes to the object and does not interact, with npc works fine.
  8. Can you add any working example? My code either produces errors or the state does nothing. Can you also add functions to the bot? Me.SubZoneId == 111 ItemsManager.UseItem() - by WoWItem, not entry Item.UseContainerItem WoWGameObject.InteractDistance WoWGameObject.IsGoodInteractDistance Me.GetAllAuras().Any(a => (a.Spell.Mechanic == WoWSpellMechanic.Stunned || a.Spell.Mechanic == WoWSpellMechanic.Fleeing || a.Spell.Mechanic == WoWSpellMechanic.Asleep || a.Spell.Mechanic == WoWSpellMechanic.Charmed) && a.IsActive && a.TimeLeft.TotalSeconds >= 2)) and fix this wManager.Wow.Helpers.Bag.PickupContainerItem - just does not work. wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWith(WoWGameObject) - goes to the object and does not interact, with npc works fine.
  9. Hello, how can I add new wManager.Wow.Bot.States to the quest profile?
  10. After loot nps is added to the blacklist, can this be set? And there is one more question. Can I pause the activity of the bot (for example, quest profile) so that the plugin executes its code and turn it back on again.
  11. Hi, how can I add npc to blacklist on a pull, combat or loot? This code only gives ignore pull. wManager.wManagerSetting.AddBlackListNpcEntry(111, true); Like HB code Blacklist.Add(Me.CurrentTarget, BlacklistFlags.Combat, TimeSpan.FromSeconds(120)) Blacklist.Add(Me.CurrentTarget, BlacklistFlags.Loot, TimeSpan.FromSeconds(120))
  12. I know, I just gave an example. I wanted to add pieces of code to separate files and use them in profiles, <Script> is not convenient to use. + when using <Script>, bot often freezes
  13. the program hangs during the execution of the script, until it executes. 17 фев 2018 07H51.log.html
  14. thanks, but this is a very uncomfortable way. better to use <Script> public class Declaration { public static uint Zone; } </Script> Is it possible to implement custom "wManager.Wow.Class.QuestAction" in a bot? like <QuestsSorted Action="InteractWith" MobId="123" /> <QuestsSorted Action="MoveTo" X="111" Y="111" Z="111" />
  15. Same problem, with custom scripts. if you put the bot on pause/stop then it continues to work until you kill the bot process.
×
×
  • Create New...