NvD 7 Posted October 15, 2016 Share Posted October 15, 2016 Hey all, Anyone have a solution on how to make this quest work. Unwelcome Visitors 42160 - part 1? http://www.wowhead.com/quest=42160/unwelcome-visitors Felblaze Portals destroyed (4) I have tried to use the below, but its not working Lua.DoString("ExtraActionButton1:Click();"); SpellManager.ClickRemoteLocation(new WoWPoint(724.7518, 5318.563, 57.52559)); The main issue is the even when the ExtraActionButton1 is pressed, is not used on portal (portal cannot be selected in game), but the green circle is showed on screen Link to comment Share on other sites More sharing options...
Droidz 2737 Posted October 18, 2016 Share Posted October 18, 2016 Hello, to AOE spell/item, you need to use: wManager.Wow.Helpers.ClickOnTerrain.Pulse(new Vector3(724.7518, 5318.563, 57.52559)); Link to comment Share on other sites More sharing options...
NvD 7 Posted October 21, 2016 Author Share Posted October 21, 2016 Thanks, i will give it a try :) Link to comment Share on other sites More sharing options...
NvD 7 Posted October 24, 2016 Author Share Posted October 24, 2016 Thanks Droidz, it worked :), here is how I did it (it will try multiple times to destroy the portals since its destroyed before i cast :) var path = new List<Vector3>() { new Vector3(721.8674, 5322.935, 57.19053, "None"), new Vector3(613.8378, 5530.022, 54.96337, "None"), new Vector3(587.8415, 5304.021, 45.30553, "None"), new Vector3(496.2509, 5307.273, 60.94893, "None"), }; for (int i = 0; i < path.Count; i++) { if (GoToTask.ToPosition(path)) { Logging.Write("reach point #" + i); Lua.LuaDoString("ExtraActionButton1:Click()"); ClickOnTerrain.Pulse(new Vector3(path)); Thread.Sleep(5000); } } return true; eeny and ivansosajigga 2 Link to comment Share on other sites More sharing options...
ivansosajigga 1 Posted October 26, 2016 Share Posted October 26, 2016 Did you set this up as QuestType: OverridePulseCSharpCode or how? Link to comment 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