CN 1 Posted May 7, 2017 Share Posted May 7, 2017 Hello there, I have followed Use item on dead mob ( after looting) and it ran fine with it. but now the next step pulse unable to check if the quest is completed and the character is stays idle at hotspot. Quest referring: Druid of the Claw (id:2561) Below is the Quest C#: public sealed class DruidoftheClaw : QuestGrinderClass { public DruidoftheClaw() { // http://www.wowhead.com/quest=2561 Name = "Druid of the Claw"; QuestId.AddRange(new[] { 2561 }); Step.AddRange(new[] { 1, 0, 0, 0 }); EntryTarget.Add(7318); // Rageclaw : http://www.wowhead.com/npc=7318 } } Quest Order: Pickup-> Use item on dead mob ( after looting) -> Pulse -> Turn In Thank you. Link to comment https://wrobot.eu/forums/topic/5837-use-item-on-dead/ Share on other sites More sharing options...
CN 1 Posted May 7, 2017 Author Share Posted May 7, 2017 have tried adding this in quest editor is complete condition: return ItemsManager.GetItemCountById(8149)<=0; not working as well Link to comment https://wrobot.eu/forums/topic/5837-use-item-on-dead/#findComment-26545 Share on other sites More sharing options...
Arcangelo 105 Posted May 17, 2017 Share Posted May 17, 2017 On 07-05-2017 at 6:11 PM, CN said: have tried adding this in quest editor is complete condition: return ItemsManager.GetItemCountById(8149)<=0; not working as well return wManager.Wow.Helpers.ItemsManager.GetItemCountByIdLUA(8149) == 0; Try that as complete condition Link to comment https://wrobot.eu/forums/topic/5837-use-item-on-dead/#findComment-26825 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