[PQR] MOP profiles menu

Shout-Out

User Tag List

Page 17 of 24 FirstFirst ... 131415161718192021 ... LastLast
Results 241 to 255 of 351
  1. #241
    jyggns's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone got a link for an enhancement shaman profile? Can't really find it. Tryed to figure out how to make one on my own, but I guess I'm not skilled enough to do that ;-).

    [PQR] MOP profiles
  2. #242
    endersblade's Avatar Member
    Reputation
    1
    Join Date
    May 2009
    Posts
    52
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jyggns View Post
    Anyone got a link for an enhancement shaman profile? Can't really find it. Tryed to figure out how to make one on my own, but I guess I'm not skilled enough to do that ;-).
    Obviously didn't look very hard, this thread is like 3 down from this one lol.

    http://www.ownedcore.com/forums/worl...9012012-a.html ([PQR] List of Community Rotations - Updated 09012012)

  3. #243
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The laziness of people registering at this site is astonishing, yet nice of you to post the link :3

  4. #244
    ziggar's Avatar Active Member CoreCoins Purchaser
    Reputation
    67
    Join Date
    Jul 2008
    Posts
    324
    Thanks G/R
    51/43
    Trade Feedback
    5 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Will donate when i can, looking good.

  5. #245
    freaki's Avatar Member
    Reputation
    12
    Join Date
    Dec 2008
    Posts
    85
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How we looking on the 90 shadow priest pve rotation sheepmoon?
    the 5.04 one is still working ok but lacking halo etc.
    keep up the good work.

  6. #246
    Tanzor's Avatar Contributor
    Reputation
    85
    Join Date
    Aug 2007
    Posts
    290
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Could someone tell me how to add Elemental Blast To the rotation?
    It's used whenever its not on cooldown
    Elemental shaman

  7. #247
    royoneal213's Avatar Sergeant
    Reputation
    7
    Join Date
    Mar 2012
    Posts
    49
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Regarding the Demo Warlock Profile, great work! Especially dodging the cap by weaving demonic form. I am concerned, however, about the hard-cast soulfire after Molten Core procs are gone. I guess it registers that a proc is still there and precasts? I'm not sure, really. Other than that it looks great.

    Maybe there is a way to set a rule for # of stacks of MC procs or something. Anyway, what I'm doing right now is just using a /stopcasting macro and since I know when to use it it's not a big loss, but still worries me and kind of frustrating watching for it haha. Solid profiles all around, nonetheless. +Rep!

    Edit: Subscribed to post.
    Last edited by royoneal213; 09-27-2012 at 04:52 PM. Reason: Subscribe

  8. #248
    ls1001's Avatar Member
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Loving your sub rogue pve profile!! Is there any way to incorporate Crimson Tempest (ID: 121411) into the rotation?? Napkin math has it doing more than eviscerate

  9. #249
    Decaed's Avatar Master Sergeant
    Reputation
    22
    Join Date
    Jun 2012
    Posts
    134
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by royoneal213 View Post
    Regarding the Demo Warlock Profile, great work! Especially dodging the cap by weaving demonic form. I am concerned, however, about the hard-cast soulfire after Molten Core procs are gone. I guess it registers that a proc is still there and precasts? I'm not sure, really. Other than that it looks great.

    Maybe there is a way to set a rule for # of stacks of MC procs or something. Anyway, what I'm doing right now is just using a /stopcasting macro and since I know when to use it it's not a big loss, but still worries me and kind of frustrating watching for it haha. Solid profiles all around, nonetheless. +Rep!

    Edit: Subscribed to post.
    I was having the same issue, so I had to adjust the code myself. The profile, for whatever reason, always casts a second soul fire even after MC has dropped off, so this code will only start casting SF when there is at least 2 stacks of MC (because it will always cast a second - that way you'll never hard cast it)

    PHP Code:
    if UnitBuffID("player",122355)
    and 
    select(4UnitBuffID("player"122355)) >= 2
    and select(2,GetSpellCooldown(6353)) < 1
    and GetShapeshiftForm("player") ~= 1
    then 
    return true
    end 
    If you need help to update the code, let me know and I'll upload mine for you. As long as that's cool with Sheep.
    Last edited by Decaed; 09-27-2012 at 09:09 PM.

  10. #250
    royoneal213's Avatar Sergeant
    Reputation
    7
    Join Date
    Mar 2012
    Posts
    49
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Decaed View Post
    I was having the same issue, so I had to adjust the code myself. The profile, for whatever reason, always casts a second soul fire even after MC has dropped off, so this code will only start casting SF when there is at least 2 stacks of MC (because it will always cast a second - that way you'll never hard cast it)

    PHP Code:
    if UnitBuffID("player",122355)
    and 
    select(4UnitBuffID("player"122355)) >= 2
    and select(2,GetSpellCooldown(6353)) < 1
    and GetShapeshiftForm("player") ~= 1
    then 
    return true
    end 
    If you need help to update the code, let me know and I'll upload mine for you. As long as that's cool with Sheep.
    Solid! Thanks! +Rep

  11. #251
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi Sheep, was wondering if you were thinking about implementing any of the new talents to the profiles, such as Natures Vigil or Dream of Cenarius for your Boomkin-profile, something that makes it tell which talent you are using at the moment, and use it.

  12. #252
    Xound's Avatar Sergeant
    Reputation
    11
    Join Date
    Sep 2012
    Posts
    62
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there a guide on the basics of editing these rotations?

    I'd like to implement Death Strike when Glyph of Dark Succor is active, mainly at the start of the rotation when HP is less than say 80%, are things like that possible with this coding?

    Or, using Soul Reaper @ 35% etc.

    Sorry for 101 questions I was googling around but haven't found anything interesting.

  13. #253
    daveyboyuk's Avatar Active Member
    Reputation
    31
    Join Date
    May 2009
    Posts
    201
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    imdasandman and kinkehs profiles both have soul reaper but they dont work for some reason

  14. #254
    Kinkeh's Avatar Established Member
    Reputation
    243
    Join Date
    Jan 2012
    Posts
    450
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by daveyboyuk View Post
    imdasandman and kinkehs profiles both have soul reaper but they dont work for some reason
    Mine is only used on actual raid bosses(so wouldn't on quest mobs/dungeon mobsw) and when their HP is bellow 35%.

  15. #255
    Muhammad.R1's Avatar Member
    Reputation
    13
    Join Date
    Mar 2009
    Posts
    60
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Has anyone else been having problems with all resto shaman profiles? Not just sheepmoon even sheurons and veu's resto profiles i've tried.

    They're all giving me a invalid target error and spams it constantly with you being unable to do anything

    If anyone could help i'd really really appreciate it!
    Thanks <3

Page 17 of 24 FirstFirst ... 131415161718192021 ... LastLast

Similar Threads

  1. [PQR] - GRB profiles
    By GRB in forum WoW Bot Maps And Profiles
    Replies: 8
    Last Post: 05-23-2013, 01:43 AM
  2. [PQR] Mage Profiles
    By discobob in forum WoW Bot Maps And Profiles
    Replies: 11
    Last Post: 04-07-2013, 04:46 PM
  3. PQR Request : Shaman Enhencement 5.1 MOP Profiles
    By Pluviuss in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 03-02-2013, 11:21 PM
  4. [PQR] MoP set-up, help! Feral Druid PVE profiles?
    By zexa1 in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 01-20-2013, 08:21 PM
  5. PQR Old profiles
    By Fumi in forum WoW Bots Questions & Requests
    Replies: 2
    Last Post: 05-08-2012, 02:35 PM
All times are GMT -5. The time now is 01:09 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search