Jump to content

use item on dead


CN

Recommended Posts

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
Share on other sites

have tried adding this in quest editor

is complete condition: return ItemsManager.GetItemCountById(8149)<=0;

not working as well

Link to comment
Share on other sites

  • 2 weeks later...
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
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...