muntahunta
Member
- Joined
- Jul 20, 2010
- Messages
- 293
- Reaction score
- 13
is there a way to loot pvp bodies? if not it would make a great plugin
atm 72 but i have multiple 85's
it hasnt looted any bodies. I have "loot mobs" checked but im assuming thats just for pve.
if (Battlegrounds.IsInsideBattleground)
{
List<WoWGameObject> _unitList = ObjectManager.GetObjectsOfType<WoWGameObject>();
foreach (WoWGameObject u in _unitList)
{
if (u.SubType == WoWGameObjectType.Button && u.Distance < 30)
{
if (_intCDBG.IsFinished)
{
Navigator.MoveTo(u.Location);
Thread.Sleep(2000);
Logging.Write(Color.FromName("Blue"), ">>Interact with Objective.");
u.Interact();
Thread.Sleep(3000);
_intCDBG.Reset();
}
return;
}
}
}