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

loot pvp bodies

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

asking cause i had a report that Hb loots bodies on pvp till 85 but not after 85(pvp farming)

do you have a similar experience? or for you doesnt loot at all?
 
it hasnt looted any bodies. I have "loot mobs" checked but im assuming thats just for pve.
 
in my experience HB has never PVP looted. always thought it would be nice to have
 
Code:
   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;
                        }
                    }
                }

if someone can modifiy that so it goes to loot for bodies instead of game object maybe set last target and interact with to claim the insigna to loot it

i have found in pvp it will stand at the corpse of a dead guy ( at lv 85 pvp ) for a few sec before moving on but it has never looted any insigna i have collected it myself and it will move on soon as they are collected for some reason ( main reason for wanting plugin)
 
Last edited:
Back
Top