duthibaut 0 Posted May 7, 2018 Share Posted May 7, 2018 Hello everyone, Actually i'm working on a BC (2.4.3) quest profil for clean all of the content with no elits mobs et gain many gold with only quest (no farming) and reduce ban activity. For that i'm looking for a solution to move my caracter to some quest point. By exemple the first step of my profil is to select a quest (through the dark portal) and move my caracter to the outland's portal. But at this point, my caracter go to the north of the map. In fact he skip my "Go to the portal" Quest with a follow path and just take the after one (TurnIn : Trough the dark portal). I'm looking for a code, or something to force the following path and only go turnin to if my caracter is in the good area (outland here) If u have some idea, it's will be great ! I can share the profil if u want see how i build it. Best regards ! Link to comment https://wrobot.eu/forums/topic/9349-go-to-the-point-quest/ Share on other sites More sharing options...
kawanin 7 Posted May 7, 2018 Share Posted May 7, 2018 Maybe you can use the same condition as in dungeon profiles to enter the instance. Link to comment https://wrobot.eu/forums/topic/9349-go-to-the-point-quest/#findComment-43345 Share on other sites More sharing options...
FNV316 65 Posted May 7, 2018 Share Posted May 7, 2018 Create a follow path step that leads right before the portal, add step "Run Code" and insert one of these two codes: wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(123.456, 123.456, 123.456)); For 123.456 you insert the coords of a point behind the portal. Or: while(Usefuls.ContinentId == (int) ContinentId.Azeroth) { wManager.Wow.Helpers.Move.Forward(Move.MoveAction.PressKey, 1000); } Link to comment https://wrobot.eu/forums/topic/9349-go-to-the-point-quest/#findComment-43347 Share on other sites More sharing options...
duthibaut 0 Posted May 8, 2018 Author Share Posted May 8, 2018 Thanks for the answers ! I will try and i come back ;) Link to comment https://wrobot.eu/forums/topic/9349-go-to-the-point-quest/#findComment-43369 Share on other sites More sharing options...
duthibaut 0 Posted May 8, 2018 Author Share Posted May 8, 2018 wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(123.456, 123.456, 123.456)); Work so perfectly ! Thanks ! I adjusted at the point and the caracter take the portal perfectly ! Link to comment https://wrobot.eu/forums/topic/9349-go-to-the-point-quest/#findComment-43372 Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now