October 15, 20169 yr 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
October 18, 20169 yr Hello, to AOE spell/item, you need to use: wManager.Wow.Helpers.ClickOnTerrain.Pulse(new Vector3(724.7518, 5318.563, 57.52559));
October 24, 20169 yr Author 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;
Create an account or sign in to comment