Jump to content

About This File

It's a simple plugin is trying to roll a group loot item, otherwise, it is trying to disenchant if possible and otherwise, it is trying to greed this item.


User Feedback

Recommended Comments

Jellypowered

Posted

To fix this to Greed instead of Need, Change the following 

if (IsButtonEnabled(roll))
                {
                  ClickButton(roll);
                } else if (IsButtonEnabled(dis))
                {
                  ClickButton(dis);
                } else {
                  ClickButton(greed);
                }

to

if (IsButtonEnabled(greed))
                {
                  ClickButton(greed);
                } else if (IsButtonEnabled(dis))
                {
                  ClickButton(dis);
                } else {
                  ClickButton(roll);
                }

If you want to always Disenchant if available and greed if not 

if (IsButtonEnabled(dis))
                {
                  ClickButton(dis);
                } else if (IsButtonEnabled(greed))
                {
                  ClickButton(greed);
                } else {
                  ClickButton(roll);
                }

 

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...