[PQR] CuteOne's Profiles menu

User Tag List

Page 56 of 102 FirstFirst ... 6525354555657585960 ... LastLast
Results 826 to 840 of 1522
  1. #826
    Drinksbeer's Avatar Knight-Lieutenant
    Reputation
    33
    Join Date
    Jan 2013
    Posts
    252
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah i have to admit that this profile does pretty well in pvp, sure it doesn't have the tweaks that cokx's has but it's pretty nice right out the box.

    [PQR] CuteOne's Profiles
  2. #827
    ph34rt3hcute1's Avatar Contributor Authenticator enabled
    Reputation
    287
    Join Date
    Nov 2012
    Posts
    734
    Thanks G/R
    7/61
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sh00k View Post
    I'm trying to modify this profile to be used for PVP. Could anyone shed some insight on how to make the profile use the Ravage proc that happens every 30s from the PVP set bonus? I've searched the forums but no luck.

    Also interested on how to prioritize Ravage during incarnation.

    Any input much appreciated.
    If you can give me any more details, like what gear and what the proc is called and perhaps i can code it in.
    BadRotations
    Developer

  3. #828
    sh00k's Avatar Member
    Reputation
    9
    Join Date
    Apr 2007
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The buff is called Stampede
    The ability is called Ravage!
    The item set bonus is here

  4. #829
    ph34rt3hcute1's Avatar Contributor Authenticator enabled
    Reputation
    287
    Join Date
    Nov 2012
    Posts
    734
    Thanks G/R
    7/61
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is this the spell id for the Stampede buff? 131537
    BadRotations
    Developer

  5. #830
    sh00k's Avatar Member
    Reputation
    9
    Join Date
    Apr 2007
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ph34rt3hcute1 View Post
    Is this the spell id for the Stampede buff? 131537

    That or 81022

  6. #831
    ph34rt3hcute1's Avatar Contributor Authenticator enabled
    Reputation
    287
    Join Date
    Nov 2012
    Posts
    734
    Thanks G/R
    7/61
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I think thats the old buff anyways try this,
    Code:
    if ubid(p,131537) and (pow>=45 or ubid(p,cc)) and sir(gsi(mgl),t)==1 then
    	cast(gsi(rvg))
    end
    add that to Ravage, it may also work using
    Code:
    cast(gsi(rvf))
    Just incase it wont cast with rvg
    BadRotations
    Developer

  7. #832
    sh00k's Avatar Member
    Reputation
    9
    Join Date
    Apr 2007
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Dosent seem to be working. Tried it using 81022 as the spell ID as well. Still testing

  8. #833
    ph34rt3hcute1's Avatar Contributor Authenticator enabled
    Reputation
    287
    Join Date
    Nov 2012
    Posts
    734
    Thanks G/R
    7/61
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I would suggest getting idTip - Tooltip - World of Warcraft Addons - Curse it will help to identify the spell id of the buff
    BadRotations
    Developer

  9. #834
    sh00k's Avatar Member
    Reputation
    9
    Join Date
    Apr 2007
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ph34rt3hcute1 View Post
    I would suggest getting idTip - Tooltip - World of Warcraft Addons - Curse it will help to identify the spell id of the buff
    Addon shows 81022 to be the buff.

    Still no luck. This is what I have.

    Code:
    if ubid(p,81022) and (pow>=45 or ubid(p,cc)) and sir(gsi(mgl),t)==1 then    cast(gsi(rvg))
    end
    if ubid(p,sr) and (pow>=45 or ubid(p,cc)) and behind and check(rvg) and plvl>=54 then
        cast(gsi(rvg))
    end
    if ((ubid(p,sr) and check(sr)) or plvl < 54 or srg==false) and (not behind or plvl < 54) and check(mgl) then
        cast(gsi(mgl))
    end
    if ubid(p,81022) and (pow>=45 or ubid(p,cc)) and sir(gsi(mgl),t)==1 then
        cast(gsi(rvf))
    I think I will just have to resort to spamming it myself, not too big of an issue.

  10. #835
    ph34rt3hcute1's Avatar Contributor Authenticator enabled
    Reputation
    287
    Join Date
    Nov 2012
    Posts
    734
    Thanks G/R
    7/61
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    maybe it was a copy/paste error but you are missing an "end"

    I can also confirm 81022 as the 4pc buff and it uses Ravage! (102545) ability, so it should work if it's properly coded.
    Last edited by ph34rt3hcute1; 07-12-2013 at 09:00 PM.
    BadRotations
    Developer

  11. #836
    sh00k's Avatar Member
    Reputation
    9
    Join Date
    Apr 2007
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I was missing the end, made the change but still no go. =(

  12. #837
    ph34rt3hcute1's Avatar Contributor Authenticator enabled
    Reputation
    287
    Join Date
    Nov 2012
    Posts
    734
    Thanks G/R
    7/61
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    you can also try changing this line under Shred...
    Code:
    if ubid(p,inb) then
    		cast(gsi(rvf))
    ...to read....

    Code:
    if ubid(p,inb) or ubid(p,81022) then
    		cast(gsi(rvf))
    BadRotations
    Developer

  13. #838
    cukiemunster's Avatar Contributor
    Reputation
    132
    Join Date
    Dec 2009
    Posts
    1,129
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If the pvp ravage id is different from the normal ravage id don't forget to add it to the spell list. If it's the same then ignore this whole post lol.

    Sent from my Galaxy S4 using Tapatalk 2

  14. #839
    sh00k's Avatar Member
    Reputation
    9
    Join Date
    Apr 2007
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ph34rt3hcute1 View Post
    you can also try changing this line under Shred...
    Code:
    if ubid(p,inb) then
            cast(gsi(rvf))
    Tried this and it broke the profile.

    I don't want to take up anymore of your time. I made a Ravage/Shred macro I can spam anytime I see the buff. It will do for now.

    If the pvp ravage id is different from the normal ravage id don't forget to add it to the spell list. If it's the same then ignore this whole post lol.
    Double checked that.

  15. #840
    cukiemunster's Avatar Contributor
    Reputation
    132
    Join Date
    Dec 2009
    Posts
    1,129
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sh00k View Post
    I made a Ravage/Shred macro I can spam anytime I see the buff. It will do for now.
    You could also keybind Ravage to an alt modifier since alt pauses the rotation. This is what I have done for tranquility.

    Sent from my Galaxy S4 using Tapatalk 2

Similar Threads

  1. [PQR] Nova Team Profiles
    By bu_ba_911 in forum WoW Bot Maps And Profiles
    Replies: 2341
    Last Post: 07-02-2018, 03:56 AM
  2. [PQR] Gabbz Mage Profiles
    By Gabbz in forum WoW Bot Maps And Profiles
    Replies: 207
    Last Post: 07-18-2016, 08:00 PM
  3. {PQR} Windwalker Raid Profile - Wanted
    By fish221171 in forum WoW Bot Maps And Profiles
    Replies: 3
    Last Post: 10-18-2012, 02:01 AM
  4. PQR - DK Blood profiles - none of them work :(
    By zambeaux in forum WoW Bot Maps And Profiles
    Replies: 4
    Last Post: 10-09-2012, 07:44 AM
  5. PQR PVP Hunter profile?
    By aLorzy91 in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 07-29-2012, 02:32 AM
All times are GMT -5. The time now is 10:40 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