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

Fly to vendor/mail

stelios21

New Member
Joined
Oct 3, 2012
Messages
377
Reaction score
0
So i want to fly to mail and vendor instead of ground mount.


I have this code from another QUESTING profile

Code:
    <If Condition="(Me.FreeBagSlots &lt; 10) || (Me.LowestDurabilityPercent &lt; 0.3)">
          <CustomBehavior File="Message" Text="Bags are Full or I'm Broken - Moving to Mail Items" LogColor="Green" />
       <!--Do Mail First, The mail box is closer to the grind area-->
     <CustomBehavior File="Message" Text="Going to MailBox" LogColor="Green" />
      <CustomBehavior File="FlyTo" DestName="MailBox" X="723.1437" Y="1580.464" Z="375.9635" />
        <CustomBehavior File="ForcedDismount" />
       <SetMailbox>
      <Mailboxes>
        <Mailbox X="720.8524" Y="1578.852" Z="376.0925"  />
      </Mailboxes>
    </SetMailbox>
      <CustomBehavior File="ForceSetVendor" DoMail="True" DoRepair="False" DoSell="False" DoTrain="False" />
      
      <!-- Fly to Sell and Repair -->
        <CustomBehavior File="Message" Text="Going to Vendor" LogColor="Green" />
        <CustomBehavior File="FlyTo" DestName="Reapir/Sell"  X="1228.97" Y="602.7587" Z="393.6359" />
    <SetVendor>
								<Vendors>
                 <Vendor Name="Jaluu the Generous" Entry="59908" Type="Repair" X="1228.97" Y="602.7587" Z="393.6359" />
								</Vendors>
							</SetVendor>

      <CustomBehavior File="ForceSetVendor" DoMail="True" DoRepair="True" DoSell="True" DoTrain="False" />
 </If>


The issue here is that i wanna use grind bot instead of questing bot. how is it possible to integrate this code into the grind bot?

ty
 
So i want to fly to mail and vendor instead of ground mount.


I have this code from another QUESTING profile

Code:
    <If Condition="(Me.FreeBagSlots < 10) || (Me.LowestDurabilityPercent < 0.3)">
          <CustomBehavior File="Message" Text="Bags are Full or I'm Broken - Moving to Mail Items" LogColor="Green" />
       <!--Do Mail First, The mail box is closer to the grind area-->
     <CustomBehavior File="Message" Text="Going to MailBox" LogColor="Green" />
      <CustomBehavior File="FlyTo" DestName="MailBox" X="723.1437" Y="1580.464" Z="375.9635" />
        <CustomBehavior File="ForcedDismount" />
       <SetMailbox>
      <Mailboxes>
        <Mailbox X="720.8524" Y="1578.852" Z="376.0925"  />
      </Mailboxes>
    </SetMailbox>
      <CustomBehavior File="ForceSetVendor" DoMail="True" DoRepair="False" DoSell="False" DoTrain="False" />
      
      <!-- Fly to Sell and Repair -->
        <CustomBehavior File="Message" Text="Going to Vendor" LogColor="Green" />
        <CustomBehavior File="FlyTo" DestName="Reapir/Sell"  X="1228.97" Y="602.7587" Z="393.6359" />
    <SetVendor>
								<Vendors>
                 <Vendor Name="Jaluu the Generous" Entry="59908" Type="Repair" X="1228.97" Y="602.7587" Z="393.6359" />
								</Vendors>
							</SetVendor>

      <CustomBehavior File="ForceSetVendor" DoMail="True" DoRepair="True" DoSell="True" DoTrain="False" />
 </If>


The issue here is that i wanna use grind bot instead of questing bot. how is it possible to integrate this code into the grind bot?

ty

Hi, Stelios21,

If you plan on using 'branching logic' (i.e., <If>, <While>), or CustomBehaviors, your only choice is to use Questbot. The Grindbot does not support a grammar that allows these or similar constructs.

There is no reason to use Grindbot--ever. The Questbot can do everything the Grindbot can and more.

cheers,
chinajade
 
Hi, Stelios21,

If you plan on using 'branching logic' (i.e., <If>, <While>), or CustomBehaviors, your only choice is to use Questbot. The Grindbot does not support a grammar that allows these or similar constructs.

There is no reason to use Grindbot--ever. The Questbot can do everything the Grindbot can and more.

cheers,
chinajade


Thanks for your answer mate, do you mind if i send you the adjusted questing profile to have a look whats wrong?
Its so simple but i am stuck. Basically, whats need to be done is change some hotspots, and remove the search/looting of some chests, but when i delete the code seems an error occur in line 3 which is basically the name of the profile.
ty
 
Back
Top