October 15, 20169 yr 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.
October 18, 20169 yr 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); }
Create an account or sign in to comment