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

An easy to add suggestion, I think.

Asphodan

Member
Joined
Jan 15, 2010
Messages
286
Reaction score
4
To Devs: Would it be easy, or hard, or make HB check for profession skill level? That way we can add an additional tag, similar to the minLevel and maxLevel we already have. Set it so that the bot should be running in one subprofile if it's Herbalism skill is X high.. Or that it should be using the other subprofile if it's Y high. This way, when I level a toon to 60.. I just have to start up one master gathering profile... And log back in to a skill-300 toon.
 
But what if you want to grind an area with lvl 150herbs, but the bot starts flying over to a 200lvl area?
 
Asphodon said:
To Devs: Would it be easy, or hard, or make HB check for profession skill level? That way we can add an additional tag, similar to the minLevel and maxLevel we already have. Set it so that the bot should be running in one subprofile if it's Herbalism skill is X high.. Or that it should be using the other subprofile if it's Y high. This way, when I level a toon to 60.. I just have to start up one master gathering profile... And log back in to a skill-300 toon.
The functionality you seek is available today, and it looks something like the following...
PHP:
    <!-- ...set up a 'Grind area' with no Factions, MinLevel, or MaxLevel... -->
    <GrindTo Condition="Me.GetSkill(Styx.SkillLine.Mining).MaxValue &lt; 75">
    <!-- ...trot off to trainer.  Using Ringo Profession Trainer plugin, can arrange for HB to train... -->

    <!-- ...set up a higher-level 'Grind area' with no Factions, MinLevel, or MaxLevel... -->
    <GrindTo Condition="Me.GetSkill(Styx.SkillLine.Mining).MaxValue &lt; 150">
    <!-- ...trot off to trainer.  Using Ringo Profession Trainer plugin, can arrange for HB to train... -->

    <!-- ...set up an even higher-level 'Grind area' with no Factions, MinLevel, or MaxLevel... -->
    <GrindTo Condition="Me.GetSkill(Styx.SkillLine.Mining).MaxValue &lt; 225">
    <!-- ...trot off to trainer.  Using Ringo Profession Trainer plugin, can arrange for HB to train... -->
    <!-- ...use flying mount, move to great height, dismount... -->

All the information you need to get this done is in the Wiki.

cheers,
chinajade
 
Back
Top