• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Can we stop fate bot using a plugin?

    Discussion in 'Community Developer Forum' started by heinzskies, Jul 12, 2015.

    1. heinzskies

      heinzskies Member

      Joined:
      Sep 7, 2014
      Messages:
      57
      Likes Received:
      2
      Trophy Points:
      8
      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: Jul 12, 2015
    2. Cloud30000

      Cloud30000 New Member

      Joined:
      May 9, 2015
      Messages:
      298
      Likes Received:
      7
      Trophy Points:
      0
      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();
          }
      }
       

    Share This Page