iesux said:
My toon is going to stop gathering herbs at this level right? And could I set in the same profile a condition for mining? ie: I want my toon to level both prefession: it would stop gathering plants when it reaches the desired level but remaain in the same grinding area to reach the desired mining level ?
Indeed, the same area can be used for mining and herbing, You can stay in the area until both are ready to be trained by using two adjacent
<GrindTo> elements. The profile fragment looks like...
PHP:
<QuestOrder>
<SetGrindArea>
<GrindArea>
<!-- ...appropriate farming area here. Omit the TargetMinLevel, TargetMaxLevel, and Factions elements... -->
</GrindArea>
</SetGrindArea>
<GrindTo Condition="HerbalismSkill.CurrentValue >= 75">
<GrindTo Condition="MiningSkill.CurrentValue >= 75">
<!-- ... -->
</QuestOrder>
iesux said:
and second question : in another thread:"" http://www.thebuddyforum.com/honorbu...n-i-think.html"" you say "trott off to profession trainer": is there such thing as a Goto in GB2. Of course I could then use ringo profession plugin to train.
I'd suggest you use Ringo Profession Trainer to get this done. Since that plugin needs to be within 100 yards of a trainer, you will need to execute an explicit
<RunTo> to meet the plugin's requirements. So, the profile fragment looks something like this...
PHP:
<QuestOrder>
<!-- ... -->
<GrindTo Condition="HerbalismSkill.CurrentValue >= 75">
<GrindTo Condition="MiningSkill.CurrentValue >= 75">
<If Condition="HerbalismSkill.MaxValue <= 75" >
<RunTo X="123" Y="234" Z="10.1" /> <!-- move to herbalism trainer so Ringo Profession Trainer can train -->
</If>
<If Condition="MiningSkill.MaxValue <= 75" >
<RunTo X="245' Y="253" Z="15" " /> <!-- move to mining trainer so Ringo Profession Trainer can train -->
</If>
<!-- ...back out to the field again for the next set of profession leveling... -->
</QuestOrder>
Please note that for the
<GrindTo> we used
CurrentValue, and for the
<If> we used
MaxValue in our
Condition.
iesux said:
the template profile provided by Hi is to be used in GB2 or Questing?
You should be using a Questing profile and Questing Bot to get this done.
iesux said:
emphasize the importantce of using a questid but in this cas I won't have one ? How would I do that?
In general,
QuestId is excellent to include to prevent 'running back' someplace, needlessly. However, for this application, omitting the
QuestId is acceptable because the
<GrindTo Condition="" />, and the
<If> brackets around training should achieve a similar goal of preventing needless travel. A profession leveling profile is very similar to a farming profile.
iesux said:
any answer chinajade please ?
Contrary to popular belief, I don't hit the 'refresh' button *all* day long--just most of it.
cheers & good luck with your profile,
chinajade