[PQR]PVE Disc Priest with Nova framework menu

Shout-Out

User Tag List

Page 9 of 15 FirstFirst ... 5678910111213 ... LastLast
Results 121 to 135 of 220
  1. #121
    Vachiusa's Avatar Contributor
    Reputation
    256
    Join Date
    Jan 2013
    Posts
    227
    Thanks G/R
    22/4
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Dimonoff View Post
    PHP Code:
    --LifeCocoon
            
    if PQR_SpellAvailable(116849
             and 
    not UnitBuffID("player",131523) --Zen Meditation         
             
    and select(2,GetSpellCooldown(116849)) < 2                  
             
    and IsUsableSpell(116849)         
             and 
    IsSpellInRange(GetSpellInfo(116849),"boss1") == 1 then
                CastSpellByName
    (tostring(GetSpellInfo(116849)),"boss1")     
            
    end 
    ))))
    Redownload new release plz
    Originally Posted by Mist Monk change logs
    Version 1.2.2 - 02/02/2013
    -Add more events for raiding.
    -And fixed other bugs.
    Status: Inactive. Don't PM me, pls drop a msg to vachiusa (at) mientrung <dot> com

    [PQR]PVE Disc Priest with Nova framework
  2. #122
    Dimonoff's Avatar Master Sergeant
    Reputation
    12
    Join Date
    May 2012
    Posts
    96
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Vachiusa, might be worth to add this Xelper code to -- Events? (for MW and others)

    PHP Code:
    --IMPORTANTChange this if you have any cleaves that would do damage to a secondary target
    --as part of your single target rotationBetter to be safe than sorry
    --
    Used for : Spirit Kings
    local cleaveClass 
    false
    local isAOE 
    strmatch(strupper(PQR_RotationName), "AOE") --checks if we are in AOE mode.

    for 
    i=1,do
        
    local bossCheck "boss"..i

        
    if UnitExists(bossCheckthen
            
            local npcID 
    tonumber(UnitGUID(bossCheck):sub(6,10), 16)
            
    local bossCasting,_,_,_,_,castEnd UnitCastingInfo(bossCheck)
            
            if 
    npcID == 62511 or npcID == 62711 then --Amber-Shaper Un'sok or Amber Monstrosity
                local reshapeName = GetSpellInfo(122370)
                local reshapeLife = UnitDebuff("player", reshapeName)
                
                if reshapeLife ~= nil then
                    local playerCasting = UnitCastingInfo("vehicle")
                    local playerCasting2 = UnitCastingInfo("player")
                    --grab spell names for abilities:
                    local amberExplosion = GetSpellInfo(122402)
                    
                    --interrupt self if casting amber explosion
                    if playerCasting == amberExplosion then
                        --Press the 2nd button (Struggle for Control)
                        RunMacroText("/click OverrideActionBarButton2")
                        return true
                    end
                    
                    --interrupt self if casting amber explosion
                    if playerCasting2 == amberExplosion then
                        --Press the 2nd button (Struggle for Control)
                        RunMacroText("/click OverrideActionBarButton2")
                        return true
                    end
                    
                    --interrupt the target if casting amber explosion
                    if bossCasting and bossCasting == amberExplosion then
                        TargetUnit(bossCheck)
                        --Press the 1st button (Amber Strike)
                        RunMacroText("/click OverrideActionBarButton1")
                        return true
                    end
                    
                    if UnitExists("boss2") then
                        if bossCheck == "boss2" then 
                            return true --prevent the rotation from executing while reshaped
                        end
                    else
                        return true
                    end

                end
                
            elseif npcID == 60709 then --Spirit Kings: Qiang. (Impervious Shield)
                --Stop all attacks until 0.2 seconds after cast time ends and until buff (Impervious Shield) is gone.
                
                --only continue checking if we are targetting the boss or have no target.
                if (not UnitExists("target")) or (UnitIsUnit("target", bossCheck)) or (cleaveClass or isAOE) then
                    local impName = GetSpellInfo(117961)
                    local impShieldBuff = UnitBuffID(bossCheck, 117961)
                    
                    if (bossCasting and bossCasting == impName) then
                        StopAttack()
                        SpellStopCasting()
                        local delayAdd = (castEnd/1000) - GetTime() --the number of seconds remaining on the cast.
                        PQR_resumeAttack = GetTime() + delayAdd + 0.2
                        return true
                    end
                    
                    if impShieldBuff then
                        StopAttack()
                        SpellStopCasting()
                        return true
                    end
                end
                
            elseif npcID == 60710 then --Spirit Kings: Subetai. (Sleight of Hand)
                --Stop all attacks when casting Sleight of Hand, and until 0.2 seconds after cast time ends.
                --Also stop attacks if not stunned.
                
                --only continue checking if we are targetting the boss or have no target.
                if (not UnitExists("target")) or (UnitIsUnit("target", bossCheck)) or (cleaveClass or isAOE) then
                    local sleightName = GetSpellInfo(118162)
                    local sleightBuff = UnitBuffID(bossCheck, 118162)
                    --                  HoJ,   FoJ,  Kidney  
                    local stunList = { 853, 105593, 408 }
                    local isStunned = nil
                    for _,v in ipairs(stunList) do
                        local debuffCheck = UnitDebuffID(bossCheck, v)
                        if debuffCheck then
                            isStunned = true
                        end
                    end
                    
                    if (bossCasting and bossCasting == sleightName) then
                        StopAttack()
                        SpellStopCasting()
                        local delayAdd = (castEnd/1000) - GetTime() --the number of seconds remaining on the cast.
                        PQR_resumeAttack = GetTime() + delayAdd + 0.2
                        return true
                    end
                    
                    if sleightBuff and not isStunned then
                        StopAttack()
                        SpellStopCasting()
                        return true
                    end
                end

            elseif npcID == 60701 then --Spirit Kings: Zian. (Shield of Darkness)
                --Stop all attacks until 0.5 seconds after cast time ends and until buff (Shield of Darkness) is gone.
                            
                if (not UnitExists("target")) or (UnitIsUnit("target", bossCheck)) or (cleaveClass or isAOE) then
                    local sodName = GetSpellInfo(117697)
                    local sodBuff = UnitBuffID(bossCheck, 117697)
                    
                    if (bossCasting and bossCasting == sodName) then
                        StopAttack()
                        SpellStopCasting()
                        local delayAdd = (castEnd/1000) - GetTime() --the number of seconds remaining on the cast.
                        PQR_resumeAttack = GetTime() + delayAdd + 0.5 --0.5 to account for lag... REALLY do not want to set this off.
                        return true
                    end
                    
                    if sodBuff then
                        StopAttack()
                        SpellStopCasting()
                        return true
                    end
                end
            end
        end
    end 

  3. #123
    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)
    Originally Posted by Vachiusa View Post
    Okay, i will add this when i have more time and lets you know. (can not rep you more because "You must spread some Reputation around before giving it to Ninjaderp again.")
    Hey thats cool, I cant add any more rep to you before I spread it around as well ^^ Also thanks for the event-code, I will try it out!

  4. #124
    Dimonoff's Avatar Master Sergeant
    Reputation
    12
    Join Date
    May 2012
    Posts
    96
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Mist Monk change logs
    Version 1.2.2 - 02/02/2013

    heal strange and bad in 10ppl, I can not understand why
    Last edited by Dimonoff; 02-02-2013 at 11:46 AM.

  5. #125
    Vachiusa's Avatar Contributor
    Reputation
    256
    Join Date
    Jan 2013
    Posts
    227
    Thanks G/R
    22/4
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Dimonoff View Post
    Mist Monk change logs
    Version 1.2.2 - 02/02/2013

    heal strange and bad, I can not understand why
    Can you post recount detail % for data analysis?
    Status: Inactive. Don't PM me, pls drop a msg to vachiusa (at) mientrung <dot> com

  6. #126
    js1974's Avatar Member
    Reputation
    27
    Join Date
    Jan 2008
    Posts
    199
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @ Vachiusa


    Do you plan on adding key binding and cooldown support to the novaframe?

  7. #127
    Vachiusa's Avatar Contributor
    Reputation
    256
    Join Date
    Jan 2013
    Posts
    227
    Thanks G/R
    22/4
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by js1974 View Post
    @ Vachiusa


    Do you plan on adding key binding and cooldown support to the novaframe?
    Already added, you can type /nova in chat or click minimap button. Cheers!
    Status: Inactive. Don't PM me, pls drop a msg to vachiusa (at) mientrung <dot> com

  8. #128
    Ralphiuss's Avatar Active Member
    Reputation
    44
    Join Date
    Sep 2011
    Posts
    230
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Vachiusa View Post
    Okay, i will add this when i have more time and lets you know. (can not rep you more because "You must spread some Reputation around before giving it to Ninjaderp again.")


    GH and FH still work, U can change higher value for more often use. In my opinion, Penance only good use when dmg adds/bosses near tank for atonement smart heal. If u wanna use it, just add Penance into rotation.


    Maybe we use same cvar name for our rotation, lol.

    Yup I've changed the values, turned of heal...Sitll wont cast Greater Heal or Flash Heal. Oh I don't know if matters or not, but your rotation file states version 1.3

  9. #129
    Dimonoff's Avatar Master Sergeant
    Reputation
    12
    Join Date
    May 2012
    Posts
    96
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It won`t use ChiBurst, Upflit use when 5chi and raid on full hp. Won`t heal out of combat. When raid on low hp bot do nothing. 25ppl work fine 10ppl very bad.


    upd:
    Check SoothingMist code u mised
    members[1].HP < Nova_SoothingMist
    and bot always spam SoothingMist and quickly go to OOM

    PS: What condition specifies the use of Thunder Focus Tea, UpliftCount or UpliftLimit ?
    Last edited by Dimonoff; 02-02-2013 at 04:30 PM.

  10. #130
    Waddagundar's Avatar Member
    Reputation
    7
    Join Date
    Aug 2012
    Posts
    38
    Thanks G/R
    0/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Vachiusa View Post
    Already added, you can type /nova in chat or click minimap button. Cheers!
    Great stuff, but is it possible to move the mini-map icon? It sits over the New Mail icon. Maybe I should be asking the Nova team?

  11. #131
    saintsrlfc's Avatar Member
    Reputation
    1
    Join Date
    Jan 2011
    Posts
    59
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello, Does anyone else get massive lag when using disc profile in LFR?

    I have tried everything but cannot sort it out......please help

  12. #132
    expunge's Avatar Knight-Lieutenant
    Reputation
    17
    Join Date
    Nov 2011
    Posts
    226
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by saintsrlfc View Post
    Hello, Does anyone else get massive lag when using disc profile in LFR?

    I have tried everything but cannot sort it out......please help
    Try the new update. The one I had before did that. Updated to 1.3.3 and it's fine.

  13. #133
    spacerideruk's Avatar Member
    Reputation
    1
    Join Date
    May 2011
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i had that problem, so i installed more ram and it worked fine :P

  14. #134
    Aleksonfire's Avatar Master Sergeant
    Reputation
    25
    Join Date
    Nov 2012
    Posts
    132
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Waddagundar View Post
    Great stuff, but is it possible to move the mini-map icon? It sits over the New Mail icon. Maybe I should be asking the Nova team?
    Shift + right click
    Resto Shammy Profile - https://goo.gl/nm5Nc

  15. #135
    Aleksonfire's Avatar Master Sergeant
    Reputation
    25
    Join Date
    Nov 2012
    Posts
    132
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by saintsrlfc View Post
    Hello, Does anyone else get massive lag when using disc profile in LFR?

    I have tried everything but cannot sort it out......please help
    You will find that healer profiles are a lot more memory intensive(especially really good ones) because of all the health and boss checks. best suggestion is stop using recount if you are having really bad lag. If that doesn't solve the problem I would suggest getting more ram, or more processing power.
    Resto Shammy Profile - https://goo.gl/nm5Nc

Page 9 of 15 FirstFirst ... 5678910111213 ... LastLast

Similar Threads

  1. [Buying] WTB disc priest with at least ilvl 870 horde
    By sckr in forum WoW-EU Account Buy Sell Trade
    Replies: 1
    Last Post: 11-16-2016, 11:41 AM
  2. [Selling] Selling 4500+GS Belf Disc priest with ulduar 4-set bonus on Lordaeron!
    By clabbehala in forum WoW Private Server Buy Sell Trade
    Replies: 0
    Last Post: 06-01-2016, 03:59 PM
  3. [Selling] WTS 521 disc priest with D3 and SC2 accepting best offer
    By alphaq69 in forum WoW-US Account Buy Sell Trade
    Replies: 2
    Last Post: 11-26-2013, 01:28 AM
  4. [PQR] LF Disc Priest PVP Profile
    By Marvalus in forum WoW Bot Maps And Profiles
    Replies: 7
    Last Post: 04-21-2013, 03:56 PM
  5. [Selling] 5750 (pve) Disc Priest, w/ Dk alt. CHEAP!!!!
    By Philosophist in forum World of Warcraft Buy Sell Trade
    Replies: 2
    Last Post: 08-12-2010, 09:25 PM
All times are GMT -5. The time now is 07:28 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