Jump to content

Problem with Val'Shara last quests


Flaxxen

Recommended Posts

Hi there,

I'm new to WRobot and wanted to make a quester profile.

First of all I used the search in this forum and it helps me a lot.

I'm nearly done with the Region Val'Shara but now there is one quest

I really don't know to handle. Its name is: Softening the target.

you have to ride a bat and bomb 50 enemy with the vehicle spell.

 

I tried with UseSpellOn: It targets but don't use any spell (there are only 2 Ids ( 218592, 218594 ) tried both)

I tried to Interact with NPC and wrote Lua: CastSpellById(218594); ( same effect )

 

would be nice if you can help me on this to end the Val'Shara MSQ.

Link to comment
Share on other sites

Hello, try this c# code:

                  var nearHostile = ObjectManager.GetNearestWoWUnit(ObjectManager.GetWoWUnitHostile());
                            if (nearHostile.IsValid)
                            {
                                wManager.Wow.Helpers.ClickOnTerrain.Spell(218594, new Vector3(nearHostile.Position));
                                Thread.Sleep(1000);
                            }
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...