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

[Plugin - Rep] NetherwingCollector

highvoltz

Well-Known Member
Joined
Mar 22, 2010
Messages
1,729
Reaction score
141
For this plugin to work you need a profile, either find the one from exfelon that is posted in this thread, (link below) or make your own profile

Features
:

  • Collects Netherwing Bush,Ore and the eggs when it sees one.
Known Issues:

To Do List:


How to use:

  1. Make sure you have the latest version of Honorbuddy
  2. Place the .cs file in your HonorBuddy/Plugins folder
  3. Set your Loot Radius in bot settings to whatever distance your profiles calls for.
  4. Download exfelon's profile. Link here
 

Attachments

Last edited:
sweet! thanks for this! highvoltz ftw.
 
Last edited:
is "panama" supposed to be "panyama"??

could this be adapted for say... mature spore sacks in zangarmarsh? and Glowcaps
 
Yes, with only a minor edit.

awesome, i'll write some profiles up for the "rep farmers" -- can the edit be done by a user? or only by the creator? or can you add a function that lets you put in an item(s) code(s) to pick it up?
 
awesome, i'll write some profiles up for the "rep farmers" -- can the edit be done by a user? or only by the creator? or can you add a function that lets you put in an item(s) code(s) to pick it up?
The edits can be done by the users, The section that needs to be changed is this
Code:
            List<WoWGameObject> objList = ObjectManager.GetObjectsOfType<WoWGameObject>()
                .Where(o => (o.Entry == 185881 &&  Me.GetSkill(SkillLine.Herbalism).CurrentValue >= 350)||
                (o.Entry == 185877 && Me.GetSkill(SkillLine.Mining).CurrentValue >= 350 ) || o.Entry == 185915)
                .OrderBy(o => o.Distance).ToList();
I'm also checking for mining/herbalist skills here so you probably would want to remove that if making a glowcap collector plugin.

Here's an example with the skill checks removed.All that's left to do is replace the numbers in o.Entry == ##### with the correct object IDs. you can use CnG's Dev Tool to dump gameobjects in log. Use the entry number from the wowhead link that his plugin spits out in the log.
Enjoy.

Code:
List<WoWGameObject> objList = ObjectManager.GetObjectsOfType<WoWGameObject>()
                .Where(o => 
                o.Entry == 185877 ||
                o.Entry == 185915
                )
                .OrderBy(o => o.Distance).ToList();
 
Last edited:
could this be adapted to loot in BG's? seems like it could, unless the ability to NOT loot is hardcoded into HB.... not at home to test/try it out...
 
Last edited:
Cant find the profile :S looked in archive and searched for it. :S some 1 got a clue of where it is?
 
If I recall correctly, he removed it for being too buggy with the crystals etc.
 
If I recall correctly, he removed it for being too buggy with the crystals etc.

correct, so a new profile would have to be in order to test this plugin out.
 
Any 1 up for doing 1? :)
(If u do not wanna post it to everyone then psst im your friend, pm me with it :P )
 
I think there may need to be some upper limit to the distance it will try and go to get these items.

it makes a new "priority" of looting with my particular setup. it will always go to a piece of ore (not trying above the mine at the moment), attack anything that aggros/is attacked by my pet (who's on aggressive) on the way, but not loot it. he will clear all of the ore out (and pretty much kill everything down there) then go back and loot all the corpses. it actually works pretty well. once i'm certain of the profiles viability (48 hours of testing or so) i'll put it up.

I'm using the instantloot plugin btw, and lootfilter to delete everything but the eggs, ore, pollen, crystals, flayer skins. and any green or better gems that drop. destroying all greens and greys.

the screenshot is after about 2.5-3 hours.
 

Attachments

  • WoWScrnShot_111810_020433.webp
    WoWScrnShot_111810_020433.webp
    117.3 KB · Views: 1,160
Last edited:
cant wait for that release Exfelon! keep up the good work bro
 
NetherwingCollector 1.5

  • Now uses Bot's Loot Radius settings for max distance to loot the ore,herb and eggs
  • Now Auto Accepts BoP loot (netherwing eggs)
 
Last edited:
I think there may need to be some upper limit to the distance it will try and go to get these items.

it makes a new "priority" of looting with my particular setup. it will always go to a piece of ore (not trying above the mine at the moment), attack anything that aggros/is attacked by my pet (who's on aggressive) on the way, but not loot it. he will clear all of the ore out (and pretty much kill everything down there) then go back and loot all the corpses. it actually works pretty well. once i'm certain of the profiles viability (48 hours of testing or so) i'll put it up.

I'm using the instantloot plugin btw, and lootfilter to delete everything but the eggs, ore, pollen, crystals, flayer skins. and any green or better gems that drop. destroying all greens and greys.

the screenshot is after about 2.5-3 hours.
would you like to the plugin to be changed so it 1st loots any NPCs that aggroed before moving on to node or keep it as it is?
 
Last edited:
this looks great..to bad there isn't a public profile to use it with =/
 
would you like to the plugin to be changed so it 1st loots any NPCs that aggroed before moving on to node or keep it as it is?

yeah i think it would look more human to do it that way, most people loot their kills immediately. plus it would help get the mob spawns up faster. everyone knows that the mobs down there have only a slightly less chance of dropping a netherwing egg than the nodes do, correct?

and thanks for the update highvoltz.

attached: my profile i made. i don't recommend afking until you've watched it for a while. if highvoltz's change to the plugin works correctly, the radius feature should prevent most of the bad stuff from happening. before, the plugin would sense a node outside the mine, head out and get stuck right at the western mine entrance. i submitted the spot to be remeshed btw. he'd also aggro one of those 110k elites which often ended poorly as i'd setup my cc to use 2 basic attacks over and over since at most it takes at most 2 shots to kill anything in the mine.

otherwise i ended up with over 40 eggs in less than 12 hours total of being down there (40x275rep=11000 of the ~50k needed). you should be able to hit exalted in 2 days or so, maybe less. i had lootfilter setup to delete everything except the rep items, but you'll end up with more crystals and ore than you'll ever use tho, i've deleted 750 crystals or more, and probably 300 or more ore.

please keep the criticism of the profile to a minimum. i can change it up / add more hotspots/blackspots as needed. you could vendor out on the ledge, but i preferred not too, as he'd usually get hung at the mines entrance.
 

Attachments

Last edited:
Back
Top