[PQR] Cpoworks's PQR profiles menu

Shout-Out

User Tag List

Page 15 of 17 FirstFirst ... 11121314151617 LastLast
Results 211 to 225 of 247
  1. #211
    floppydrive's Avatar Member
    Reputation
    2
    Join Date
    May 2013
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Your work will be missed , loved the paladin one.

    [PQR] Cpoworks's PQR profiles
  2. #212
    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)
    He never said he would quit making updates, did he?

  3. #213
    Sevve3's Avatar Member
    Reputation
    3
    Join Date
    Dec 2012
    Posts
    51
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Your 2.2 profile works flawlessly for now, just would love to see the changes we discussed earlier ( Chain heal on 5 maelstrom / EB coding )

    And the addition of new adds would be appreciated :P

  4. #214
    boxo's Avatar Member
    Reputation
    2
    Join Date
    Jan 2012
    Posts
    92
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If you want to change healing rain to chain heal, this is working for me. the only thing is that it won't target yourself.

    There is probably an easy fix for that, but i'm really no good at this.

    anyhoo. I went to ability editor and copied healing rain, named it Healing : Chain Heal (for consistency), and then used this code:

    Code:
    local MS, _, _, Stack = UnitBuffID( "player", 53817 )
    
    
    if HealingRainKey
    and PQR_SpellAvailable(1064)
    and Stack == 5
    and UnitIsFriend("player","mouseover") then
      _castSpell(1064) 
    end
    then move to rotation editor, and add healing : chain heal to where healing : healing rain is and remove healing rain.
    Last edited by boxo; 09-13-2013 at 08:46 AM.

  5. #215
    jcf777's Avatar Banned Trusted CoreCoins Purchaser Authenticator enabled
    Reputation
    6
    Join Date
    Jul 2013
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice profile!

  6. #216
    Sevve3's Avatar Member
    Reputation
    3
    Join Date
    Dec 2012
    Posts
    51
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by boxo View Post
    If you want to change healing rain to chain heal, this is working for me. the only thing is that it won't target yourself.

    There is probably an easy fix for that, but i'm really no good at this.

    anyhoo. I went to ability editor and copied healing rain, named it Healing : Chain Heal (for consistency), and then used this code:

    Code:
    local MS, _, _, Stack = UnitBuffID( "player", 53817 )
    
    
    if HealingRainKey
    and PQR_SpellAvailable(1064)
    and Stack == 5
    and UnitIsFriend("player","mouseover") then
      _castSpell(1064) 
    end
    then move to rotation editor, and add healing : chain heal to where healing : healing rain is and remove healing rain.
    Thanks, managed to get Chain Heal and 3-5 stack EB working. Now I just gotta figure out how to get the new mobs in SoO working. As I added them mid raid and PQR refused to attack them. Even after multiple PQR / WoW restarts.

  7. #217
    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)
    What new mobs? im 13/14 and ive had no problems
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  8. #218
    Sevve3's Avatar Member
    Reputation
    3
    Join Date
    Dec 2012
    Posts
    51
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cpowroks View Post
    What new mobs? im 13/14 and ive had no problems
    Got 14/14 yesterday and had troubles with: "Deactiovated Missle Turret", "Shockwave Missle Turret",
    "Laser Turret", "Electromagnet", "Disassembled Crawler Mines",

    Question, any reason EB doesn't cast when I enable AoE ?

    Code:
    local MS, _, _, Stack = UnitBuffID( "player", 53817 )
    local AS = UnitBuffID("player", 16188)
    
    if not AoE 
    or not AoECL then
    	if AS then
    		_castSpell(117014, "target")
    	end
    
    	if MS ~= nil then
    		if Stack == 5 then	
    			_castSpell(117014, "target")
    		end
    	end
    end
    and

    Code:
    local MS, _, _, Stack = UnitBuffID( "player", 53817 )
    
    if HealingRainKey then
    	return false
    end
    
    
    if not AoE 
    and not HealMode then
    	if MS ~= nil then
    		if Stack >= 2  then
    			_castSpell(117014, "target")
    		end
    	end
    end

    It works flawlessly on single target, but refuses to work in aoe.
    Last edited by Sevve3; 09-14-2013 at 12:52 PM.

  9. #219
    boxo's Avatar Member
    Reputation
    2
    Join Date
    Jan 2012
    Posts
    92
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I don't know for sure, but both of your abilities are looking for AoE to be false, "if not AoE".

    I would say that this would cause them not to function in AoE situations.

    Also, again, not an expert, but I don't think that you need to add "if HealingRainKey then return false" as long as your healing rain/chain heal ability is higher in the activity list.

    Just a thought.

  10. #220
    Sevve3's Avatar Member
    Reputation
    3
    Join Date
    Dec 2012
    Posts
    51
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by boxo View Post
    I don't know for sure, but both of your abilities are looking for AoE to be false, "if not AoE".

    I would say that this would cause them not to function in AoE situations.

    Also, again, not an expert, but I don't think that you need to add "if HealingRainKey then return false" as long as your healing rain/chain heal ability is higher in the activity list.

    Just a thought.
    Got it thanks, can't believe I fudged that up.

  11. #221
    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)
    Finishing up some contract work today (god i make to much money doing PQR stuff) then ill try to release the 5.4 update. Heres what the change log is looking like.

    v2.7
    - Added Drop down menu for healing rain key (Pretty much choose to use Healing Ran or Chain Heal via drop down menu)
    - Added PQI options for Eng Gloves, Pot on lust
    - Changed EB from hard cast to MS stacks >=1 (So it doesn't hard cast off the pull pretty much)
    - Optimized AoE rotation
    - Bug fix: Will now use UE again if not in melee range
    - Few misc tweaks ive added in since last release and forgot about(Yes, because there's alot)

    Sorry its taken so long to get this update out. But its almost there.
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  12. #222
    Sevve3's Avatar Member
    Reputation
    3
    Join Date
    Dec 2012
    Posts
    51
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cpowroks View Post
    Finishing up some contract work today (god i make to much money doing PQR stuff) then ill try to release the 5.4 update. Heres what the change log is looking like.

    v2.7
    - Added Drop down menu for healing rain key (Pretty much choose to use Healing Ran or Chain Heal via drop down menu)
    - Added PQI options for Eng Gloves, Pot on lust
    - Changed EB from hard cast to MS stacks >=1 (So it doesn't hard cast off the pull pretty much)
    - Optimized AoE rotation
    - Bug fix: Will now use UE again if not in melee range
    - Few misc tweaks ive added in since last release and forgot about(Yes, because there's alot)

    Sorry its taken so long to get this update out. But its almost there.
    Ah very very nice !. Appreciated cpo.

  13. #223
    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 build up.

    v2.7 9/15/2013
    - Updated for 5.4
    - Added Projection Key
    - Added Drop down menu for healing rain key (Pretty much choose to use Healing Ran or Chain Heal via drop down menu)
    - Added PQI options for Eng Gloves, Pot on lust
    - Changed EB from hard cast to MS stacks >=1 (So it doesn't hard cast off the pull pretty much)
    - Optimized AoE rotation
    - Bug fix: Will now use UE again if not in melee range
    - Few misc tweaks ive added in since last release and forgot about(Yes, because there's alot)

    Update Via PQR or DL link.
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  14. #224
    boxo's Avatar Member
    Reputation
    2
    Join Date
    Jan 2012
    Posts
    92
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    just doing some grinding with the [profile, and it doesn't seem to be using elemental mastery or ascendance.
    Last edited by boxo; 09-16-2013 at 03:16 PM.

  15. #225
    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)
    Do you have the cooldown toggle enabled?

    Also 2.7.1 is out

    v2.7.1 9/16/2013
    - Added Chain Heal Mouse Over Logic
    - Fixed AoE/CD toggles from changing when text box is open.
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

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 06:27 AM. 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