What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Can we stop fate bot using a plugin?

heinzskies

Member
Joined
Sep 7, 2014
Messages
57
Reaction score
2
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?
 
Last edited:
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();
    }
}
 
Back
Top