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!

Summon Chocobo With Curiel Root?

lordofthereef

New Member
Joined
Jul 16, 2014
Messages
242
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?
 
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:
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
Gotcha. What About just simply using an item? is using food, for example, handled differently by the bot?
 
Back
Top