• Visit Rebornbuddy
  • Ultima - The Ultimate Combat Routine

    Discussion in 'Combat Routines' started by Endus, Nov 25, 2014.

    1. Eklipse

      Eklipse New Member

      Joined:
      Dec 13, 2014
      Messages:
      208
      Likes Received:
      0
      Trophy Points:
      0
      I can promise you you should clip ur dots and rotate your FT and CT combos 1 to 1
       
    2. Zaylman

      Zaylman New Member

      Joined:
      May 23, 2015
      Messages:
      26
      Likes Received:
      0
      Trophy Points:
      0
      Chocobo not being summoned. I check the box to summon chocobo but its not being summoned is it something I'm doing. I have Gyshal Greens.
       
    3. Zaylman

      Zaylman New Member

      Joined:
      May 23, 2015
      Messages:
      26
      Likes Received:
      0
      Trophy Points:
      0
      never mind sorry I had setting checked to always use a different mount.
       
    4. Cloud30000

      Cloud30000 New Member

      Joined:
      May 9, 2015
      Messages:
      298
      Likes Received:
      7
      Trophy Points:
      0
      Most classes haven't been updated to use abilities over 50, and none have been officially tuned to be raid worthy. Ultima is set up so you can code in your own rotation fairly easily to behave exactly as you would like.
       
    5. Hirobo

      Hirobo New Member

      Joined:
      Aug 18, 2013
      Messages:
      114
      Likes Received:
      0
      Trophy Points:
      0
      I know that classes aren't currently ready for 50+, but I just wanted to report a small issue with Dragoon. It currently uses Battle Litany On cooldown. Just walking through town, it activates the ability. with noting targeted even.
       
    6. zidane9000123

      zidane9000123 New Member

      Joined:
      Feb 14, 2015
      Messages:
      17
      Likes Received:
      0
      Trophy Points:
      1
      Dark knight

      hey guys i have attempted to modify the dark knight profiles without any avail. i was wondering if by any chance there was a way to check or un-check darkside to minimize the loss of mp while in Grit stance?
       
    7. jamesestep1984

      jamesestep1984 Member

      Joined:
      Apr 23, 2015
      Messages:
      46
      Likes Received:
      0
      Trophy Points:
      6
      Hello everyone, I have 2 questions. 1 i can't get my summon chocobo to ever work. and 2 what routines are you guys using for drg and smn. the one that comes with a bot or is there a better one out there. I've been trying to read through all 115 pages but either i'm missing them or i'm just retarded. If you could please help me along. Thanks^^
       
    8. solo1420

      solo1420 Member

      Joined:
      Oct 13, 2011
      Messages:
      307
      Likes Received:
      0
      Trophy Points:
      16
      summon chocobo isnt working anymore since a few updates ago.
       
    9. kei220

      kei220 Member

      Joined:
      May 22, 2015
      Messages:
      78
      Likes Received:
      0
      Trophy Points:
      6
      Was working for me few days ago not sure as for today, check if its working with kupo
       
    10. Zaylman

      Zaylman New Member

      Joined:
      May 23, 2015
      Messages:
      26
      Likes Received:
      0
      Trophy Points:
      0
      If you have the setting to "always use this mount" on for a different mount then it won't summon chocobo.
       
    11. solo1420

      solo1420 Member

      Joined:
      Oct 13, 2011
      Messages:
      307
      Likes Received:
      0
      Trophy Points:
      16
      yeah thanks that was the problem
       
    12. jimboyyy

      jimboyyy New Member

      Joined:
      Nov 14, 2012
      Messages:
      8
      Likes Received:
      0
      Trophy Points:
      0
      I've been playing monk for a few weeks now with Ultima as my main routine and I'm very happy with the performance except for a few things.

      • Is it possible to change so it opens with Dragon Kick instead of ToD?
      • Is it possible to change that whenever I cast Meditation, my damage cooldowns such as BFB and IR won't be cast aswell? Not sure if it's intended but it sure is annoying.
      I would change this myself if I could but I have no idea how to.

      Thanks in advance. :)
       
    13. scorpinot

      scorpinot Member

      Joined:
      Oct 1, 2014
      Messages:
      133
      Likes Received:
      1
      Trophy Points:
      18
      Swapped to my level 1 THM, started RB using the Ultima routine then came back 3 weeks later and am still level 1.
      Hypothetical example. The routine tries to cast fire at level 1 which isn't unlocked until lv2.
       
    14. Cloud30000

      Cloud30000 New Member

      Joined:
      May 9, 2015
      Messages:
      298
      Likes Received:
      7
      Trophy Points:
      0
      The problem isn't that it tries to cast fire; the problem is that it won't cast Blizzard while mana isn't low.

      Code:
      private async Task<bool> Blizzard()
              {
                  if (UmbralAura &&
                      Core.Player.CurrentManaPercent < 90)
                  {
                      return await MySpells.Blizzard.Cast();
                  }
                  if (!UmbralAura &&
                      LowMP &&
                      !Actionmanager.HasSpell(MySpells.BlizzardIII.Name))
                  {
                      return await MySpells.Blizzard.Cast();
                  }
                  return false;
              }
      needs to be

      Code:
      private async Task<bool> Blizzard()
              {
                  if [B]([/B](UmbralAura &&
                      Core.Player.CurrentManaPercent < 90)[B] || Core.Me.ClassLevel < 2)[/B]
                  {
                      return await MySpells.Blizzard.Cast();
                  }
                  if (!UmbralAura &&
                      LowMP &&
                      !Actionmanager.HasSpell(MySpells.BlizzardIII.Name))
                  {
                      return await MySpells.Blizzard.Cast();
                  }
                  return false;
              }
       
    15. phdchristmas

      phdchristmas New Member

      Joined:
      Dec 20, 2014
      Messages:
      56
      Likes Received:
      0
      Trophy Points:
      0
      With Ninja directional changes with HW, Aeolian Edge should only be cast when behind the target. So while soloing using Aeolian Edge while the target is facing you, would seem strange to onlookers. I tried changing aeolian edge for behind only uses, to no success.

      Aeolian Edge
      Behind: 320 Potency
      Not behind: 240
      TP cost: 60

      Dancing Edge:
      any direction:260
      TP cost: 50
       
    16. phdchristmas

      phdchristmas New Member

      Joined:
      Dec 20, 2014
      Messages:
      56
      Likes Received:
      0
      Trophy Points:
      0
      When Dancing Edge is unchecked in the UI, the routine will go from spinning slash > gust slash then return back to gust slash, when it should be following through with aeolian edge.
       
    17. stewiethecat

      stewiethecat Member

      Joined:
      Feb 4, 2011
      Messages:
      454
      Likes Received:
      0
      Trophy Points:
      16
      Like It says in the post, I'm not supporting this. Basically I'm not playing ninja anymore.

      I made the routine to always use dancing edge, because dancing edge or storm's eye should always be on your target.
       
      Last edited: Sep 3, 2015
    18. lilone

      lilone New Member

      Joined:
      Sep 4, 2015
      Messages:
      9
      Likes Received:
      0
      Trophy Points:
      1
      Hi sorry to bother but how do you get this to run? I set it up under routines and its right under my kupo folder and I have also updated it with the svn many times but I do not have the options to switch from kupo to it. Can anyone help me please?
       
    19. y2krazy

      y2krazy Community Developer

      Joined:
      Jun 21, 2011
      Messages:
      2,803
      Likes Received:
      70
      Trophy Points:
      48
      Did you restart RB after putting it in the Routines folder? What class are you using? I've been running Ultima all day.
       
    20. lilone

      lilone New Member

      Joined:
      Sep 4, 2015
      Messages:
      9
      Likes Received:
      0
      Trophy Points:
      1
      Yes I went threw all the restarts even reinstalls and it still does not show up in my rebornbuddy as far as any choices, I've even tried to copy it to many other folders to get it to read but it still shows nothing
       

    Share This Page