Jump to content

Droidz

Administrators
  • Posts

    12431
  • Joined

  • Last visited

Everything posted by Droidz

  1. Droidz

    wotlk Cath zepp

    Hello, Check the positions and ID, add lines of logs to help you debug, it will be difficult to help you. Optionally disable game addons to make sure it doesn't interfere with the bot.
  2. Droidz

    Fightback dont work

    After "MovementManager.Go" you should wait (movementmanager works in another thread). You can use code like that : while (MovementManager.InMovement && Conditions.InGameAndConnectedAndProductStartedNotInPause) { Thread.Sleep(100); }
  3. Hello, Disable all Wow addons, all WRobot plugins and share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  4. Droidz

    Fightback dont work

    Hello, can you share log of the session please (and if you can sample profile)
  5. Hello, Try with this plugin https://wrobot.eu/forums/topic/5078-plugin-for-attacking-specific-mobs/?do=findComment&comment=23616&_rid=1 (change line 10 the mobs entries id by the Basilisks id)
  6. Hello, do you have added this npc to your profile (as a repair or vendor) (in quest ui, menu "Tools" > "Vendors/Repairs/Mailboxes editor") ?
  7. Hello, if you put false at IsMountedWhenInTransport, IsMounted should return false. You can also try to disable this option https://wrobot.eu/byme/doc/html/P-wManager.wManagerSetting.IgnoreFightGoundMount.htm
  8. I'm sorry, but I don't know what can cause this problem. In some logs the bot is closed because of the number of blockages (but it shows a message when it does, I don't think that's your problem). The best is to try with a new installation of the bot and the default settings, then gradually change the settings, add plugins and figthclass to identify the source of the problem.
  9. Hello, do you have few log files of bugged bot sessions please.
  10. Hello, To install the bot, you can find the link and notice here : https://wrobot.eu/files/file/2-wrobot-official/ You can found profiles here https://wrobot.eu/files/categories/ This video can help you : https://wrobot.eu/forums/topic/3633-getting-started-with-wrobot-video/
  11. I'm pretty sure your code is not running, but I don't know why. it could be due to a bad quest ID or something else.
  12. Your code is in the quest "EnvoytotheHorde" ?
  13. The code is not executed, at no time in the log file is there a path lookup for the position of your code.
  14. your code or my code should work. Can you share log when the bot should run this code please
  15. Hello, You don't need to wait (while (MovementManager.InMovement)) with gototask. You can directly interact with a game object with code like : var pos = new Vector3(9992.634, -7113.402, 47.70632); int clickonobject = 184502; bool result = GoToTask.ToPositionAndIntecractWithGameObject(pos, clickonobject); return result; Do you have any error in your log when bot run this task ?
  16. You can try to fix manually in "Npc DB" the positions of bugged flight masters. Or, if you use a quester profile which must often take flightmasters you can add the necessary steps that the profile uses them itself.
  17. Can you try to remove all elements of your taxidb (you can found button "Taxi DB" in the tab "Tools") and when bot try to take flightmaster check again element of this list. These elements seem correct (you can send a screenshot) ? It's the same flightmasters that on the original server? Your game client is unmodified?
  18. Hello, Look https://wrobot.eu/files/file/481-combine/
  19. Hello, You won't be able to easily manage the character's movements from a quest profile when the character is dead. One of the possible approaches (untested code): robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancel) => { if (state is wManager.Wow.Bot.States.Resurrect) { if (ObjectManager.Me.IsDead) { MovementManager.Go(PathFinder.FindPath(new Vector3(819.1201, 541.1679, 34.26245, "None")), false); while (MovementManager.InMovement && Conditions.InGameAndConnectedAndProductStartedNotInPause && ObjectManager.Me.IsDead) { Thread.Sleep(100); } // cancel.Cancel = true; } } }; You need to run this code only once and add your own conditions for it to run at the right time.
  20. Hello, do you have try without game addons ?
  21. Hello, you should use Wow lua event : https://wrobot.eu/byme/doc/html/E-wManager.Wow.Helpers.EventsLuaWithArgs.OnEventsLuaStringWithArgs.htm
  22. Hello, Try renaming the file to 'Wow.exe'. But, I think the problem is because the server is using a modded version of the client, WRobot only works with the non-modified game client.
  23. I'm not home for 2 weeks, I'm watching this again when I get home. If you can just try with a new installation of WRobot (one relogger instance, even with a wow account that does not exist to see if the freeze this product from time to time or not).
  24. In relogger general settings, "wait after launch" option has correct value for your computer? Do you use the option "Lock when launch.... (only this relogger process)" ? If you launch only one instance you get also this probleme from time to time ? Do you have try to remove wow cache ?
×
×
  • Create New...