Flaxxen 0 Posted October 15, 2016 Share Posted October 15, 2016 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 https://wrobot.eu/forums/topic/4132-problem-with-valshara-last-quests/ Share on other sites More sharing options...
Droidz 2738 Posted October 18, 2016 Share Posted October 18, 2016 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 https://wrobot.eu/forums/topic/4132-problem-with-valshara-last-quests/#findComment-19289 Share on other sites More sharing options...
KnightRyder 77 Posted October 20, 2016 Share Posted October 20, 2016 Hey Flaxxen, I'm stuck on the same part. Let me know if you get it please? Link to comment https://wrobot.eu/forums/topic/4132-problem-with-valshara-last-quests/#findComment-19354 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