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!

Need a Do Nothing Loop, Order Bot Profile

Proto

New Member
Joined
Jan 8, 2012
Messages
219
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. :)
 
can you send the profile with the issue?

I use <While Condition = "True"> in almost all of my profiles and have no issues.
 
can you send the profile with the issue?

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

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:
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?

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>
 
Have you tried placing the Autoequip outside of the While loop:

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>
 
Back
Top