• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Decided to make a PvPRogue CC, Need some help and input.

    Discussion in 'Honorbuddy Forum' started by swiny, Feb 23, 2012.

    1. swiny

      swiny Banned

      Joined:
      Dec 19, 2010
      Messages:
      517
      Likes Received:
      73
      Trophy Points:
      0
      Hey guys,

      ive been going threw all the rogue class's and they really do seem to fail quiet hard.

      i have started my public version of a rogue class.
      i want to get into extreme details with this

      im after some people who are 2k+ arena rating and have extremly good knowledge of a rogue
      i myself /was/ a rogue, but i was always mutt spec in wotlk and never played Sub

      i will be focusing extremly on Sub, then Assas

      If you can help me out jump on Mirc #WoWGather, or PM me if you have MSN.

      this will be my progression ETC. -> swiny - all my stuff - Google Project Hosting
       
      Last edited: Feb 23, 2012
      Verum likes this.
    2. OmniRed

      OmniRed New Member

      Joined:
      Aug 14, 2010
      Messages:
      366
      Likes Received:
      1
      Trophy Points:
      0
      I'm glad you're doing this, I'm having a lot of trouble with rogue CC's for both PVP and Raiding. I'd be happy to help with whatever i can.
       
    3. swiny

      swiny Banned

      Joined:
      Dec 19, 2010
      Messages:
      517
      Likes Received:
      73
      Trophy Points:
      0
      just need as much as possible info needed.


      for Sub,
      for each class -> what is your opener? - reason.

      etc
       
    4. Llamahump2k3

      Llamahump2k3 New Member

      Joined:
      Jan 16, 2012
      Messages:
      40
      Likes Received:
      1
      Trophy Points:
      0
      On Melee Classes I usually use CS, on Casters Garrote for the silence effect, Then spam HEMO to get combo points up ( this is my build by the way ) then Kidney shot, Go into shadow dance and shadow step behind, spam ambush, then Evisc when I can. Rinse repeat. The nice thing about waiting for shadow step is that IF and most do either blink or pesky hunters decide to trinket then disengage, I teleport right behind them and start to do damage on them anyways. If you want I can get down to the nitty gritty on how I play when it comes down to cool downs etc etc.
       
    5. Filmfilm

      Filmfilm Member Legendary

      Joined:
      Jan 15, 2010
      Messages:
      118
      Likes Received:
      1
      Trophy Points:
      18
    6. swiny

      swiny Banned

      Joined:
      Dec 19, 2010
      Messages:
      517
      Likes Received:
      73
      Trophy Points:
      0
      Last edited: Feb 24, 2012
    7. swiny

      swiny Banned

      Joined:
      Dec 19, 2010
      Messages:
      517
      Likes Received:
      73
      Trophy Points:
      0
    8. Saif

      Saif Member

      Joined:
      Aug 10, 2010
      Messages:
      192
      Likes Received:
      1
      Trophy Points:
      18
      Swiny I'm really excited about this mate! I can't wait to pwn some noobs with it! I'm actually using this along with a sub/pvp rotation from pqrotation. Yours opens and pqr continues through its progression an it is very effective. On a side note the noxxic link above actually is to the pve sub page not the pvp page. Anyways hope all is well.

      Saif
       
    9. Saif

      Saif Member

      Joined:
      Aug 10, 2010
      Messages:
      192
      Likes Received:
      1
      Trophy Points:
      18
      Any updates to this lately swiny? I'm looking forward to a finished product :). Love all your work!

      Saif
       
    10. swiny

      swiny Banned

      Joined:
      Dec 19, 2010
      Messages:
      517
      Likes Received:
      73
      Trophy Points:
      0
      Getting there, only need to add a couple of more things then some massive testing time ( i dont even have a rogue so i dunno how im gunna do that )

      it should support all rogues from level 15-85

      Code:
      
              public static void pulse()
              {
                  if (!Utils.SafeChecks.CombatReady) return;
      
                  // If target is running, we need to chase!
                  if (Spells.Shadowstep.CanRun) Spells.[B]Shadowstep[/B].Run();
                  if (Spells.Sprint.CanRun) Spells.[B]Sprint[/B].Run();
      
                  // Our main moves!
                  if (Spells.Ambush.CanRun) Spells.[B]Ambush[/B].Run();
                  if (Spells.ShadowDance.CanRun) Spells.[B]ShadowDance[/B].Run();
      
                  // Defensives
                  if (Spells.Evasion.CanRun) Spells.[B]Evasion[/B].Run();
                  if (Spells.Kick.CanRun) Spells.[B]Kick[/B].Run();
                  if (Spells.CombatReadiness.CanRun) Spells.[B]CombatReadiness[/B].Run();
      
                  // Special Moves
                  if (Spells.Shiv.CanRun) Spells.[B]Shiv[/B].Run();
                  if (Spells.Dismantle.CanRun) Spells.[B]Dismantle[/B].Run();
      
                  // Finishing moves.
                  if (Spells.Recuperate.CanRun) Spells.[B]Recuperate[/B].Run();
                  if (Spells.SliceandDice.CanRun) Spells.[B]SliceandDice[/B].Run();
                  if (Spells.Eviscerate.CanRun) Spells.[B]Eviscerate[/B].Run();
                  
      
                  // if we are not close enough do nothing
                  if (!StyxWoW.Me.CurrentTarget.IsWithinMeleeRange) return;
                  
                  Spell.Cast(Spells.MainMove.GetName, StyxWoW.Me.CurrentTarget);
              }
      
      
      
      public static string GetName
              {
                  // Hemorrhage - [Sub Spec] [ infront ] - Must have up at all times
                  // Backstab - 18 [ Behind ]
                  // Sinister Strike - lowbie 
                  get
                  {
                      // Frame lock it, as we are calling CanCast.
                      using (new FrameLock())
                      {
                          // First check if we need to re-apply the bleed
                          if (Spell.HasCanSpell("Hemorrhage") && !Spell.HasMyAura("Hemorrhage", StyxWoW.Me.CurrentTarget))
                              return "Hemorrhage";
      
                          // Behind Check
                          if (StyxWoW.Me.CurrentTarget.MeIsBehind && Spell.HasCanSpell("Backstab"))
                              return "Backstab";
      
                          // Check if we can cast hemorrhage
                          if (Spell.HasCanSpell("Hemorrhage"))
                              return "Hemorrhage";
      
                          // Last resort is Sinister Strike
                          return "Sinister Strike";
                      }
                  }
              }
      

      Pull
      Code:
      public static class Pull
          {
              public static void Pulse()
              {
                  // Lets open!
                  Spell.Cast(OpenerName, StyxWoW.Me.CurrentTarget);               
              }
      
              /// <summary>
              /// Gets the spellname for the opener
              /// </summary>
              /// <returns>SpellName</returns>
              public static string OpenerName
              {
                  get
                  {
                      // Frame lock it, as we are calling CanCast.
                      using (new FrameLock())
                      {
                          if (Spell.HasCanSpell("Garrote")) // 40 - Garrote 
                          {
                              return "Garrote";
                          }
                          else if (Spell.HasCanSpell("Cheap Shot")) // 26 - Cheap Shot
                          {
                              return "Cheap Shot"; 
                          }
      
                          // Last resort is ambush
                          // if they dont have this, they seriously need to quit life.
                          return "Ambush";
                      }
                  }
              }
          }
      
       
      Last edited: Feb 29, 2012
    11. Kronz

      Kronz New Member

      Joined:
      Jan 17, 2012
      Messages:
      497
      Likes Received:
      3
      Trophy Points:
      0
      Swiny, can I request that when you are done with this, you also make a Lock CC ? Most Lock CC's here are total fail at raiding or PVP and I would love to see a decent one for my lock, too.

      I am sick of failing to pull 20K DPS with ilvl 384 gear.
       
    12. Llamahump2k3

      Llamahump2k3 New Member

      Joined:
      Jan 16, 2012
      Messages:
      40
      Likes Received:
      1
      Trophy Points:
      0
      I'd be glad to test, full cata rogue
       
    13. Verum

      Verum New Member

      Joined:
      Oct 23, 2011
      Messages:
      172
      Likes Received:
      0
      Trophy Points:
      0
      Im also up for testing this, level 81 rogue atm
       
    14. Verum

      Verum New Member

      Joined:
      Oct 23, 2011
      Messages:
      172
      Likes Received:
      0
      Trophy Points:
      0
      Ok, done a a few bgs and this is a list of suggestions

      Subtlety:

      - Cast Kidney Shot first time it gets 5 combos and Eviscerate for every next 5 until kidney is up again
      - Vanish when struck by multiple players and reopen on the one with lovest health
      - Make it do something when rooted, immobile xD like do a fan of knives or throw or anything just not stand idle
      - Backstab always when behind target
      - Evasion when struck in melee by multiple players or when fighting a melee and under 50%
      - Shadow dance after casting kidney, go behind the target and spam ambush, if shadow dance on cd spam backstab
      - Sprint to reach the target
       
    15. swiny

      swiny Banned

      Joined:
      Dec 19, 2010
      Messages:
      517
      Likes Received:
      73
      Trophy Points:
      0
      sub rogues never use kidney shot.
      and rest is already coded in, but in more detailed :)

      it should do good ( once i have some testers who can jump on MIRC ) to help me out test it as i dont have a rogue.
       
    16. Verum

      Verum New Member

      Joined:
      Oct 23, 2011
      Messages:
      172
      Likes Received:
      0
      Trophy Points:
      0
      thats stun locking, and thats just how i play in bgs

      was just a suggestion :)
       
    17. Verum

      Verum New Member

      Joined:
      Oct 23, 2011
      Messages:
      172
      Likes Received:
      0
      Trophy Points:
      0
      Testing it now,

      much better than yesterdays version! Will report tonight
       
    18. swiny

      swiny Banned

      Joined:
      Dec 19, 2010
      Messages:
      517
      Likes Received:
      73
      Trophy Points:
      0
      Me and agia have spent most of today testing and getting bugs out, we just finished for today but will continue on tomm
      It's about 85% done, by far one of best cc's already.

      You can try it out from svn from page behind
      It's still buggy but works for testing if u wanna try it
       
    19. zipz

      zipz New Member

      Joined:
      Feb 2, 2012
      Messages:
      3
      Likes Received:
      0
      Trophy Points:
      0
      This is awesome, gonna test it tonight, currently lvling a rogue now @ 65. will let you know!
       
    20. parvatin

      parvatin New Member

      Joined:
      Dec 14, 2011
      Messages:
      20
      Likes Received:
      0
      Trophy Points:
      1
      am I doing something wrong
      I only get
      [SwInY - PvPRogue] Loading
      [SwInY - PvPRogue] Version: 1.0
      [SwInY - PvPRogue] Spec Detected: Subtlety
      Starting the bot!
      This profile does not contain any profiles fitting the character!
      Changing current profile to Empty Profile
      [SwInY - PvPRogue] Applying [Instant Poison] to main hand
      [SwInY - PvPRogue] Applying [Crippling Poison] to off hand
      [SwInY - PvPRogue] Applying [Instant Poison] to main hand
      [SwInY - PvPRogue] Applying [Crippling Poison] to off hand
      [SwInY - PvPRogue] Applying [Instant Poison] to main hand
      [SwInY - PvPRogue] Applying [Crippling Poison] to off hand
      [SwInY - PvPRogue] Applying [Instant Poison] to main hand
      [SwInY - PvPRogue] Applying [Crippling Poison] to off hand
      [SwInY - PvPRogue] Applying [Instant Poison] to main hand
      [SwInY - PvPRogue] Applying [Crippling Poison] to off hand
      [SwInY - PvPRogue] Applying [Instant Poison] to main hand
      [SwInY - PvPRogue] Applying [Crippling Poison] to off hand
      [SwInY - PvPRogue] Applying [Instant Poison] to main hand
      [SwInY - PvPRogue] Applying [Crippling Poison] to off hand
      [SwInY - PvPRogue] Applying [Instant Poison] to main hand
      [SwInY - PvPRogue] Applying [Crippling Poison] to off hand
      [SwInY - PvPRogue] Applying [Instant Poison] to main hand
      [SwInY - PvPRogue] Applying [Crippling Poison] to off hand
      [SwInY - PvPRogue] Applying [Instant Poison] to main hand
      [SwInY - PvPRogue] Applying [Crippling Poison] to off hand
      [SwInY - PvPRogue] Applying [Instant Poison] to main hand
      [SwInY - PvPRogue] Applying [Crippling Poison] to off hand
      [SwInY - PvPRogue] Applying [Instant Poison] to main hand
      [SwInY - PvPRogue] Applying [Crippling Poison] to off hand
       

    Share This Page