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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Can someone add TTM support to my grind script?

Soulbreaker

New Member
Joined
Mar 15, 2013
Messages
9
Just would like to know if someone could add the code correctly so my grind profile will mount to vendor/repair(Vendoring handled by plugin, just need it to mount up and open vendor) or just a quick rundown on how to do it myself if that would be as quick or easier

<HBProfile>


<GrindArea>

<Name> Naga grind</Name>

<TargetMinLevel>1</TargetMinLevel>
<TargetMaxLevel>90</TargetMaxLevel>

<Factions>2242</Factions>

<LootRadius>15</LootRadius>
<MaxDistance>15</MaxDistance>
<MaximumHotspotTime>20000</MaximumHotspotTime>
<RandomizeHotspots>True</RandomizeHotspots>

<Hotspots>
<Hotspot X="-5166.09" Y="3968.255" Z="-14.3028" />
<Hotspot X="-5172.655" Y="3979.529" Z="-13.84471" />
<Hotspot X="-5199.354" Y="3976.835" Z="-14.19638" />
</Hotspots>

<Blackspots>
<Blackspot X="-5169.588" Y="3993.819" Z="-21.38504" Radius="4.424018" />
<Blackspot X="-5183.971" Y="3993.869" Z="-20.71794" Radius="16.48693" />
</Blackspots>

</GrindArea>
</HBProfile>


Picked up this code from searching other threads. Dont know how to fit it in correctly, or if its even able via grind bot(instead of questing)
<Vendors>
<Vendor Name="Drix Blackwrench" Entry="32641" Type="Repair" /><!-- Traveler's Tundra Mammoth Repair -->
</Vendors>
...
...
<GrindTo Condition="(Me.FreeBagSlots <= 22) || (Me.LowestDurabilityPercent < 0.70)" GoalText="Farming some Leathers!" />

<If Condition="(Me.FreeBagSlots <= 22)" >
<CustomBehavior File="Message" Text="Time to sell some crap! We will repair also while we are mounted. " LogColor="Green" />
<CustomBehavior File="ForcedMount" />
<CustomBehavior File="WaitTimer" WaitTime="5000" /> <!-- 5 sec., increase or decrease as necessary, until vendor is visible -->
<CustomBehavior File="ForceSetVendor" DoSell="true" DoRepair="true" />
</If>
 
Add in the vendor part at the top as HB determines when it needs to vendor on its own. If yo uwant vendors in the game world then open up dev tools then find a target, get the target info and use the copy xml button to put that into the area where <Vendor Name... is.
 
I've used this in my profile, haven't tested it thought, but it should work.
<!-- Check bags to see if full. Vendor using Mammoth if available before flying to mailbox -->

<If Condition="(HasSpell(61447) || (HasSpell(61425))" >
<CustomBehavior File="ForceSetVendor" DoMail="False" DoRepair="True" DoSell="True" DoTrain="False" />
</If>

<If Condition="(Me.FreeBagSlots &lt;= 10) || (Me.LowestDurabilityPercent &gt; 20.0)" >
<CustomBehavior File="Message" Text="Moving to Light's Hope Chapel Mailbox" LogColor="Lime" />
<CustomBehavior File="FlyTo" X="2290.56" Y="-5320.611" Z="90.17825" />
<CustomBehavior File="ForceSetVendor" DoMail="True" DoRepair="True" DoSell="True" DoTrain="False" />
</If>
 
Back
Top