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!

I cant swim !!

Thecamel

Community Developer
Joined
Aug 8, 2012
Messages
2,036
I might have hit a little hurdle of my profile

Please see picture ..

I need to get where the red arrow is..

Bot cant path with the mesh because well you need to take a boat.

Water.jpg
 
maybe this?
ff14bot.NeoProfiles.Tags.UseTransport
set DialogOption ?

i know nothing about profiles
 
Yep, use the usetransport tag.


Thanks, Im pretty new this this can i get a example or a profile that uses this ?

In my honorbuddy days the usetransport was a customized quest behavior .cs that had to be written for each point.
 
Here is a real basic profile im using for testing prehaps show me here.

Code:
<Profile>
  <Name>kobold_pickmanm</Name>
  <KillRadius>50</KillRadius>
  <GrindAreas>
    <GrindArea name="TWINADDER_1_0_6_0">
      <Hotspots>
        <HotSpot Radius="80" XYZ="-396.4174, 36.49767, 28.37953" name = "TWINADDER_1_0_6_0" />
      </Hotspots>
      <TargetMobs>
        <TargetMob Id="370" />
      </TargetMobs>
      <MinLevel>1</MinLevel>
      <MaxLevel>50</MaxLevel>
    </GrindArea>
  </GrindAreas>
  <Order>
    <If Condition="Core.Player.ClassLevel &lt; 51">
      <If Condition="not IsOnMap(139)">
        <TeleportTo Name="Camp Bronze Lake" AetheryteId="15" />
      </If>
    <Grind grindRef="TWINADDER_1_0_6_0" while="Core.Player.ClassLevel &lt; 51" />
    </If> 
  </Order>
</Profile>
 
Back
Top