[PQR] Rubim Profiles menu

User Tag List

Page 63 of 68 FirstFirst ... 13596061626364656667 ... LastLast
Results 931 to 945 of 1007
  1. #931
    JUANNY's Avatar Master Sergeant
    Reputation
    21
    Join Date
    May 2013
    Posts
    136
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ehnoah View Post
    This profiels discontinued or ?
    Which profile you referring to?

    [PQR] Rubim Profiles
  2. #932
    Duriell's Avatar Member CoreCoins Purchaser
    Reputation
    1
    Join Date
    Nov 2012
    Posts
    130
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey Juanny, just wanted to say after testing this in a proper 25m raid environment last night (SoO of course) - your CC is the best Frost profile I've used so far (2h tested only).

    My DK is ilvl 535 and I was keeping up with other players (within 30k dps) who were ilvl 550+ atleast on most fights.

    Because I am a trial in this new guild, I was only brought in on Protectors / Sha / Iron Juggernaught, but I ranked 90's with Sha, under 120 with Protectors and under 100 for Iron Juggernaught

    Only feature I would ask for is if you could implement a "mouse-over" Raise Ally feature? Sort of something like Soapbox has in his DK profiles: ie, I hover my mouse cursor over the raid frame of the player I want to use "Raise Ally" on while holding down my "Right Alt Key" and it will continue the rotation normally except it won't spend RP until I have enough for "Raise Ally" (60 RP) then will use the spell, after which I release "Right Alt Key" and it goes back to normal rotation.

    I'm not familiar with coding AT ALL, but something like that would make this the perfect 2h Frost rotation if you could add it without adding to the bloat you were talking about.

    Engineering gloves on use with Pillar / Ghoul worked everytime by the way, great job!!!

  3. #933
    JUANNY's Avatar Master Sergeant
    Reputation
    21
    Join Date
    May 2013
    Posts
    136
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jbaladron00 View Post
    Only feature I would ask for is if you could implement a "mouse-over" Raise Ally feature? Sort of something like Soapbox has in his DK profiles: ie, I hover my mouse cursor over the raid frame of the player I want to use "Raise Ally" on while holding down my "Right Alt Key" and it will continue the rotation normally except it won't spend RP until I have enough for "Raise Ally" (60 RP) then will use the spell, after which I release "Right Alt Key" and it goes back to normal rotation.

    I'm not familiar with coding AT ALL, but something like that would make this the perfect 2h Frost rotation if you could add it without adding to the bloat you were talking about.

    Engineering gloves on use with Pillar / Ghoul worked everytime by the way, great job!!!
    right now my RAISE ALLY ability bugs out when the raid has exhausted all of their battle rez,thats why ive deactivated it and put it to the left in rotation editor
    im currently using a macro battle rez until i can fix the auto battle rez

    first create an ingame macro like this /cast [target=mouseover,help] [help] Raise Ally
    second move that macro icon to one of your task bars-i use one of the right task bars
    thirdly go into keybindings and assign a key to the slot on your taskbar where you put the macro-i use F1 cause its easy to get to

    so now if someone dies put your mouse over their raid frame and spam the macro

    alternately you can use the included xelper interrupt that ive linked for auto battle rez using my buggy battle rez without affecting my main profile

    https://www.dropbox.com/s/fbprq3u2ww...TRAISEALLY.zip

  4. #934
    hellokill11's Avatar Member
    Reputation
    9
    Join Date
    Jul 2009
    Posts
    171
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone compared JUANNY's DW profiles to others available?

  5. #935
    kuukuu's Avatar Contributor
    Reputation
    269
    Join Date
    Jul 2012
    Posts
    619
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JUANNY View Post
    right now my RAISE ALLY ability bugs out when the raid has exhausted all of their battle rez,thats why ive deactivated it and put it to the left in rotation editor
    im currently using a macro battle rez until i can fix the auto battle rez

    first create an ingame macro like this /cast [target=mouseover,help] [help] Raise Ally
    second move that macro icon to one of your task bars-i use one of the right task bars
    thirdly go into keybindings and assign a key to the slot on your taskbar where you put the macro-i use F1 cause its easy to get to

    so now if someone dies put your mouse over their raid frame and spam the macro

    alternately you can use the included xelper interrupt that ive linked for auto battle rez using my buggy battle rez without affecting my main profile

    https://www.dropbox.com/s/fbprq3u2ww...TRAISEALLY.zip
    If you're not sure how to fix it, reading combat log for resses and keeping a counter variable would likely be the simplest way I would think. Then when your counter hits the limit, you know you can't res anymore.
    Former PQR Developer

  6. #936
    JUANNY's Avatar Master Sergeant
    Reputation
    21
    Join Date
    May 2013
    Posts
    136
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kuukuu View Post
    If you're not sure how to fix it, reading combat log for resses and keeping a counter variable would likely be the simplest way I would think. Then when your counter hits the limit, you know you can't res anymore.
    im linking my buggy battle rez code-if anyone thats experienced can fix it i would be grateful and reactivate it in my profile-i havent the slightest idea of how to create a combat log reader to use to count the battle rezzes

    Code:
    local GROUP = ""
    
    if IsInRaid() then
       GROUP = "raid"
    else
       GROUP = "party"
    end
    
    local members = GetNumGroupMembers() - 1
    
    if PQR_SpellAvailable(61999) 
    --and CanUseSpell(61999)
    and IsSpellKnown(61999)
    then
    for i = 1, members, 1 do
            member = GROUP..tostring(i)
    		if ( UnitIsDead(member) or UnitIsCorpse(member) )
    		  and not PQR_IsOutOfSight(member)
    		  and IsSpellInRange(GetSpellInfo(61999), member) == 1
    		  and UnitAffectingCombat("player")
    		  then
    			PQR_CustomTarget = member
    			return true
    		  end
    	    end
    end
    that code works for 1 battle rez bug bugs if multiple dead in raid or if someone else in raid has exhausted all avail raid rezzes
    left side of ability editor has target as custom and spell id 61999

  7. #937
    alexxjr's Avatar Sergeant
    Reputation
    5
    Join Date
    Oct 2012
    Posts
    67
    Thanks G/R
    2/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey Juanny, thanks for the DW profile. Sadly, I cannot get it to work for me unless I disable a whole lot of addons. I throws error with addons constantly, so I can't really use it for now. Any idea of what may cause this?

  8. #938
    JUANNY's Avatar Master Sergeant
    Reputation
    21
    Join Date
    May 2013
    Posts
    136
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by alexxjr View Post
    Hey Juanny, thanks for the DW profile. Sadly, I cannot get it to work for me unless I disable a whole lot of addons. I throws error with addons constantly, so I can't really use it for now. Any idea of what may cause this?
    lol i dont know what particular problem you might have-i just did some parses with both the DW single target and DW aoe rotations 100 percent error free-if there was a bug in the DW profile then i would have gotten some type of error when running the profile-so i have to assume that the problem or error is somewhere in your end-there was a previous poster who felt the bug was in my profilr but it turned out to be that he had a bad addon-what were you doing when the error ocurred-does the profile start out normally-are you trying to queu any spells-need mo info-my profile doesnt use PQI nor do i use global variables that might be conflicting with other addons i dont think-are other users experiencing issues with DW - if all else fails you might have to fall back to another profile that works for you

    EDIT: its also possible that you may have a corrupted profile or PQR install so try a fresh install
    to do this copy PQRupdater.exe to a new folder and run it-it will download all the pqr files it need-grab a fresh copy of my profile
    https://www.dropbox.com/s/gx8t2fxyz2...CDTOGGLEdw.zip

    only put my profile in that new install and run the profile again to test it-if still prob you prob have a buggy addon GL
    Last edited by JUANNY; 09-20-2013 at 08:59 AM.

  9. #939
    JUANNY's Avatar Master Sergeant
    Reputation
    21
    Join Date
    May 2013
    Posts
    136
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just to make things clear ill describe my setup and addons that i use as a raider currently progressing in heroic Siege of Orgrimmar.

    spec=frost 2h specced into both plague leech and blood tap-regardless if you dont take and your profile does not support those 2 talents your not going to be as competitive in dps
    addons
    1. tell me when-i use that to keep track of duration of my diseases and buffs including number of charges on blood tap to make sure profile is not capping charges at 12 very often
    2. recount-to make sure im not failing at dps
    3. DBM-to make sure im not failing at raid mechanics
    4. DKI runes-to keep track of the availabilty of all my runes

  10. #940
    temp123's Avatar Member
    Reputation
    11
    Join Date
    May 2012
    Posts
    247
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JUANNY View Post
    heya just finished testing and figuring out the bugs from my latest edit to my profile-so i feel comfortable releasing it and hopefully it works for ya

    https://www.dropbox.com/s/gx8t2fxyz2...CDTOGGLEdw.zip

    TIER-1=plague leech
    TIER-2=anything you want tho i use purgatory
    TIER-3=situational based on fight but i use deaths advance most often
    TIER-4=death pact is coded into the profile for auto cast if one of your ghouls is active and your at low health
    TIER-5=BLOOD TAP (newly implemented)
    TIER-6-situational but i use remorseless winter most often

    this release incorporates a DW rotation that i just tested without lua errors that ive already corrected-i do not DW vause i already have a nice 2h fro SoO so cannot comfirm how well it performs
    ive included code for engineering gloves that i have not tested since i dont have an engineer-the gloves are coded to fire off when pillar of frost is active to stack offensive cds
    ive also changed the default for cd usage on bosses to off so you have to toggle the cds with the right shift toggle to on and right shift again to toggle off
    the profile is built upon the new 5.4 talent of plague leech which returns 2 runes and blood tap so spect accordingly

    1. the profile does not use or need PQI
    2. the t15 4 piece bonus is coded in so if you dont have the bonus then modify SR ability to 35
    3. automatic use of dark succor glyth and soulstones at low health
    4. automatic battle rez in raid or group but sometimes glitches
    5. uses the updated plague leech talent on cooldown that returns 2 runes which is the best in that tier so spec into plague leech-if you spec into unholy blight it uses that to put both diseases on target

    i am using in the profile bu_ba_911 from nova teams new spell queu system which ive found to be more reliable then rubims /rcast
    you can queu a spell in several ways
    1.type /novaspell (spell id) into chat
    2. spell id into a box that pops when you initiate combat
    3. my preferred method is setting a macro with the spell and keybinding the macro for ease of use
    macro example for queing Remorseless Winter /novaspell 108200
    4.multiple spells can be queud
    Smooth profile, you should make your own topic ass well. Good job

  11. #941
    JUANNY's Avatar Master Sergeant
    Reputation
    21
    Join Date
    May 2013
    Posts
    136
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by temp123 View Post
    Smooth profile, you should make your own topic ass well. Good job
    thanks lol-i shared my profile cause it is one that i personally used and can attest to in terms of raw dps performance-PQR is a community driven program and i wanted to contribute something and not be a full time leecher-maintaining a thread is alot more time consuming process that i cant find the time for-i dont mean to usurp rubims thread but saw hes been busy IRL so i wanted to give raiders a stopgap profile until rubim makes a return to his thread

  12. #942
    aenyth's Avatar Private
    Reputation
    1
    Join Date
    Oct 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello Juanny

    I try to test your profile but i have a problem the profile don't cast FP and Blood tap.
    I have made a new fresh PQR, but it's the same, only 72k dps on boss post ( i make 160k with weird profile ).
    I miss a data file or another thing ?

  13. #943
    JUANNY's Avatar Master Sergeant
    Reputation
    21
    Join Date
    May 2013
    Posts
    136
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by aenyth View Post
    Hello Juanny

    I try to test your profile but i have a problem the profile don't cast FP and Blood tap.
    I have made a new fresh PQR, but it's the same, only 72k dps on boss post ( i make 160k with weird profile ).
    I miss a data file or another thing ?
    dont know what to say lol-the same profile im using ive tested both the 2h and DW rotations -both are using plague leech and blood tap-are you specced into those 2 talents-using the 2h im pulling 220k-250k at ilvl 551 using the 2h from general nazgrim-even DW producing 200k dps-ive posted the rotation for those that want to try it out but feel free to use whatever profile works for you-i do not use a data profile-other profile writers are free to use my blood tap and plague leech codes or write their own IDC

  14. #944
    JUANNY's Avatar Master Sergeant
    Reputation
    21
    Join Date
    May 2013
    Posts
    136
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So you know how plague leech and blood tap work?

  15. #945
    aenyth's Avatar Private
    Reputation
    1
    Join Date
    Oct 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have Plague Leech and Blood Tap, but the profile only cast Obliterate and Howling blast, he don't cast Frost Strike, and when i use Frost strike manually, he don't cast Blood Tap when i have the require tick.
    I have try in DW rotation, and it's the same, the profile don't cast frost strike.
    I use your last release.
    Have you an idea ?

Similar Threads

  1. [PQR] MOP profiles
    By Sheepmoon in forum WoW Bot Maps And Profiles
    Replies: 350
    Last Post: 01-13-2014, 05:59 AM
  2. [PQR] - GRB profiles
    By GRB in forum WoW Bot Maps And Profiles
    Replies: 8
    Last Post: 05-23-2013, 01:43 AM
  3. [PQR] Mage Profiles
    By discobob in forum WoW Bot Maps And Profiles
    Replies: 11
    Last Post: 04-07-2013, 04:46 PM
  4. Warlock (PQR) pvp profile please?
    By leonel916 in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 12-04-2012, 08:41 AM
  5. PQR Old profiles
    By Fumi in forum WoW Bots Questions & Requests
    Replies: 2
    Last Post: 05-08-2012, 02:35 PM
All times are GMT -5. The time now is 08:09 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