• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Summon Chocobo With Curiel Root?

    Discussion in 'Rebornbuddy Forum' started by lordofthereef, Nov 15, 2014.

    1. lordofthereef

      lordofthereef New Member

      Joined:
      Jul 16, 2014
      Messages:
      242
      Likes Received:
      1
      Trophy Points:
      0
      Didn't know if I should post this here or in coroutines...

      Would be nice to be able to summon chocobo with a curiel root to gain the extra expplus favorite food buff. I like to grind on plasmoids for a couple hours a day and would enjoy an increased exp boost. I imagine that co routines tell the game to use a gyashal green so it shouldn't be overly difficult I wouldn't think?
       
    2. Endus

      Endus Community Developer

      Joined:
      Jul 9, 2012
      Messages:
      458
      Likes Received:
      6
      Trophy Points:
      18
      I don't think combat routines can control what's used to "Summon Chocobo" as it's hardcoded into the bot API.

      Code:
      namespace ff14bot.Objects
      {
          public static class Chocobo
          {
              public static bool CanSummon { get; }
              public static GameObject Object { get; }
              public static CompanionStance Stance { get; }
              public static bool Summoned { get; }
              public static TimeSpan TimeLeft { get; }
      
              public static void AttackerStance();
              public static void DefenderStance();
              public static void Dismiss();
              public static void Follow();
              public static void FreeStance();
              public static void HealerStance();
              public static void Summon();
          }
      }
      
      To summon all we do is use "Chocobo.Summon();". I think mastahg would have to expand on the "Summon();" command to include other food options like "Chocobo.Summon(Curiel Root);".

      Of course I'm still new to all of this so I could be wrong. :p
       
      Last edited: Nov 15, 2014
    3. lordofthereef

      lordofthereef New Member

      Joined:
      Jul 16, 2014
      Messages:
      242
      Likes Received:
      1
      Trophy Points:
      0
      Gotcha. What About just simply using an item? is using food, for example, handled differently by the bot?
       

    Share This Page