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!

SelectStringOverride Not Working?

y2krazy

Community Developer
Joined
Jun 21, 2011
Messages
2,803
Code:
[05:07:18.431 V] [Poi.Clear] Reason: Current behavior changed to MoveToTag: LineNumber: 5721, XYZ: <13.41266, 40.2, -13.26007>, Name: I'tolwann, Distance: 3, UseMesh: True, IsDone: False, HighPriority: False, InCombat: False, QuestId: 0, StepId: 0, PostCombatDelay: 0, QuestName: null, IsDoneCache: False, Behavior: TreeSharp.PrioritySelector, .
[05:07:18.431 D] Replaced hook [ProfileOrderBehavior_Hook] b95c7073-8748-4a46-898b-bed6c56e5476
[B][COLOR="#FF0000"][05:07:19.490 V] [Poi.Clear] Reason: Current behavior changed to SelectStringOverride: LineNumber: 5722, IsDone: False, Index: System.Int32[], HighPriority: False, InCombat: False, QuestId: 65646, StepId: 4, PostCombatDelay: 0, QuestName: A Dainty Dilemma, IsDoneCache: False, Behavior: TreeSharp.ActionRunCoroutine, .[/COLOR][/B]
[05:07:19.490 D] Replaced hook [ProfileOrderBehavior_Hook] f47e7948-51a6-4720-a2a2-ea1b0d554b55
[05:07:19.530 V] [Poi.Clear] Reason: Current behavior changed to TalkToTag: LineNumber: 5723, IsDone: False, NpcId: 1005411, InteractDistance: 5, BypassTargetChange: False, XYZ: <13.41266, 40.2, -13.26007>, NPC: I'tolwann 0xF3663A0, HighPriority: False, InCombat: False, QuestId: 65646, StepId: 4, PostCombatDelay: 0, QuestName: A Dainty Dilemma, IsDoneCache: False, Behavior: TreeSharp.PrioritySelector, .
[05:07:19.530 D] Replaced hook [ProfileOrderBehavior_Hook] 72ed3cbf-c862-43c9-bdc6-a50bfaed9abe
[05:07:19.531 D] Interacting with I'tolwann 0xF3663A0
[05:07:20.661 V] [Poi.Clear] Reason: Current behavior changed to LogMessageTag: LineNumber: 5734, IsDone: False, Message: Stray into the Shadows quest is coming soon! Stay tuned!, HighPriority: False, InCombat: False, QuestId: 0, StepId: 0, PostCombatDelay: 0, QuestName: null, IsDoneCache: False, Behavior: TreeSharp.PrioritySelector, .
[05:07:20.661 D] Replaced hook [ProfileOrderBehavior_Hook] 0be37d2a-ade9-46b9-9379-33cf9250be7a
[05:07:20.662 N] Stray into the Shadows quest is coming soon! Stay tuned!
[05:07:20.693 V] [Poi.Clear] Reason: Current behavior changed to StopBotTag: LineNumber: 5735, IsDone: False, HighPriority: False, InCombat: False, QuestId: 0, StepId: 0, PostCombatDelay: 0, QuestName: null, IsDoneCache: False, Behavior: TreeSharp.PrioritySelector, .
[05:07:20.693 D] Replaced hook [ProfileOrderBehavior_Hook] 3f23165e-610e-4302-8e56-327390dcad7f
[05:07:20.694 N] Stopping the bot.
[05:07:20.694 D] CurrentBot.Stop()
Executed all tags properly, minus SelectStringOverride. Presumably, it appears to still use "0" as the default, which is why the above RB window output interacts with the NPC, chooses the wrong option and the TalkTo is cancelled, moving to the next available line, which is effectively a placeholder for the next quest in my profile.

Using a CodeChunk, this works fine:

Code:
if (ff14bot.RemoteWindows.SelectString.IsOpen)
	ff14bot.RemoteWindows.SelectString.ClickSlot(2);
 
Orderbot only handles the selectstrings during cutscenes, I think outside of cutscenes he had created a separate tag to handle it.
 
Orderbot only handles the selectstrings during cutscenes, I think outside of cutscenes he had created a separate tag to handle it.
Ah, good to know that it's only during cutscenes. Thanks!
 
Back
Top