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

Shout-Out

User Tag List

Page 19 of 25 FirstFirst ... 151617181920212223 ... LastLast
Results 271 to 285 of 368
  1. #271
    Enuma's Avatar Member
    Reputation
    9
    Join Date
    Sep 2008
    Posts
    137
    Thanks G/R
    4/5
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Heya Vitalic, starl1te,

    As expected of you two, we always get total perfection. You actually made me scrap my now-ex-main warrior and get back to my rogue.
    Both profiles are performing insanely good.

    Now, if i may ask you for small help.

    Taken in concern that Burst of Speed now costs 15e, and it removes ALL movement slowing effects on us its a instane mobility buff for moving around and doing our thing. Im currently using Nigtstalker + Burst of Speed talents, allowing me to glide around with 204% movement speed, unfortunately its not codded in profile, so i have to manually spam BoS keybind every 3 sec, which ends up boring fast.

    Im trying to add to a rotation Burst of Speed which will have two effects:
    1. It be casted all the time outside combat when we are not mounted or swimming, every 3 secs untill i have my target in 10y range. (i presume that that distance would be good enough to max your energy and get behind target fast.)

    2. in addition to that, it would be for rotation to cast it if were in combat, our target is outside of melee range and we have > 90 energy.

    Can you, please, help me code it, at least 1st part of it? Im trying to make it for past.. 5-6hours, sadly my lua coding is limited to just small edits.

    If would be a good feature to add to your releases to, left ctrl is not bounded, so small BoS toggle can fit that keybind perfectly and make profiles even more fun.

    Anyhow, keep up the outstanding work and ty in advance for reply,
    Last edited by Enuma; 09-15-2013 at 04:46 AM.

    [PQR] Blinded's Assassination Rogue (Updated for 5.4)
  2. #272
    Noiselol's Avatar Member
    Reputation
    1
    Join Date
    Aug 2013
    Posts
    59
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jermadrun View Post
    just got the proven assailant with this profile (beat round 30 on endless mode in the proving grounds) it's definitely capable of going extremely high. it all depends on what you choose to target first and how you use the profile.
    was the first dps on my realm to get it.
    Wow i just got wave 13 with crap gear
    With a PvP Dagger and no set bonus and with Renatkis Trinket from LFR..

  3. #273
    jshookz's Avatar Member
    Reputation
    1
    Join Date
    Aug 2013
    Posts
    203
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    could I use this profile for leveling?

  4. #274
    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)
    @Enuma, that sounds easy enough I'm sure someone will be able to help you out, but not sure about adding it to the actual profile because even at 15 energy it's still a DPS loss.

    Originally Posted by jermadrun View Post
    just got the proven assailant with this profile (beat round 30 on endless mode in the proving grounds) it's definitely capable of going extremely high. it all depends on what you choose to target first and how you use the profile.
    was the first dps on my realm to get it.
    Oh nice, I guess I need to learn some strats then

    Originally Posted by jshookz View Post
    could I use this profile for leveling?
    Yes, I always use this profile for leveling, quests, dailies etc.

  5. #275
    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)
    Okay here is some code for Burst of Speed, it should behave in the way outlined in Enuma's post:

    PHP Code:
    if UnitBuffID("player"108212then return false end
    if UnitAffectingCombat("player"then
        local CurrentEnergy 
    UnitPower("player")
        if 
    IsSpellInRange(GetSpellInfo(1329), "target") ~= and CurrentEnergy 90 then
            
    return true
        end
    else
        if 
    not IsSwimming() and IsSpellInRange(GetSpellInfo(6770), "target") ~= 1 then
            
    return true
        end
    end 
    You need to create a new ability with the Spell ID 108212, and make sure it is placed above Assassination : Start in the rotation.

    Let me know if it works, can't really test properly because I'm not at home right now.

  6. #276
    Enuma's Avatar Member
    Reputation
    9
    Join Date
    Sep 2008
    Posts
    137
    Thanks G/R
    4/5
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vitalic View Post
    Okay here is some code for Burst of Speed, it should behave in the way outlined in Enuma's post:

    PHP Code:
    if UnitBuffID("player"108212then return false end
    if UnitAffectingCombat("player"then
        local CurrentEnergy 
    UnitPower("player")
        if 
    IsSpellInRange(GetSpellInfo(1329), "target") ~= and CurrentEnergy 90 then
            
    return true
        end
    else
        if 
    not IsSwimming() and IsSpellInRange(GetSpellInfo(6770), "target") ~= 1 then
            
    return true
        end
    end 
    You need to create a new ability with the Spell ID 108212, and make sure it is placed above Assassination : Start in the rotation.

    Let me know if it works, can't really test properly because I'm not at home right now.

    Tested it and it doesnt work. I wonder why, cause just by looking at the code it does look correct from what i can tell.

    I see it queued in rotation, but it isnt casted at all, under any circumstances, in combat, out of combat, with neutral targeting or targeting to attack.

    http://screencast.com/t/Thwav36Yxazj
    Last edited by Enuma; 09-15-2013 at 01:02 PM.

  7. #277
    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)
    Just a guess, it's showing the Ambush icon so the Spell ID for the ability may be set wrong? For me it showed the actual Burst of Speed icon in PQI.

  8. #278
    Enuma's Avatar Member
    Reputation
    9
    Join Date
    Sep 2008
    Posts
    137
    Thanks G/R
    4/5
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    I literally copied code that you posted, went into ability editor and created new spell called "Assassination : Burst of Speed" where i pasted the code, saved, went to Rotation editor and added spell to active rotation, between "Assassination : Poisons" and "Assassination : Stealth." Saved once again, reloaded ui via /console reloadui and started rotation, what you see is iddle combat state. Also, i have tried completely shutting down PQR and starting it again, same result.

    Screencast of code:
    2013-09-15_2023 - Sale.tomo's library

    Screencast of rotation:
    2013-09-15_2000 - Sale.tomo's library

    Im using latest PQR, 2.2.4 with latest PQI addon 5.4

    EDIT:

    NWM, I found the reason why its not working, i should kill my self with a spoon. so dumb.

    Working! + rep! But its completely ignoring 10y range check via Sap. Its constantly spamming it, even if im standing in mobs butt.
    Last edited by Enuma; 09-15-2013 at 01:41 PM.

  9. #279
    ignotus's Avatar Member
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I absolutely love this profile. It made me get my previously retired rogue back out and do raids. It's amazing.

    My question though: I have been going through the abilites and helpfile, but I can't seem to find a recuperate button/function. Would be nice to toggle that for solo grinding (like the Timeless Isle).
    Am I just blind/stupid or isn't that in the profile? Should I get a PVP profile for that?

  10. #280
    Enuma's Avatar Member
    Reputation
    9
    Join Date
    Sep 2008
    Posts
    137
    Thanks G/R
    4/5
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ignotus View Post
    I absolutely love this profile. It made me get my previously retired rogue back out and do raids. It's amazing.

    My question though: I have been going through the abilites and helpfile, but I can't seem to find a recuperate button/function. Would be nice to toggle that for solo grinding (like the Timeless Isle).
    Am I just blind/stupid or isn't that in the profile? Should I get a PVP profile for that?
    Its codded into Assassination : Int spell

    Code:
    	-- Recuperate / Slice and Dice
    			--if not UnitAffectingCombat("player") then return end
    			if UnitIsUnit("target", "focus") then return end
    			-- Recupe if not full health
    			local s, _, _, _, _, _, sexpire = UnitBuffID("player", 73651)
    			sexpire = (sexpire ~= nil) and sexpire or 0
    			if combopoints > 0 and (redirect ~= 0 or combopoints < 5) and (sexpire - GetTime()) < 6 and (UnitHealth("player") / UnitHealthMax("player")) < 1 then
    				CastSpellByID(73651)
    				return
    			end
    If im not mistaken, this will use any remaining CPs after combat to cast recup on you if youre not maxed.

  11. #281
    ignotus's Avatar Member
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Enuma View Post
    If im not mistaken, this will use any remaining CPs after combat to cast recup on you if youre not maxed.
    Yeah, I saw that. But I kinda want it during combat. I just updated a lot of profiles and found the blinded PVP one. I am sure that one is better for solo grinding. Will test tommorrow.

  12. #282
    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 Enuma View Post
    NWM, I found the reason why its not working, i should kill my self with a spoon. so dumb.

    Working! + rep! But its completely ignoring 10y range check via Sap. Its constantly spamming it, even if im standing in mobs butt.
    Nice you got it working Come to think of it the Sap check might not work if Sap isn't available (i.e. because you are not in Stealth), so you could replace IsSpellInRange(GetSpellInfo(6770), "target") ~= 1 with not CheckInteractDistance("target", 3) which should do the same thing.

    Originally Posted by ignotus View Post
    Yeah, I saw that. But I kinda want it during combat. I just updated a lot of profiles and found the blinded PVP one. I am sure that one is better for solo grinding. Will test tommorrow.
    This has been requested before, I'd like to add it with a health value you can set like it is in my PvP profile, but it's going to be a little while yet before I can do this.

  13. #283
    jermadrun's Avatar Member
    Reputation
    7
    Join Date
    Aug 2013
    Posts
    110
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    one question, will Glyph of Deadly Momentum - Item - World of Warcraft conflict with this profile?

  14. #284
    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 jermadrun View Post
    one question, will Glyph of Deadly Momentum - Item - World of Warcraft conflict with this profile?
    No reason why it should.

  15. #285
    Sister's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I really like this profile, with redirect glyph I was pulling close to 300k dps on normal ToT council

Page 19 of 25 FirstFirst ... 151617181920212223 ... 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 01:26 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