-
Posts
12579 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
Your code is in the quest "EnvoytotheHorde" ?
-
The code is not executed, at no time in the log file is there a path lookup for the position of your code.
-
your code or my code should work. Can you share log when the bot should run this code please
-
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 ?
-
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.
-
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?
-
Hello, Look https://wrobot.eu/files/file/481-combine/
-
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.
-
Hello, do you have try without game addons ?
-
Do I have him log in automatically after disconnection?
Droidz replied to Yahto979's topic in General discussion
Hello, in battlenet put your game account name -
How to monitor the global channel of information
Droidz replied to wow20230625's topic in Lua programming
Hello, you should use Wow lua event : https://wrobot.eu/byme/doc/html/E-wManager.Wow.Helpers.EventsLuaWithArgs.OnEventsLuaStringWithArgs.htm -
I can't reproduce the problem. I tried with one and several clients (several dozen times, maybe even a hundred). I start a profile (or several) and click on "Kill All" when all are in game. Are you sure it's not a wow addon that's causing the problem or a relogger configuration? Have you tried with a default wrobot (just installed with one of the relogger profiles)? Antivirus can also cause this problem. You get the problem all time at same moment of login screen ?
-
wrobot close wow plz help
Droidz replied to crox89's topic in WRobot for Wow Wrath of the Lich King - Help and support
Hello, These errors are most likely caused by the game being closed. Do you have the complete log file? Do you have this problem often or not? After how much time ? -
Hello, To see how to detect, the idea would be to look at the characteristics of the character that WRobot can extract with and without impairing movements. To extract character info go to tab "Tools", click on the button "Dev... tools" and click on "all memory info". To check differences if you haven't application for that you can use website like https://www.diffchecker.com/text-compare/ If you don't found useful value, check Wow lua API.
-
Force loot BOP items
Droidz replied to insanity's topic in WRobot for Wow Vanilla - Help and support
Download and move the file in the folder "wrobot/plugins". Launch (or restart) bot, in the tab "Plugins" enable it. -
Force loot BOP items
Droidz replied to insanity's topic in WRobot for Wow Vanilla - Help and support
Hello, And this plugin : https://wrobot.eu/files/file/411-auto-accept-wow-popup-window/ -
How to use “MoveManager” in the state the soul
Droidz replied to wow20230625's topic in Quester assistance
You need to wait after movementmanager usage : MovementManager.Go(PathFinder.FindPath(new Vector3(819.1201, 541.1679, 34.26245, "None")), false); while (MovementManager.InMovement && Conditions.InGameAndConnectedAndProductStartedNotInPause) { Thread.Sleep(100); } But, I don't think the quester executes this code from a runcode step when the character is dead. -
How to use “MoveManager” in the state the soul
Droidz replied to wow20230625's topic in Quester assistance
Hello, can you share the party of your code? You call it from where ? GoToTask by default doesn't work if your character is dead, but if you use movementmanager you shouldn't have this problem. -
StopFight invalid,The thread has been blocked
Droidz commented on wow20230625's bug report in Bug Tracker
https://wrobot.eu/bugtracker/how-to-stop-fighting-threads-in-quest-mode-r1513/?do=findComment&comment=6740&_rid=1 -
How to stop fighting threads In Quest mode
Droidz commented on wow20230625's bug report in Bug Tracker
Hello, https://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=13088&_rid=1 -
Do you have try with the quest type "UseSpellOn" ?