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

Class training dont work?

wedberg

New Member
Joined
Oct 24, 2010
Messages
17
Reaction score
0
Im working on a questing profile atm. I want to decide when its time to train new class skills, but the bot ignores it and just move on. Anyone know why this is happening?

For list some stuff i have tried:
HTML:
1. <CustomBehavior File="ForceSetVendor" VendorType="Train" />
2. <CustomBehavior File="ForceSetVendor" DoTrain="True" />
3. Change to Train new skills [on] with: <CustomBehavior File="UserSettings" TrainNewSkills="True" />

I know it have worked with just step 1 before when I did my Horde profile. Dont know why it fucks up now :S
 
Last edited:
The Setting of TrainNewSkills is required indeed, on the other hand your profile should have trainers added (vendors with type train and trainclass= properly set) or at least find vendors automatically on.
 
I have vendors added. But it feels like I have missed something. Because my codes looks like another quest-profiles makers :S
This is an exempel of what I think is nesseceray for class training, if there is something you would have done different tell me please :)

HTML:
<HBProfile>
<Vendor>
<Vendor Name="Benjamin Foxworthy" Entry="46983" Type="Train" TrainClass="Hunter" X="-9464.94" Y="117.432" Z="57.96348" />
</Vendor>
<Questorder>
<If Condition="HasQuest(184) &amp;&amp; IsQuestCompleted(176)">
<CustomBehavior File="ForceSetVendor" DoTrain="True" />
</If>
</Questorder>
</HBProfile>
 
Back
Top