What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Modifying Plugin ?

Yes they can, but there's probably an error in the new code somewhere. Check the message log when you log in to HB.
 
Can you upload your modified plugin so we can give it a look ?
And what did you want to modify ?
 
You need to remove the two bars in red, line 183. Then it should work.

Code:
private void [B]DisenchantItems[/B]()
        {
            List<WoWItem> targetItems = ObjectManager.GetObjectsOfType<WoWItem>(false);

            for (int a = targetItems.Count-1; a >= 0; a--)
            {
                    if (ignoreItems.Contains(targetItems[a].Entry) || alreadyDisenchanted.Contains(targetItems[a]))
                    {
                        targetItems.RemoveAt(a);
                    }
                    else if
						(
								ignoreItems.Contains(targetItems[a].Entry) ||
								targetItems[a].Quality == WoWItemQuality.Poor ||
								targetItems[a].Quality == WoWItemQuality.Common [B][COLOR="#FF0000"][SIZE=4]||[/SIZE][/COLOR][/B]
											)
					{
						alreadyDisenchanted.Add(targetItems[a]);
						targetItems.RemoveAt(a);
					}
            }
 
Back
Top