• Visit Rebornbuddy
  • Bard with Settings

    Discussion in 'Combat Routines' started by Exmortem, Feb 8, 2014.

    1. Exmortem

      Exmortem Community Developer

      Joined:
      Mar 28, 2010
      Messages:
      799
      Likes Received:
      16
      Trophy Points:
      18
      This is LVL50 only currently.

      The ArcherBardSettings.cs file needs to be placed in your Kupo/Settings folder.

      Use Buffs
      must be enabled in the settings for any buffs to work, even if they're set to true. You can customize what spells you would like the routine to silence with Blunt Shot through the settings window, here's a screenshot showing how... http://s2.postimg.org/uocrhln5l/Archer_Settings.jpg

      02/11
      - You can now set the routine to NOT use Windbite or Venomous Shot if a targets health is below a certain number. Useful for targets like bombs in the Behemoth fight in CT.

      02/16
      - Added settings to where you can decide which mobs to not use AOE, Venomous Bite or Windbite on - Useful for not AOEing on Acherus in CT or not using Venomous Bite on Atomos in CT since it resists.
      - Added option to use Swiftsong when getting out of combat.

      02/22
      - Added Ballads with settings.
      - I recommend managing ballads manually for difficult content.
      - Mage's Ballad takes precedence over everything else, there's a setting for saving mana at a certain % for Mage's.
      - Foe Requiem will only be used if a BLM or SMN is in the party.
      - Will never use Army's Paeon when soloing, with Invigorate and -20% damage it shouldn't be used solo.2

      02/24/
      - Consolidated everything into one file. You must delete old settings file ArcherBard.cs from Kupo/Settings if you had it before.
       
    2. exaccuss

      exaccuss Active Member

      Joined:
      Nov 10, 2013
      Messages:
      1,021
      Likes Received:
      6
      Trophy Points:
      38
      How does the flaming arrow activate? i've seen other bard profiles, but none of them got ground spells to work lol
       
    3. Exmortem

      Exmortem Community Developer

      Joined:
      Mar 28, 2010
      Messages:
      799
      Likes Received:
      16
      Trophy Points:
      18
      Instead of using Cast I just did this.

      Code:
                      #region Flaming Arrow
                      new Decorator(ret =>
                      {
                          if (!Actionmanager.CanCast("Flaming Arrow", Core.Player.CurrentTarget))
                                 return false;
      
      
                          if (!settings.UseFlamingArrow)
                                 return false;
      
      
                          return true;
                      },
                      new Action(ret =>
                      {
                          Actionmanager.DoActionLocation("Flaming Arrow", Core.Player.CurrentTarget.Location);
                      })),
                      #endregion
      
       
    4. exaccuss

      exaccuss Active Member

      Joined:
      Nov 10, 2013
      Messages:
      1,021
      Likes Received:
      6
      Trophy Points:
      38
      Oh nice, well i can't wait to test it out. Seems as though you have a great profile going right here. Looking forward to testing it out.
       
    5. Kogan

      Kogan New Member

      Joined:
      Dec 10, 2012
      Messages:
      14
      Likes Received:
      0
      Trophy Points:
      1
      a very nice routine the only bug ive found for now @ the last boss of Ct it will continue to spam aoe instead of single target rotation, great job anyway :)
       
    6. Exmortem

      Exmortem Community Developer

      Joined:
      Mar 28, 2010
      Messages:
      799
      Likes Received:
      16
      Trophy Points:
      18
      Thank you. I'm not sure why it would spam AOE on the last boss of CT considering it's a single mob, but remember that you can change the settings, so maybe you could try setting the # of mobs to AOE to 99 or something.
       
    7. Kogan

      Kogan New Member

      Joined:
      Dec 10, 2012
      Messages:
      14
      Likes Received:
      0
      Trophy Points:
      1
      Thx i wil try it tomorrow :p
       
    8. stewiethecat

      stewiethecat Member

      Joined:
      Feb 4, 2011
      Messages:
      454
      Likes Received:
      0
      Trophy Points:
      16
      if you have aoe in any of your routine files, it will spam aoe on the last boss in ct,
       
    9. Exmortem

      Exmortem Community Developer

      Joined:
      Mar 28, 2010
      Messages:
      799
      Likes Received:
      16
      Trophy Points:
      18
      Updated with settings for DOTs and set the routine to not AOE during Acherus fight in CT.
       
    10. Nizaden

      Nizaden New Member

      Joined:
      Nov 3, 2013
      Messages:
      62
      Likes Received:
      0
      Trophy Points:
      0
      Very nice routine, it would be nice to see more classes getting routines like this.
       
    11. pmfutbgdfemn

      pmfutbgdfemn New Member

      Joined:
      Mar 5, 2014
      Messages:
      23
      Likes Received:
      0
      Trophy Points:
      0
      I'm getting a compiler error when I switch in the ArcherBard.cs file:

      [20:22:21.508 N] Currently a level 50 Bard[20:22:21.514 D] Reloading AssemblyLoader<ff14bot.AClasses.BotBase> - Initializing
      [20:22:22.071 D] [BotManager] Botbases have been reloaded.
      [20:22:22.071 D] Combat Assist v1.0.82.0
      [20:22:22.071 D] Fishing v1.0.82.0
      [20:22:22.071 D] Grinding v1.0.82.0
      [20:22:22.071 D] Gathering v1.0.82.0
      [20:22:22.092 D] Reloading AssemblyLoader<ff14bot.Interfaces.IBotPlugin> - Initializing
      [20:22:22.593 D] Reloading AssemblyLoader<ff14bot.Interfaces.ICombatRoutine> - Initializing
      [20:22:22.947 D] Compiler Error: c:\Users\***\Documents\FFARR\Rebornbuddy\Routines\Kupo\KupoRoutine.cs(14,7) : warning CS0105: The using directive for 'Kupo.Settings' appeared previously in this namespace
      [20:22:22.947 D] Compiler Error: c:\Users\***\Documents\FFARR\Rebornbuddy\Routines\Kupo\Rotations\ArcherBard.cs(75,54) : error CS0117: 'ff14bot.Managers.PartyManager' does not contain a definition for 'Members'
      [20:22:22.983 D] [RoutineManager] Routines have been reloaded. Current class-specific list:
      [20:22:22.985 N] Building Actioncache
      ....

      I have the ArcherBardSettings.cs in the Kupo/Settings folder already.
       
    12. Exmortem

      Exmortem Community Developer

      Joined:
      Mar 28, 2010
      Messages:
      799
      Likes Received:
      16
      Trophy Points:
      18
      Uploaded a new version of both files. Thanks.
       
    13. Nizaden

      Nizaden New Member

      Joined:
      Nov 3, 2013
      Messages:
      62
      Likes Received:
      0
      Trophy Points:
      0
      Can we get an option of when to Ballad/Army's? Specially for Ballad, can you add an option that healers mana drops below x% and for Army's make it so your tp is lower then x% and invig is down.
       
    14. Nizaden

      Nizaden New Member

      Joined:
      Nov 3, 2013
      Messages:
      62
      Likes Received:
      0
      Trophy Points:
      0
      Also noticed that the routine seems to not calculate the amount of mobs alot thus not AoEing when it should
       
    15. Exmortem

      Exmortem Community Developer

      Joined:
      Mar 28, 2010
      Messages:
      799
      Likes Received:
      16
      Trophy Points:
      18
      Im working on ballads. If AOE isn't working for you open the routine settings and change the range and number of mobs to AOE at.
       
    16. pmfutbgdfemn

      pmfutbgdfemn New Member

      Joined:
      Mar 5, 2014
      Messages:
      23
      Likes Received:
      0
      Trophy Points:
      0
      Thanks for the quick response. Awesome routine from what I've seen so far, especially Flaming Arrow and minimum health to use DoTs.

      @Nizadan
      Army's doesn't affect your own TP. Otherwise it'd be broken for AoE'ing.
      Have you checked your AoE range in the options? By default it might be set to lower than the actual aoe range of Wide Volley, etc.
       
    17. Nizaden

      Nizaden New Member

      Joined:
      Nov 3, 2013
      Messages:
      62
      Likes Received:
      0
      Trophy Points:
      0
      Army's does effect your own TP FYI.
       
    18. pmfutbgdfemn

      pmfutbgdfemn New Member

      Joined:
      Mar 5, 2014
      Messages:
      23
      Likes Received:
      0
      Trophy Points:
      0
      Huh. So it does. Damn, alright, forget what I said.
       
    19. pmfutbgdfemn

      pmfutbgdfemn New Member

      Joined:
      Mar 5, 2014
      Messages:
      23
      Likes Received:
      0
      Trophy Points:
      0
      One thing I've noticed, spells off the GCD sometimes clip each other (like they do if you mash a bunch of buttons manually), resulting in one of them not actually going off. This does not happen all the time, but does occur most often between buffs and either Flaming Arrow or Bloodletter. I assume this is a flaw within the bot itself, and I'm not sure if its something that can be fixed within a routine.

      Edit: I'm not 100% certain that this happens using solely the combat assist. If it does, its certainly less frequent. However, on fights such as Twintania, where you need to manually control your buffs, it becomes an issue if you're spamming your buff macro at the same time that Flaming Arrow or Bloodletter come off cooldown.
       
    20. Exmortem

      Exmortem Community Developer

      Joined:
      Mar 28, 2010
      Messages:
      799
      Likes Received:
      16
      Trophy Points:
      18
      I know what you mean, i'm not sure if I can help that though. I think the bot evaluates which skill to use next too quickly sometimes.
       

    Share This Page