Jump to content

Q: Unwelcome Visitors 42160 - part 1


NvD

Recommended Posts

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

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;

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...