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!

Can we stop fate bot using a plugin?

heinzskies

Member
Joined
Sep 7, 2014
Messages
57
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