• Visit Rebornbuddy
  • [OrderBot] After I die teleports me to Forgotten Spring. Log + profile attached

    Discussion in 'Rebornbuddy Forum' started by FredrichChoppin, Dec 7, 2014.

    1. FredrichChoppin

      FredrichChoppin New Member

      Joined:
      Jul 26, 2014
      Messages:
      17
      Likes Received:
      0
      Trophy Points:
      1
      Using Kupo's Routines with the attached profile I always teleport to Forgotten Spring. This zone is much higher than my current level, which is level 25, so any time I die I must manually fix the teleport location. Is this editable or is OrderBot included in the reborn executable? Please post any questions, I will get back to you as I am able.

      Thank you for reading! Thanks for the great bot!
      View attachment Grind Profile Level 1-50.xml
      View attachment After Death forgotten.txt
       
    2. azbairos

      azbairos New Member

      Joined:
      Sep 15, 2013
      Messages:
      10
      Likes Received:
      0
      Trophy Points:
      0
      Tagging myself to help a friend.
       
    3. Sodimm

      Sodimm Member

      Joined:
      Nov 8, 2014
      Messages:
      383
      Likes Received:
      7
      Trophy Points:
      18
      There was a rogue "not IsOnMap" teleporting you to Forgotten Springs and then generating a path thru the level 44-50 area of Southern Thanalan. Death ensued :p.

      Tag removed, and the comments at the top properly terminated.

      View attachment 156872

      It will now teleport you to Little Ala Mhigo. Making the path to the grind site, more your level :).
       
      Last edited: Dec 8, 2014
    4. azbairos

      azbairos New Member

      Joined:
      Sep 15, 2013
      Messages:
      10
      Likes Received:
      0
      Trophy Points:
      0
      What did you change and why? I want to learn please.
       
    5. Sodimm

      Sodimm Member

      Joined:
      Nov 8, 2014
      Messages:
      383
      Likes Received:
      7
      Trophy Points:
      18
      Usually, when i'm looking at an .xml file for someone, i just download it and view it via the browser. On the one you linked, I couldn't do that. So first I ammended:

      Code:
      <!-->
      Grinding Levels 1-50
      Author: Nesarthin
      Level 1-15 Credit to kagamihiiragi17, This + the mining profile helped
      me to get through problems i was having.
      V:1.0.1
      Required Teleport Locations:
      Bentbranch Meadows
      Aleport - Upper LaNoscea
      Quarrymill
      Little Ala Mhigo
      Wineport
      Camp Dragonhead
      Camp Drybone
      Required User Interaction:
      Very little, stop the bot periodically to repair, or download RePear
      Make Sure to upgrade Gear, Use Quack to log you out Once in a while,
      Otherwise this should be AFKable
      Required Setup:
      Set class and hit go.  It will check your level and take you to the
      correct spot
      Recomended Plugins / Addons
      Magitek
      ExCombat Assist
      RePear
      Gourmetguy
      Quack
      
      For level one Leave through Blue Badger Gate and start your Grinding Adventure
      -->
      
      so that the initial line looked like this:

      Code:
      <!--
      
      and not this:

      Code:
      <!-->
      
      When adding notes open with "<!--" and close the note with "-->". Now the browser can read it.

      As for the teleport, if you look at the <Order> part of the .xml, at the current level range you've stipulated, you'll find this:

      Code:
      <If Condition="Core.Player.ClassLevel &lt; 30">
      <If Condition="not IsOnMap(146)">
      <TeleportTo Name="Little Ala Mhigo" AetheryteId="19" />
      </If> 
      </If>
      <Grind grindRef="Southern Thanalan" while="Core.Player.ClassLevel &lt; 30" />
      
      This is telling the bot that <IF> you're less than level 30, to teleport to Aetheryte 19... Which is "Little Ala Mhigo". The "not IsOnMap" statement is not needed, so I changed It.

      to this:

      Code:
      <If Condition="Core.Player.ClassLevel &lt; 30">
      <TeleportTo Name="Little Ala Mhigo" AetheryteId="19" />
      </If>
      <Grind grindRef="Southern Thanalan" while="Core.Player.ClassLevel &lt; 30" />
      
      This way it'll teleport you to Little Ala Mhigo irrespective of what Map you're on. So if you stop the bot and restart it, it'll teleport you back to Little Ala Mhigo.

      As an addendum:

      I would also suggest that you log on, and hit Return. If it takes you to Forgotten Springs, that's the main problem. If you're bound to Forgotten Springs you'll return there upon death, and the "not IsOn Map" is irrelevant, as both Forgotten Springs & Little Ala Mhigo are on map (146) and the bot will continue to the grind reference, plotting a course thru the Amaal'Ja. Because, well, that's what it's been told to do.

      If this is the case, rebind to Little Ala Mhigo's Aetheryte. And maybe add force statements to the teleports. Although, if you're bound to forgotten springs, this won't matter and the bot will still think you're where you're supposed to be and until you restart the profile, will keep doing exactly that.
       
      Last edited: Dec 8, 2014

    Share This Page