[PQR] Cpoworks's PQR profiles menu

User Tag List

Page 2 of 17 FirstFirst 123456 ... LastLast
Results 16 to 30 of 247
  1. #16
    oswalt0's Avatar Corporal
    Reputation
    12
    Join Date
    Nov 2009
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Add Aberration to Turn Undead,

    Code:
    if type == "Undead" or type == "Demon" or type == "Aberration" then
    And if you could go with Sac'ing Freezing Traps on the healer and not the dps, that would be awesome, if possible.
    Last edited by oswalt0; 04-10-2013 at 04:17 PM.

    [PQR] Cpoworks's PQR profiles
  2. #17
    irri's Avatar Corporal
    Reputation
    1
    Join Date
    Oct 2011
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by irri View Post
    Hi, tx 4 profile, m8.
    Can u add more "Hot button"? Maybe grounding, healeang rain, Hex to mousover?
    repeat, very need hex mousover

  3. #18
    Damned1's Avatar Member
    Reputation
    2
    Join Date
    Feb 2008
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there any way to incorporate unleash elements into the ele profile? Thanks!

  4. #19
    highend01's Avatar Member
    Reputation
    1
    Join Date
    Mar 2013
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there any way to incorporate unleash elements into the ele profile
    Would like to see this as well

  5. #20
    xLegendx's Avatar Member
    Reputation
    14
    Join Date
    Sep 2011
    Posts
    827
    Thanks G/R
    3/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hmm, shame.
    Enhance shams in pvp aren't in a bad position this patch or next patch.

  6. #21
    Albanuva's Avatar Master Sergeant
    Reputation
    8
    Join Date
    Dec 2011
    Posts
    119
    Thanks G/R
    0/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by irri View Post
    repeat, very need hex mousover
    Code:
    if IsRightAltKeyDown() then
    	return true
    end
    Spell ID: 51514
    Target: Mouseover

    Very simple way to add in rotation, just make a new ability and add to your rotation, it would do a Hex @ Mouseover on right alt pulsed.

  7. #22
    irri's Avatar Corporal
    Reputation
    1
    Join Date
    Oct 2011
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Albanuva View Post
    Code:
    if IsRightAltKeyDown() then
    	return true
    end
    Spell ID: 51514
    Target: Mouseover

    Very simple way to add in rotation, just make a new ability and add to your rotation, it would do a Hex @ Mouseover on right alt pulsed.
    tx a lot, m8

  8. #23
    cpowroks's Avatar Contributor
    Reputation
    180
    Join Date
    Oct 2007
    Posts
    623
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sorry, i've been away lately I got a new job and its been quite hellish. I'll try to catch up on profile fixes tonight and tomorrow.
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  9. #24
    cpowroks's Avatar Contributor
    Reputation
    180
    Join Date
    Oct 2007
    Posts
    623
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Something like this will work alot better. and its multi puropse.

    PHP Code:
    if HexKey then    
    if UnitExists("mouseover")   
     and 
    UnitIsEnemy("mouseover""player")    
    and 
    PQR_IsOutOfSight("mouseover"0.1) == false    
    and IsSpellInRange("Hex""mouseover") == 1 then        
        CastSpellByID
    (51514"mouseover")    
    end           

     
    if UnitExists("focus")    
    and 
    UnitIsEnemy("focus""player")    
    and 
    PQR_IsOutOfSight("focus"0.1) == false   
    and IsSpellInRange("Hex""focus") == 1 then        
        CastSpellByID
    (51514"focus")    
    end
    end 


    Will hex your mouseover if its an enemy and in los/range and if you dont have a mouse over then it will hex your focus if it exists/inrange/los
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  10. #25
    cpowroks's Avatar Contributor
    Reputation
    180
    Join Date
    Oct 2007
    Posts
    623
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by highend01 View Post
    Would like to see this as well
    Why? its a DPS loss to use it in a single target rotation
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  11. #26
    xLegendx's Avatar Member
    Reputation
    14
    Join Date
    Sep 2011
    Posts
    827
    Thanks G/R
    3/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cpowroks View Post
    Sorry, i've been away lately I got a new job and its been quite hellish. I'll try to catch up on profile fixes tonight and tomorrow.
    Ah, thought you were gone for good !
    Can't wait to see what you do to the enhance pvp profile :P
    They're getting a nice damage buff in 5.3


    Edit:
    For Grounding Totem can you make it so it casts Grounding at like the last 0.7 seconds or something so good players can't counter it.
    Last edited by xLegendx; 04-16-2013 at 09:59 PM.

  12. #27
    cpowroks's Avatar Contributor
    Reputation
    180
    Join Date
    Oct 2007
    Posts
    623
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xLegendx View Post
    Ah, thought you were gone for good !
    Can't wait to see what you do to the enhance pvp profile :P
    They're getting a nice damage buff in 5.3


    Edit:
    For Grounding Totem can you make it so it casts Grounding at like the last 0.7 seconds or something so good players can't counter it.

    Yeah i'll see what i can do. Instead of making a set delay ill probably do a percentage.Like have it drop grounding totem 60% into the cast
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  13. #28
    xLegendx's Avatar Member
    Reputation
    14
    Join Date
    Sep 2011
    Posts
    827
    Thanks G/R
    3/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cpowroks View Post
    Yeah i'll see what i can do. Instead of making a set delay ill probably do a percentage.Like have it drop grounding totem 60% into the cast
    Cokx have a very good example of timing things like this.
    For example, shield wall for warriors. It literally casts it at the last 0.3 seconds so that warlock or Mage or whatever loses that ember or CD because they have literally no time to re act.
    Last edited by xLegendx; 04-17-2013 at 09:18 AM.

  14. #29
    cpowroks's Avatar Contributor
    Reputation
    180
    Join Date
    Oct 2007
    Posts
    623
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    New Ele build.

    rev 2.2
    -Added 3 mousebutton keys
    -Added Hex Focus/Mouseover button (Mouse button 5)
    -Added Earthquake (Mousebutton 4)
    -Added Magma Totem if in AoE mode and in Melee
    -Added 1-3 and 4+ modes to OldAoE(Just keep hitting the AoEKey to switch modes)
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  15. #30
    mikeyd234's Avatar Sergeant
    Reputation
    9
    Join Date
    Oct 2012
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Might be useful to someone, healing rain on left alt mouse location:

    PHP Code:
    if IsLeftAltKeyDown() 
    and 
    not GetCurrentKeyBoardFocus() 
    and 
    not UnitChannelInfo("player"
    and 
    select(2,GetSpellCooldown(73920)) < 
    then
      CastSpellByName
    (tostring(GetSpellInfo(73920)))
      if 
    SpellIsTargeting() then CameraOrSelectOrMoveStart() CameraOrSelectOrMoveStop() end  
      
    return true
    end 
    Considering Healing rain got buffed 20%, that plus Glyph of Healing Storm this does a fair amount of healing.

    Any chance you could add Ancestral swiftness into the enhance rotation considering it now has a 10% melee haste passive buff. So AS + LB when no maelstrom stacks, and same with Aoe rotation but ChainLB? Tried myself but I suck Spell 16188 i believe.

    Thanks

Page 2 of 17 FirstFirst 123456 ... LastLast

Similar Threads

  1. [PQRotation] Firepong's PQR Profile's Feedback - Comments - Question's?
    By firepong in forum WoW Bot Maps And Profiles
    Replies: 714
    Last Post: 08-14-2013, 03:43 AM
  2. [PQRotation] Blinded's PQR Profile's Feedback - Comments - Question's?
    By [Blinded] in forum WoW Bot Maps And Profiles
    Replies: 123
    Last Post: 08-05-2013, 07:03 AM
  3. Wtb ele sham pqr profile thats flawless at for lvl 90s
    By odano1988 in forum WoW Bot Maps And Profiles
    Replies: 7
    Last Post: 10-12-2012, 10:23 AM
  4. [Buying] Best Unholy DK PQR Profile !
    By leinadz in forum World of Warcraft Buy Sell Trade
    Replies: 0
    Last Post: 09-17-2012, 03:10 PM
  5. PQR Profiles and leveling
    By Durf in forum WoW Bots Questions & Requests
    Replies: 2
    Last Post: 02-01-2012, 08:21 PM
All times are GMT -5. The time now is 08:01 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search