• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • New Warrior CC - taking expressions of interest

    Discussion in 'Archives' started by fpsware, Mar 8, 2010.

    ?

    Do we need a new Warrior CC

    1. Yes - We need a new Warrior CC

      0 vote(s)
      0.0%
    2. No - We DON'T need a new Warrior CC

      0 vote(s)
      0.0%
    3. I don't really care I don't play a Warrior and havn't looked at whats available

      0 vote(s)
      0.0%
    4. I just like voting in polls so I chose this option - and this poll has chocolate cake

      0 vote(s)
      0.0%
    Thread Status:
    Not open for further replies.
    1. fpsware

      fpsware Community Developer

      Joined:
      Jan 15, 2010
      Messages:
      5,287
      Likes Received:
      133
      Trophy Points:
      63
      This is a bug I recently introduced. In order to chase runners and stay on top of them I made some changes to the movement code, this bug is an unexpected side effect. I've noticed its a 50/50 chance of running past the mob once its dead. I'll see if I can smooth this out a little.
       
    2. zomgmage

      zomgmage Member

      Joined:
      Jan 15, 2010
      Messages:
      610
      Likes Received:
      2
      Trophy Points:
      18
      I used likwarrior from 60-71 and it ran semi ok, ATM im lvl 71 pulling 150k a hour in arms spec... will give this a try later tonight once i shut one of my GBs off =)

      Cant wait to see the final product.
       
    3. zomgmage

      zomgmage Member

      Joined:
      Jan 15, 2010
      Messages:
      610
      Likes Received:
      2
      Trophy Points:
      18
      been running this for the past hour and its great so far! the warrior really knocks em dead.

      nvm, saw it does use bladestorm on adds. great CC!
       
      Last edited: Mar 11, 2010
    4. fpsware

      fpsware Community Developer

      Joined:
      Jan 15, 2010
      Messages:
      5,287
      Likes Received:
      133
      Trophy Points:
      63
      Bladestorm on adds.

      Multiple pull is the same as adds. If more than 1 mob has aggro on you "you've got adds".
       
    5. fpsware

      fpsware Community Developer

      Joined:
      Jan 15, 2010
      Messages:
      5,287
      Likes Received:
      133
      Trophy Points:
      63
      This is the final build before public release. A number of spells only cast when in correct stance. Will perform a rage level check before attempting to cast spells. It will do a minor stance dance when approaching a mob, if you're in Def or Berserker it will quickly swap to Battle stance in order to cast Charge - some logic checks are performed before doing this.
       
    6. Tricen

      Tricen Community Developer

      Joined:
      Jan 21, 2010
      Messages:
      331
      Likes Received:
      6
      Trophy Points:
      18
      I'm sure it will be great FPS! Your a god!
       
    7. fpsware

      fpsware Community Developer

      Joined:
      Jan 15, 2010
      Messages:
      5,287
      Likes Received:
      133
      Trophy Points:
      63
      Funny you should mention that. Hawker, this is what I'm talking about :D
       
      xopherw likes this.
    8. catbert

      catbert Member

      Joined:
      Feb 24, 2010
      Messages:
      135
      Likes Received:
      0
      Trophy Points:
      16
      Hey, just wondering is first aid implemented yet? And also what spec is the best way to go any one got a talent tree to show me? Would be greatly appreciated, thanks!
       
    9. xopherw

      xopherw New Member

      Joined:
      Jan 15, 2010
      Messages:
      180
      Likes Received:
      0
      Trophy Points:
      0
      working very well for me as 66 fury. making about 20k xp/hr more than likwarrior in same area on bliiiks horde 58-68. much faster killing = )

      +rep
       
    10. xopherw

      xopherw New Member

      Joined:
      Jan 15, 2010
      Messages:
      180
      Likes Received:
      0
      Trophy Points:
      0
      i never see execute go off?

      nvm ... i turned it on and now its working = )
       
      Last edited: Mar 12, 2010
    11. Chemdawg

      Chemdawg New Member

      Joined:
      Feb 18, 2010
      Messages:
      258
      Likes Received:
      0
      Trophy Points:
      0
      FPSWARE is god.. new build rocks about 20k increase now.. even after leveling.. at 71 atm.. looted 2000 times last night only died 3 even in a area were it pulls up to 4 mobs commonly..

      only died 3 times bc i was out of food..
       
      Last edited: Mar 12, 2010
    12. Joker76

      Joker76 Member

      Joined:
      Feb 8, 2010
      Messages:
      835
      Likes Received:
      9
      Trophy Points:
      18
      Hoping it will be added soon. My Warrior is dying alot in the late 20s. I think it's mostly due to the profile I'm using, not the CCs fault.

      But having First Aid will certainly increase survivability.
       
    13. floundizzle

      floundizzle New Member

      Joined:
      Feb 13, 2010
      Messages:
      11
      Likes Received:
      0
      Trophy Points:
      0
      Made a few changes to your arms logic. All changes I made in ordering were to make it match elitistjerks arms warrior ability priority

      In Combat()

      Changed so it doesn't zerker arms warriors in pvp, we dont do that.
      if ( InBattleGround() && IsKnownSpell( "Berserker Stance" ) && IsArmsSpec == false)

      removed overpower, it is spec specific
      removed rend ,it is spec specific
      removed CheckProcAbilities in favor of individual checking in CombatArms
      removed VictoryRush to prioritize it in CombatArms

      Made a few other changes removing some functions that were being called several times (ie addcheck before and after thunderclap). Waiting to make sure no bugs are present and then I'll detail changes.

      Here is the new CombatArms() - note: just added victory rush to it and haven't tested that - assumed working. Also it needs a regular overpower slapped in there.
      Code:
      public void CombatArms()
              {
                  try
                  {
                      
                      slog("START CombatArms()", true);
                      DistanceCheck();
                      if ( ShouldRend ) { Rend(); }
                      if ( IsBuffOnMeLUA( "Taste for Blood" ) && !IsSpellOnCooldown( "Overpower" ) ) { slog( "Taste for Blood PROC!" ); Overpower(); return; }
                      if ( IsBuffOnMeLUA( "Sudden Death" ) && useExecute ) { slog( "Sudden Death PROC!" ); Execute(); return; }
                      if ( ShouldMortalStrike ) { MortalStrike(); }
                      VictoryRush();
                      if ( ShouldExecute ) { Execute(); }
                      if ( useBerserkerRage ) { BerserkerRage(); }
                      
                      //Change - arms warrios do not have death wish
                      //if (useDeathWish) { DeathWish(); }
                      
                      //Maybe with a distance check, otherwise waste of rage
                      //HeroicThrow();
                      
                  }
                  finally
                  {
                      slog("END CombatArms()", true);
                  }
      
              }
      ElitistJerks FAQ outlining the arms rotation (it assumes you have imp slam, i did not)
      ElitistJerks FAQ outlining fury rotation(I didn't make any fury changes other than removing rend/overpower from Combat())

      Unsolved issue - Bladestormed after fearing, not sure if it happens in your version but mine just did it. Perhaps a check on the target for a fear debuff before bladestorming?

      Props on a great beta for a custom class, already leaps and bounds above the default. Was so sick of default I was just starting to write my own, but changing your logic saved me tons of time :D. After you release the next version I'll see if there is anything else I can find.
       
      Last edited: Mar 12, 2010
    14. xopherw

      xopherw New Member

      Joined:
      Jan 15, 2010
      Messages:
      180
      Likes Received:
      0
      Trophy Points:
      0


      not bad for a first post. = )
       
    15. floundizzle

      floundizzle New Member

      Joined:
      Feb 13, 2010
      Messages:
      11
      Likes Received:
      0
      Trophy Points:
      0
      Quality > Quantity :)
       
    16. zomgmage

      zomgmage Member

      Joined:
      Jan 15, 2010
      Messages:
      610
      Likes Received:
      2
      Trophy Points:
      18
      Ive been running your newest build all day and its great. But after watchin it for the last hour I've noticed the target system is really erratic. It will target a mob, start running twards it... Switch to a new mob and switch direction... Switch back to the orignal mob and then sometimes it will just turn around and go the other direction. Also a few times it will target a mob, run past it and keep going until it gets argo from a 2nd mob.. then turn back around and drag it back to the first.

      Its been a few releases since I've used HB so i'm not sure if this is CC, HB, or Profile problem.

      any advice you can give me would be great though.
       
    17. Shadowmarkus

      Shadowmarkus New Member

      Joined:
      Feb 15, 2010
      Messages:
      156
      Likes Received:
      1
      Trophy Points:
      0
      Switched to this CC, and it really is a good upgrade :O Way better combat routine, and it actually changes stance to charge.. .:> But, one thing I havn't seen it do yet, is Execute, no idea why. But this is the typical combat routine:

      Battle Shout
      Victory Rush
      Bloodthirst
      Hamstring
      Heroic Strike
      Berserker Rage
      Heroic Strike

      (Copied directly from HB window)

      NVM! I was being a retard. Didn't spot the setting for usage of execute. Sorry.
       
      Last edited: Mar 13, 2010
    18. hokumera

      hokumera New Member

      Joined:
      Jan 18, 2010
      Messages:
      152
      Likes Received:
      0
      Trophy Points:
      0
      Fps, are you still supporting this project?
       
    19. fpsware

      fpsware Community Developer

      Joined:
      Jan 15, 2010
      Messages:
      5,287
      Likes Received:
      133
      Trophy Points:
      63
      Yes of cause. Why wouldn't I be?

      I'm still working on it, still tweaking a few settings before releasing it.
       
    20. hokumera

      hokumera New Member

      Joined:
      Jan 18, 2010
      Messages:
      152
      Likes Received:
      0
      Trophy Points:
      0
      Ah, I just didn't know. You have a lot of CCs you are working on atm.
       
    Thread Status:
    Not open for further replies.

    Share This Page