I'm trying to detect a chain fate and when I detect that the fate has been done I want the bot to stop and wait for the next fate. Also I'm able to detect if I'm in a fate but how can I get the fate name?
Code: if (Poi.Current.Type == PoiType.Fate) { FateData CurrentFate = Poi.Current.Fate; if (CurrentFate.Name == "Dark Devices - The Plea" || CurrentFate.Name == "Dark Devices - The Bait" || CurrentFate.Name == "Dark Devices - The Switch" || CurrentFate.Name == "Dark Devices - The End") { dothis(); } }