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!

Interact With This NPC?

Jonb1982

New Member
Joined
Aug 30, 2015
Messages
17
I am trying to do Grand Company trade-ins and therefore I must interact with the "Flame Personnel Officer."

I can easily get through the first menu by using:
if (ff14bot.RemoteWindows.SelectIconString.IsOpen) ff14bot.RemoteWindows.SelectIconString.ClickSlot(0);

Then I get to the next menu and I need to switch to the "Expert Delivery" tab.
ffxiv_12052016_211252.webp

I have attempted to utilize the console commands (even though I KNOW most of them are not relevant to this situation)
ClearLog();
Log("ColosseumRecord Open? {0}",ff14bot.RemoteWindows.ColosseumRecord.IsOpen);
Log("ContentsFinder Open? {0}",ff14bot.RemoteWindows.ContentsFinder.IsOpen);
Log("ContentsFinderConfirm Open? {0}",ff14bot.RemoteWindows.ContentsFinderConfirm.IsOpen);
Log("ContentsFinderReady Open? {0}",ff14bot.RemoteWindows.ContentsFinderReady.IsOpen);
Log("CraftingLog Open? {0}",ff14bot.RemoteWindows.CraftingLog.IsOpen);
Log("HousingGardening Open? {0}",ff14bot.RemoteWindows.HousingGardening.IsOpen);
Log("JournalAccept Open? {0}",ff14bot.RemoteWindows.JournalAccept.IsOpen);
Log("JournalResult Open? {0}",ff14bot.RemoteWindows.JournalResult.IsOpen);
Log("MaterializeDialog Open? {0}",ff14bot.RemoteWindows.MaterializeDialog.IsOpen);
Log("Repair Open? {0}",ff14bot.RemoteWindows.Repair.IsOpen);
Log("Request Open? {0}",ff14bot.RemoteWindows.Request.IsOpen);
Log("SelectIconString Open? {0}",ff14bot.RemoteWindows.SelectIconString.IsOpen);
Log("SelectString Open? {0}",ff14bot.RemoteWindows.SelectString.IsOpen);
Log("SelectYesno Open? {0}",ff14bot.RemoteWindows.SelectYesno.IsOpen);
Log("Synthesis Open? {0}",ff14bot.RemoteWindows.Synthesis.IsOpen);
Log("Talk Open? {0}",ff14bot.RemoteWindows.Talk.DialogOpen);

All return as FALSE. So, I then attempted to run this script:
ClearLog();
foreach (var foundwindow in RaptureAtkUnitManager.GetRawControls)
{
Log(foundwindow);
}

And the only difference that I notice: "GrandCompanySupplyList"

I have reason to believe that if there IS a solution to this it will utilize this control but it is certainly beyond my knowledge.

ANY ideas would be greatly appreciated.
 
Back
Top