[PQR] Blinded's Assassination Rogue (Updated for 5.4) menu

User Tag List

Page 2 of 25 FirstFirst 123456 ... LastLast
Results 16 to 30 of 368
  1. #16
    starl1te's Avatar Member
    Reputation
    13
    Join Date
    Feb 2012
    Posts
    110
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Neyia View Post
    Hello, i have one error


    I have PQR_notValid.lua on \Data\


    Edit:

    Rename : PQR_notValid.lua > PQR_notvalid.lua
    You need to use the data file enclosed in the downloads here. renaming the old one you already had is not going to work, the PQR_notvalid.lua here is new and different

    [PQR] Blinded's Assassination Rogue (Updated for 5.4)
  2. #17
    vitalic's Avatar Contributor CoreCoins Purchaser
    Reputation
    182
    Join Date
    Jun 2010
    Posts
    3,527
    Thanks G/R
    8/3
    Trade Feedback
    10 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Will be releasing a new version soon. Found a pretty major bug when using Shadow Blades below 35%.

    Also, I've decided to make the feint toggle left alt and the pause key left shift, I think this works better with the idea of starlite regarding using on-gcd binds which match the pause key, left shift is a much easier modifier to use than left alt, and feint is a toggle that is not going to be used too often so it doesn't make sense to dedicate such a major modifier to it. Any objections then let me know.

  3. #18
    vitalic's Avatar Contributor CoreCoins Purchaser
    Reputation
    182
    Join Date
    Jun 2010
    Posts
    3,527
    Thanks G/R
    8/3
    Trade Feedback
    10 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    New version, required update: Blinded_Rogue_5.3_4pc.rar

    - Fixed a problem with Anticipation usage below 35%
    - Vanish no longer used in AoE mode

    I scrapped the idea of changing the toggles, didn't realise it would interfere with the default PQR rotation binds. Also added some rotation notes.

  4. #19
    056's Avatar Member
    Reputation
    5
    Join Date
    Apr 2012
    Posts
    12
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The feint toggle is nice, but Is it possible to incorporate the feint events from Nerder's profile to auto damage redux? I've done it for myself (not tested yet) but might be nice for raids.

    PHP Code:
    -- Darkmoon Faerie Cannon
    if select(7,UnitBuffID("player",102116))
     and 
    select(7,UnitBuffID("player",102116)) - GetTime() < 1.07 then 
        CancelUnitBuff
    ("player","Magic Wings"
    end

    -- Gara'jal the Spiritbinder
    local timer = select(7,UnitDebuffID("player",116161))
    if timer and timer - GetTime() < 1.5 then
        SpellStopCasting()
        RunMacroText("/click ExtraActionButton1")
    end

    for i = 1, 4 do
        local bossUnit = "boss"..i
        
        if UnitExists(bossUnit) then
            local castName = UnitCastingInfo("target")
            local channelName = UnitChannelInfo("target")
            local BossID = tonumber(UnitGUID(bossUnit):sub(6,10), 16)

            -- Lei Shen - Thunderstruck
            if BossID == 68397 then
                if castName == "Thunderstruck"
                 and not UnitBuffID("player", 1966) then
                    Cast(FEINT)
                end
            end

            if BossID == 68476 then
                if castName == "Dire Call"
                 and not UnitBuffID("player", 1966) then
                     Cast(FEINT)
                end
            end

            -- Jin'
    rokh Ionization
            
    if BossID == 69465 then
                
    if castName == "Ionization" then
                    Cast
    (CLOAK)
                
    end
            end

            
    -- Tortos Quake Stomp
            
    if BossID == 67977 then
                
    if castName == "Quake Stomp"
                 
    and not UnitBuffID("player"1966then
                    Cast
    (FEINT)
                
    end
            end

            
    -- Ji-kun Quills
            
    if BossID == 69712 then
                
    if channelName == "Quills"
                 
    and not UnitBuffID("player"1966then
                    Cast
    (FEINT)
                
    end
            end

            
    -- Primordius Caustic Gas
            
    if BossID == 69017 then
                
    if castName == "Caustic Gas"
                 
    and not UnitBuffID("player"1966then
                    Cast
    (FEINT)
                
    end
            end

            
    -- Dark Animus Interrupting Jolt
            
    if BossID == 69427 then
                
    if castName == "Interrupting Jolt"
                 
    and not UnitBuffID("player"1966then
                    Cast
    (FEINT)
                
    end
            end
        end
    end 

  5. #20
    fddbzz's Avatar Master Sergeant
    Reputation
    7
    Join Date
    Jan 2013
    Posts
    96
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by 056 View Post
    The feint toggle is nice, but Is it possible to incorporate the feint events from Nerder's profile to auto damage redux? I've done it for myself (not tested yet) but might be nice for raids.

    PHP Code:
    -- Darkmoon Faerie Cannon
    if select(7,UnitBuffID("player",102116))
     and 
    select(7,UnitBuffID("player",102116)) - GetTime() < 1.07 then 
        CancelUnitBuff
    ("player","Magic Wings"
    end

    -- Gara'jal the Spiritbinder
    local timer = select(7,UnitDebuffID("player",116161))
    if timer and timer - GetTime() < 1.5 then
        SpellStopCasting()
        RunMacroText("/click ExtraActionButton1")
    end

    for i = 1, 4 do
        local bossUnit = "boss"..i
        
        if UnitExists(bossUnit) then
            local castName = UnitCastingInfo("target")
            local channelName = UnitChannelInfo("target")
            local BossID = tonumber(UnitGUID(bossUnit):sub(6,10), 16)

            -- Lei Shen - Thunderstruck
            if BossID == 68397 then
                if castName == "Thunderstruck"
                 and not UnitBuffID("player", 1966) then
                    Cast(FEINT)
                end
            end

            if BossID == 68476 then
                if castName == "Dire Call"
                 and not UnitBuffID("player", 1966) then
                     Cast(FEINT)
                end
            end

            -- Jin'
    rokh Ionization
            
    if BossID == 69465 then
                
    if castName == "Ionization" then
                    Cast
    (CLOAK)
                
    end
            end

            
    -- Tortos Quake Stomp
            
    if BossID == 67977 then
                
    if castName == "Quake Stomp"
                 
    and not UnitBuffID("player"1966then
                    Cast
    (FEINT)
                
    end
            end

            
    -- Ji-kun Quills
            
    if BossID == 69712 then
                
    if channelName == "Quills"
                 
    and not UnitBuffID("player"1966then
                    Cast
    (FEINT)
                
    end
            end

            
    -- Primordius Caustic Gas
            
    if BossID == 69017 then
                
    if castName == "Caustic Gas"
                 
    and not UnitBuffID("player"1966then
                    Cast
    (FEINT)
                
    end
            end

            
    -- Dark Animus Interrupting Jolt
            
    if BossID == 69427 then
                
    if castName == "Interrupting Jolt"
                 
    and not UnitBuffID("player"1966then
                    Cast
    (FEINT)
                
    end
            end
        end
    end 
    ya. that feint event is really nice. was gonna suggest.this too!

  6. #21
    Resignedgod's Avatar Member
    Reputation
    2
    Join Date
    Jan 2012
    Posts
    29
    Thanks G/R
    5/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The last update broke the rotation.

  7. #22
    sed-'s Avatar ★ Elder ★
    Reputation
    1114
    Join Date
    Mar 2010
    Posts
    1,566
    Thanks G/R
    52/151
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Message: [string "local CPs = GetComboPoints( "player", "targ..."]:7: attempt to compare nil with number
    Time: 06/08/13 02:50:49
    Count: 37
    Stack: [string "local CPs = GetComboPoints( "player", "targ..."]:7: in function `?'
    [string "if PQR_Addon_Loaded == nil then..."]:765: in function `PQR_NextAbility'
    [string "if PQR_Addon_Loaded == nil then..."]:534: in function `PQR_ExecuteRotation'
    [string "if PQR_Addon_Loaded == nil then..."]:287: in function <[string "if PQR_Addon_Loaded == nil then..."]:214>

    Locals: CPs = 2
    SnD = false
    SnDTimeLeft = nil
    (*temporary) = "player"
    (*temporary) = false
    (*temporary) = nil
    (*temporary) = "attempt to compare nil with number"


    Message: [string "local CPs = GetComboPoints( "player", "targ..."]:7: attempt to compare nil with number
    Time: 06/08/13 02:50:49
    Count: 37
    Stack: [string "local CPs = GetComboPoints( "player", "targ..."]:7: in function `?'
    [string "if PQR_Addon_Loaded == nil then..."]:765: in function `PQR_NextAbility'
    [string "if PQR_Addon_Loaded == nil then..."]:534: in function `PQR_ExecuteRotation'
    [string "if PQR_Addon_Loaded == nil then..."]:287: in function <[string "if PQR_Addon_Loaded == nil then..."]:214>

    Locals: CPs = 2
    SnD = false
    SnDTimeLeft = nil
    (*temporary) = "player"
    (*temporary) = false
    (*temporary) = nil
    (*temporary) = "attempt to compare nil with number"

    Message: ...e\AddOns\Blizzard_DebugTools\Blizzard_DebugTools.lua:-1: script ran too long
    Time: 06/08/13 04:43:21
    Count: 1
    Stack: ...e\AddOns\Blizzard_DebugTools\Blizzard_DebugTools.lua: in function `ScriptErrorsFrame_OnError'
    [string "Interface\FrameXML\BasicControls.xml:<Scrip..."]:18: in function <[string "Interface\FrameXML\BasicControls.xml:<Scrip..."]:4>
    [C]: ?
    [string "local CPs = GetComboPoints( "player", "targ..."]:7: in function `?'
    [string "if PQR_Addon_Loaded == nil then..."]:765: in function `PQR_NextAbility'
    [string "if PQR_Addon_Loaded == nil then..."]:534: in function `PQR_ExecuteRotation'
    [string "if PQR_Addon_Loaded == nil then..."]:287: in function <[string "if PQR_Addon_Loaded == nil then..."]:214>

    Locals: (*temporary) = "[string "local CPs = GetComboPoints( "player", "targ..."]:7: attempt to compare nil with number"
    (*temporary) = nil
    (*temporary) = nil
    (*temporary) = nil
    (*temporary) = nil
    (*temporary) = nil
    (*temporary) = nil
    (*temporary) = nil
    (*temporary) = "script ran too long"
    _ScriptErrorsFrame = ScriptErrorsFrame {
    0 = <userdata>
    messages = <table> {
    }
    close = <unnamed> {
    }
    previous = <unnamed> {
    }
    indexLabel = <unnamed> {
    }
    locals = <table> {
    }
    title = <unnamed> {
    }
    times = <table> {
    }
    seen = <table> {
    }
    count = <table> {
    }
    order = <table> {
    }
    next = <unnamed> {
    }
    }
    Last edited by sed-; 06-08-2013 at 06:43 AM.

  8. #23
    vitalic's Avatar Contributor CoreCoins Purchaser
    Reputation
    182
    Join Date
    Jun 2010
    Posts
    3,527
    Thanks G/R
    8/3
    Trade Feedback
    10 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    @056 Cool didn't know about that, will definitely add it in when I get a chance

    @Resignedgod In what sense is it broken, doesn't run or LUA error? I did a fresh install and it works for me :s

    @sed- Thanks think I might know what caused that error, looks like a legacy bug from Blinded's

  9. #24
    Ginsplosion's Avatar Member
    Reputation
    2
    Join Date
    Feb 2012
    Posts
    59
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How would I go about swapping feint to left alt and pause rotation back to left shift (like Blindeds use to be) as I agree with the initial comments about ease of use by swapping these two.

    I've found feint under cooldowns, so I can just swap that to 'LeftAlt' but I can't find where you're pausing the rotation for the life of me.

  10. #25
    vitalic's Avatar Contributor CoreCoins Purchaser
    Reputation
    182
    Join Date
    Jun 2010
    Posts
    3,527
    Thanks G/R
    8/3
    Trade Feedback
    10 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ginsplosion View Post
    How would I go about swapping feint to left alt and pause rotation back to left shift (like Blindeds use to be) as I agree with the initial comments about ease of use by swapping these two.

    I've found feint under cooldowns, so I can just swap that to 'LeftAlt' but I can't find where you're pausing the rotation for the life of me.
    It's the last statement in the init ability, change IsLeftAltKeyDown() to IsLeftShiftKeyDown()

    The problem I found is it clashes with the default PQR enable/disable rotation bind, so I could change my bind in PQR but I felt that would end up causing usability issues for other users.

  11. #26
    Ginsplosion's Avatar Member
    Reputation
    2
    Join Date
    Feb 2012
    Posts
    59
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Cheers.

    Will let you know how it does over the rest of the reset at least.

  12. #27
    sed-'s Avatar ★ Elder ★
    Reputation
    1114
    Join Date
    Mar 2010
    Posts
    1,566
    Thanks G/R
    52/151
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vitalic View Post
    @056 Cool didn't know about that, will definitely add it in when I get a chance

    @Resignedgod In what sense is it broken, doesn't run or LUA error? I did a fresh install and it works for me :s

    @sed- Thanks think I might know what caused that error, looks like a legacy bug from Blinded's
    i felt posting the error would be better than saying, herp derp its broken! ;p

  13. #28
    vitalic's Avatar Contributor CoreCoins Purchaser
    Reputation
    182
    Join Date
    Jun 2010
    Posts
    3,527
    Thanks G/R
    8/3
    Trade Feedback
    10 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sed- View Post
    i felt posting the error would be better than saying, herp derp its broken! ;p
    Yes appreciated. Well I uploaded what I think is the fix for the error you posted, although I haven't been able to reproduce it myself. Make sure you update all files etc.

  14. #29
    TuraelDX's Avatar Banned
    Reputation
    18
    Join Date
    Jan 2013
    Posts
    82
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    good profile thanks

  15. #30
    vitalic's Avatar Contributor CoreCoins Purchaser
    Reputation
    182
    Join Date
    Jun 2010
    Posts
    3,527
    Thanks G/R
    8/3
    Trade Feedback
    10 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Ok, found the solution to the toggle binds. I've put Fan of Knives on Left Alt, Feint on Left Control and pause rotation on Left Shift. I also added a 10 yard range check on Fan of Knives which will prevent situations where you are spamming FoK but get outranged and subsequently waste combo points/energy. Binds therefore look like this:

    Code:
    Usage:
    
    - Left Shift: Pause Rotation
    - Right Shift: Toggle Cooldowns
    - Right Alt: Toggle AoE
    - Left Control: Toggle Feint
    - Left Alt: Fan of Knives
    Re-download if you want to pick up those changes.

Page 2 of 25 FirstFirst 123456 ... LastLast

Similar Threads

  1. PQR 3.3.5 Rogue Profile for PVE?
    By jordii63 in forum WoW Bot Maps And Profiles
    Replies: 3
    Last Post: 03-17-2015, 06:17 AM
  2. Replies: 390
    Last Post: 01-24-2014, 01:48 AM
  3. [Buying] Buying Heroic raid quality assassination rogue profile [PQR]
    By Sphinctinator in forum World of Warcraft Buy Sell Trade
    Replies: 0
    Last Post: 05-30-2013, 12:20 AM
  4. [PQR] Profile updates for 5.2?
    By Monkeyfist in forum WoW Bots Questions & Requests
    Replies: 5
    Last Post: 03-06-2013, 03:55 PM
  5. [PQR] Combat / Assassination Rogue profiles request
    By dusia128 in forum WoW Bot Maps And Profiles
    Replies: 3
    Last Post: 01-28-2013, 05:46 PM
All times are GMT -5. The time now is 09:24 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