May 7, 20178 yr 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.
May 7, 20178 yr Author have tried adding this in quest editor is complete condition: return ItemsManager.GetItemCountById(8149)<=0; not working as well
May 17, 20178 yr 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
Create an account or sign in to comment