[PQR] Mavmins PQR Profiles menu

Shout-Out

User Tag List

Page 9 of 28 FirstFirst ... 5678910111213 ... LastLast
Results 121 to 135 of 413
  1. #121
    healzzz's Avatar Knight
    Reputation
    5
    Join Date
    Apr 2013
    Posts
    222
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Regarding Opener:

    UF Specced
    [Pre FET, Prepot Pre-Lb], SL, [Hero], FS, UE, LvB, [LvB procs], Ascendance

    EB Specced
    [Pre FET, Prepot Pre-Lb], SL, [Hero], FS, LvB, EB, [LvB procs], Ascendance

    [PQR] Mavmins PQR Profiles
  2. #122
    Mavmins's Avatar Contributor
    Reputation
    165
    Join Date
    Oct 2012
    Posts
    606
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    SL is ? 10chars

  3. #123
    healzzz's Avatar Knight
    Reputation
    5
    Join Date
    Apr 2013
    Posts
    222
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Mavmins View Post
    SL is ? 10chars
    Sorry, Stormlash

  4. #124
    healzzz's Avatar Knight
    Reputation
    5
    Join Date
    Apr 2013
    Posts
    222
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Oh by the way, Engineering CD's is also activating belt

  5. #125
    Mavmins's Avatar Contributor
    Reputation
    165
    Join Date
    Oct 2012
    Posts
    606
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yeah its meant to, its not on GCD and it does dmg

  6. #126
    healzzz's Avatar Knight
    Reputation
    5
    Join Date
    Apr 2013
    Posts
    222
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nitro Boost is increasing dps?

  7. #127
    Gargamelus's Avatar Member Authenticator enabled
    Reputation
    1
    Join Date
    May 2013
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Awesome work Mav. Really appreciate some love for the warriors comunity

  8. #128
    Opacho's Avatar Master Sergeant
    Reputation
    12
    Join Date
    Feb 2012
    Posts
    83
    Thanks G/R
    4/1
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by healzzz View Post
    Nitro Boost is increasing dps?
    He was refering to Frag Belt, not Nitro xD But Mav now frag belt does shit dmg, u should remove it

  9. #129
    Mavmins's Avatar Contributor
    Reputation
    165
    Join Date
    Oct 2012
    Posts
    606
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    you can go into ability editor, engineering cds and just remeove the 3 lines for frag belt

    My arms / fury profiles work but they aren't putting out as much dmg as some paid ones I tested so I'm gonna go back and look at them again, maybe not trust icy-veins so much. Id also like to rewrite my elemental shaman profile if I get time

    but...........baby is due soon so dunno when that will be, I probably wont renew my gametime for a month or so

  10. #130
    healzzz's Avatar Knight
    Reputation
    5
    Join Date
    Apr 2013
    Posts
    222
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ohhh Frag Belt ok that explains it. Yeah sorry I didnt think of that. The usual "raid combo" seems to be Synapse Springs/Nitro Boost

  11. #131
    Moonscarlet's Avatar Member
    Reputation
    1
    Join Date
    Apr 2010
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey, is it possible to make a macro (slash command) for the increase/decrease targets for the fury profile?:>


    Edit: I hope you don't mind, I added it myself and removed the use of the shortcut keys (alt, ctrl, shift)
    Just in case anyone else wanted to do it: using '/inc' & '/dec'

    In ability "-- Increase Target Toggle --"

    PHP Code:
    if PQI_MavminsFURYHOTKEYS_IncreaseTargets_enable == true then

        SLASH_INC1 
    '/inc'
        
    function SlashCmdList.INC(msgeditbox)
        
            if 
    TARGET_MODE == "ONE" then
                TARGET_MODE 
    "TWO"
                
    if PQI_MavminsFURYFUNCTIONS_ChatNotifications_enable then
                    PQR_WriteToChat
    ("Targets Increased")
                    return 
    true
                
    else
                    return 
    true
                end
            end
            
            
    if TARGET_MODE == "TWO" then
                TARGET_MODE 
    "FIVE"
                 
    if PQI_MavminsFURYFUNCTIONS_ChatNotifications_enable then
                    PQR_WriteToChat
    ("Targets Increased")
                    return 
    true
                
    else
                    return 
    true
                end
            end
        end
    end 
    In ability "-- Decrease Target Toggle --"
    PHP Code:
    if PQI_MavminsFURYHOTKEYS_DecreaseTargets_enable == true then

        SLASH_DEC1 
    '/dec'
        
    function SlashCmdList.DEC(msgeditbox)
        
            if 
    TARGET_MODE == "FIVE" then
                TARGET_MODE 
    "TWO"
                
    if PQI_MavminsFURYFUNCTIONS_ChatNotifications_enable then
                    PQR_WriteToChat
    ("Targets Decreased")
                    return 
    true
                
    else
                    return 
    true
                end
            end
            
            
    if TARGET_MODE == "TWO" then
                TARGET_MODE 
    "ONE"
                
    if PQI_MavminsFURYFUNCTIONS_ChatNotifications_enable then
                    PQR_WriteToChat
    ("Targets Decreased")
                    return 
    true
                
    else
                    return 
    true
                end
            end
        end
    end 
    Last edited by Moonscarlet; 10-12-2013 at 02:32 AM.

  12. #132
    healzzz's Avatar Knight
    Reputation
    5
    Join Date
    Apr 2013
    Posts
    222
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Mav, any plans to integrate an opener and macro commands into the Elemental profile?

  13. #133
    Mavmins's Avatar Contributor
    Reputation
    165
    Join Date
    Oct 2012
    Posts
    606
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's not top of my priorities right now as I don't know when I'll get back online but I will add macros in if I come back to wow after the baby. Not too sure how to implement openers, won't soap do it seeing as you actually paid money for his profile ?

  14. #134
    Mavmins's Avatar Contributor
    Reputation
    165
    Join Date
    Oct 2012
    Posts
    606
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Fury Warrior updated with a new build

    MASSIVE credit to AveryKey whos rotation I took, fixed the stuff I didn't like and put a wrapper around so rep him if you think its better than my old one.

  15. #135
    healzzz's Avatar Knight
    Reputation
    5
    Join Date
    Apr 2013
    Posts
    222
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Mavmins View Post
    It's not top of my priorities right now as I don't know when I'll get back online but I will add macros in if I come back to wow after the baby. Not too sure how to implement openers, won't soap do it seeing as you actually paid money for his profile ?
    Ideally with a key. I.e. hold RS to start opener. You would basically press the key when the pulltimer hits 2 or 1, it forces combat and executed the opener, once done, it switches back to the normal routine

Page 9 of 28 FirstFirst ... 5678910111213 ... LastLast

Similar Threads

  1. [PQRotation] Firepong's PQR Profile's Feedback - Comments - Question's?
    By firepong in forum WoW Bot Maps And Profiles
    Replies: 714
    Last Post: 08-14-2013, 03:43 AM
  2. [PQRotation] Blinded's PQR Profile's Feedback - Comments - Question's?
    By [Blinded] in forum WoW Bot Maps And Profiles
    Replies: 123
    Last Post: 08-05-2013, 07:03 AM
  3. Wtb ele sham pqr profile thats flawless at for lvl 90s
    By odano1988 in forum WoW Bot Maps And Profiles
    Replies: 7
    Last Post: 10-12-2012, 10:23 AM
  4. [Buying] Best Unholy DK PQR Profile !
    By leinadz in forum World of Warcraft Buy Sell Trade
    Replies: 0
    Last Post: 09-17-2012, 03:10 PM
  5. PQR Profiles and leveling
    By Durf in forum WoW Bots Questions & Requests
    Replies: 2
    Last Post: 02-01-2012, 08:21 PM
All times are GMT -5. The time now is 04:08 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