August 29, 20169 yr Hello, I know there is a way to use the MoveTo command in a RunCode step on quest profiles but, what is the exact sentences to move the bot on a specific hotspots ? Something like wManager.Wow.Helpers.MovementManager.MoveTo should work but, how should i give the position of the hotspots ?
August 29, 20169 yr Author 1 minute ago, BetterSister said: do you wish to use pathfinder or own path? I would like to keep pathfinder.
August 29, 20169 yr wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(38.23928f, 10.52102f, -4.297345f));
August 29, 20169 yr 7 minutes ago, craine said: Hello, I know there is a way to use the MoveTo command in a RunCode step on quest profiles but, what is the exact sentences to move the bot on a specific hotspots ? Something like wManager.Wow.Helpers.MovementManager.MoveTo should work but, how should i give the position of the hotspots ? Not sure, maybe like that? <QuestsSorted Action="RunCode" NameClass="wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(38.23928f, 10.52102f, -4.297345f));" /> Or just add a FollowPath with a IsCompleteCondition <IsCompleteCondition>return (ObjectManager.Me.Position.DistanceTo2D(new Vector3(-591.455, 4074.51, 93.8132)) < 10);</IsCompleteCondition>
August 29, 20169 yr Just now, Runaro said: Not sure, maybe like that? <QuestsSorted Action="RunCode" NameClass="return (wManager.Wow.Helpers.MovementManager.MoveTo(new Vector3(-591.455, 4074.51, 93.8132)) < 10);" /> Or just add a FollowPath with a IsCompleteCondition <IsCompleteCondition>return (ObjectManager.Me.Position.DistanceTo2D(new Vector3(-591.455, 4074.51, 93.8132)) < 10);</IsCompleteCondition> runcode part is wrong
August 29, 20169 yr Author 5 minutes ago, BetterSister said: wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(38.23928f, 10.52102f, -4.297345f)); Hey, thanks !
August 29, 20169 yr 5 minutes ago, BetterSister said: wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(38.23928f, 10.52102f, -4.297345f)); OR you can use FollowPath as quest type
August 29, 20169 yr Author 22 minutes ago, BetterSister said: do you wish to use pathfinder or own path? Just to know, how do you do without pathfinder ? you list all the hotspot ?
Create an account or sign in to comment