• Visit Rebornbuddy
  • Need a Do Nothing Loop, Order Bot Profile

    Discussion in 'Archives' started by Proto, May 21, 2015.

    1. Proto

      Proto New Member

      Joined:
      Jan 8, 2012
      Messages:
      219
      Likes Received:
      6
      Trophy Points:
      0
      Hi all,
      I'm looking for a do nothing or empty Order Bot profile so that I might use Order Bot as a working version of Combat Asst except with movement.

      I use the following, and while it actually DOES work, it spams the log with BotSettings.
      Code:
      <Profile>
      	<Name>Empty Order Bot Profile</Name>
      	<KillRadius>50</KillRadius>
      	<Order>
      		<While Condition="True">
      		<BotSettings AutoEquip="1" />
      		</While>
      	</Order>
      </Profile>
      
      When I try to load it without anything between <While Condition="True"></While> it fails to load.
      Code:
      Failed to load profile: Object reference not set to an instance of an object.
      System.NullReferenceException: Object reference not set to an instance of an object.
         at ..(TreeNode`1 , INodeContainer )
         at ...ctor(List`1 behaviors)
         at ff14bot.NeoProfiles.NeoProfileManager.Load(String profilePath, Boolean rememberPath)
      
      Does anyone have a suggestion to get this to load & run Order Bot in a perpetual While loop.. so that I can utilize the combat movement Order Bot has to offer? Thanks for your suggestions. :)
       
    2. Grimmjow

      Grimmjow New Member

      Joined:
      Nov 11, 2013
      Messages:
      118
      Likes Received:
      1
      Trophy Points:
      0
      can you send the profile with the issue?

      I use <While Condition = "True"> in almost all of my profiles and have no issues.
       
    3. Proto

      Proto New Member

      Joined:
      Jan 8, 2012
      Messages:
      219
      Likes Received:
      6
      Trophy Points:
      0
      The profile is exactly as shown in my first post.. but without <BotSettings AutoEquip="1" />
      Code:
      <Profile>
      	<Name>Empty Order Bot Profile</Name>
      	<KillRadius>50</KillRadius>
      	<Order>
      		<While Condition="True">
      		</While>
      	</Order>
      </Profile>
      
      This profile fails to load. I'm using the BotSettings line to make it work, but it spams the rebornbuddy log with setting AutoEquip.. over and over. This does not cause any problem in game.. I was just looking for something to use instead so that the RB log does not get constant stream of log entries.

      Any suggestions?
       
      Last edited: May 26, 2015
    4. Cloud30000

      Cloud30000 New Member

      Joined:
      May 9, 2015
      Messages:
      298
      Likes Received:
      7
      Trophy Points:
      0
      Have you tried placing the Autoequip outside of the While loop:

      Code:
      <Profile>
      	<Name>Empty Order Bot Profile</Name>
      	<KillRadius>50</KillRadius>
      	<Order>
      		<BotSettings AutoEquip="1" />
      		<While Condition="True">
      		</While>
      	</Order>
      </Profile>
       
    5. Proto

      Proto New Member

      Joined:
      Jan 8, 2012
      Messages:
      219
      Likes Received:
      6
      Trophy Points:
      0
      Can not load the profile if there is nothing between <While></While>.

      Nevermind I'll just stick with what works and continue to use this.
      Code:
      <Profile>
      	<Name>Empty Order Bot Profile</Name>
      	<KillRadius>50</KillRadius>
      	<Order>
      		<While Condition="True">
      		<BotSettings />
      		</While>
      	</Order>
      </Profile>
      
       

    Share This Page