[BETA] PQRotation - an automated ability priority queue. menu

Shout-Out

User Tag List

Page 138 of 731 FirstFirst ... 3888134135136137138139140141142188238638 ... LastLast
Results 2,056 to 2,070 of 10955
  1. #2056
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by noxim View Post
    Hey thanks for the reply, when I look at the Rogue sub spec there are 3 points you can invest in your talent tree that regens health and energy, IMO recup should be always up seemed to make a huge difference for me.
    thats exactly how i coded my own recup that im using to level haha, and i actually use my sub instead of assassin in pve and see a huge difference in there as well
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

    [BETA] PQRotation - an automated ability priority queue.
  2. #2057
    grayyman's Avatar Corporal
    Reputation
    4
    Join Date
    Sep 2011
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by noxim View Post
    Hey thanks for the reply, when I look at the Rogue sub spec there are 3 points you can invest in your talent tree that regens health and energy, IMO recup should be always up seemed to make a huge difference for me.
    Code:
    if UnitBuffID("player",73651) == nil
    and GetComboPoints("player", "target") > x
    then return true end
    replace x with the combo points u'd liek it to go off at... if u want 5 set it to 4, since it's >(greater then)so if u want it to go off at 4 or more set x to 3, etc etc. make sure u place recuperate pretty high up the priority. so it goes off before your other combo point spells.

  3. #2058
    diesall's Avatar Contributor
    Reputation
    197
    Join Date
    Jul 2011
    Posts
    208
    Thanks G/R
    1/46
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    updated interrupt ability should do the trick:

    Code:
    -- interupts: Mind Freeze:47528, Skull Bash: cat:80965 Bear:80964, Rebuke:96231, Kick:1766, Pummel:6552, Counterspell:2139,
    local int = 47528
    local intn = "Mind Freeze"
    local Ss,Sd = GetSpellCooldown(int)
    local Scd = Ss + Sd - GetTime()
    local pveList = { "Healing Wave","Hex","Shock Blast","Chain Lightning","Lava Bolt","Shadow Strike","Dark Command","Confounding Flames","Warped Twilight","Conjure Twisted Visage","Focused Geyser","Flame Conduit","Chained Mind","Umbral Mending","Tranquility","Pact of Darkness","Charged Shot","Anti-Magic Prison","Reverberating Hymn","Summon Sun Orb","Inferno Leap","Hex","Ritual of Bloodletting","Chain Lightning","Lightning Lash","Greater Heal","Cloudburst","Force of Earth","Magma Eruption","Demon Portal","Force Grip","Holy Fire","Motivate","Seaswell","Fear","Drain Life","Pain and Suffering","Unholy Empowerment","Cursed Bullets","Fireball Volley","Ancient Power","Heal","Holy Light","Healing Wave","Flash Heal","Ancient Power","Blood Leech","Whispers of Hethiss","Tears of Blood" }
    local sname,_,_,_,_,_,_,_,sint = UnitCastingInfo("target")
    local scname,_,_,_,_,_,_,scint = UnitChannelInfo("target")
    
    if IsSpellInRange(intn,"target") == 1 and Scd < 0 then
        if sint == false then
            for i,v in ipairs(pveList) do
                if sname == v then CastSpellByID(int,"target") return false end
            end
        elseif scint == false then
            for i,v in ipairs(pveList) do
                if scname == v then CastSpellByID(int,"target") return false end
            end
        end
    end

  4. #2059
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    PQR 1.0.13.10000 - ALPHA (PROFILE WRITERS ONLY PLEASE, THIS HAS NO INCLUDED PROFILES AND WILL NOT WORK WITH ALREADY POSTED PROFILES.)
    http://dl.dropbox.com/u/39925787/PQR_1013_DEV_v2.zip

    -Added "Rotation Notes"
    -Added per-rotation require combat configurations that are set in the rotations XML.
    -Added global override for combat requirements. This will be marked as "Advanced:" in the release version to warn against the average user changing it.
    -Added Lua syntax highlighting in abilities form.
    -Fixed bugs since last alpha version.
    -Rotations are backwards compatible with last alpha update, if no notes or combat requirement exist in the XML we will assume there are no notes and that there is a combat requirement.
    -Again, you can use the profile editor to create profiles or you can format your old rotations as Prefix_CLASS_Rotations.xml and Prefix_CLASS_Abilities.xml.
    PLEASE REPORT ANY BUGS YOU ENCOUNTER WITH THIS VERSION, it will likely be the release version.



    edit: oops forgot an important file, re-uploaded.
    Last edited by Xelper; 10-10-2011 at 08:36 PM.

  5. #2060
    marcmk2's Avatar Member
    Reputation
    5
    Join Date
    Nov 2008
    Posts
    51
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I tested this out over the past 2 days... Its absolutely amazing. Thank you so much, best thing ever made. This is how wow should be played, I have so much more fun with this than I ever did in wow.

  6. #2061
    grayyman's Avatar Corporal
    Reputation
    4
    Join Date
    Sep 2011
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Man the new pqr is so much nicer to edit stuff on.

    I wanted to test it out so i tweaked with the prot pally rotation so it followed [Prot] 4.3 (ptr) Send me on my way - Elitist Jerks priority, and threw in some CD's (ardent defender divine protection). and making the rotations with copy function made it a breeze. Love it dude, good job =3

  7. #2062
    Wopak's Avatar Active Member
    Reputation
    59
    Join Date
    Jul 2008
    Posts
    96
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can someone explain what Manual Mode does exactly and how to use it

  8. #2063
    Piep's Avatar Member
    Reputation
    2
    Join Date
    Oct 2011
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Updated for the new version + some extra tweaks

    Fury War SMF:
    PiepFury_WARRIOR_Abilities.xml
    PiepFury_WARRIOR_Rotations.xml

    Have fun & let me know what you think !!

  9. #2064
    Wopak's Avatar Active Member
    Reputation
    59
    Join Date
    Jul 2008
    Posts
    96
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can someone tell me the difference between the 2 following lines?

    CastSpellByName("Ravage(Cat Form)!")
    CastSpellByName("Ravage(Cat Form)")

    And by difference, i mean: What does the ! in the end do ?

    EDIT:
    nvm found out.

    No ! is your normal Ravage when stealthed
    With ! is the Ravage you can cast after a Feral Charge

    But apparent you can just use CastSpellByName("Ravage(Cat Form)") either from stealth or after charge.
    Last edited by Wopak; 10-11-2011 at 10:41 AM.

  10. #2065
    sheuron's Avatar Knight-Champion
    Reputation
    319
    Join Date
    Aug 2011
    Posts
    504
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Got a rare lua error, only happend once trying to activate one profile after log

    Code:
    Message: [string "..."]:128: attempt to index field 'priorityTable' (a nil value)
    Time: 10/11/11 22:23:13
    Count: 1
    Stack: [string "..."]:128: in function `PQR_ExecuteBot'
    [string "..."]:40: in function <[string "..."]:23>
    
    Locals: (*temporary) = nil
    (*temporary) = "pet"
    (*temporary) = nil
    (*temporary) = nil
    (*temporary) = "attempt to index field 'priorityTable' (a nil value)"
    Another minor bug, "Profile & rotation editor window" is resizable
    Last edited by sheuron; 10-11-2011 at 03:58 PM.

  11. #2066
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Was PQR injected prior to logging out then logging in and turning it back on?

    Did you try and hit the button to activate the profile again? If so did it work?

  12. #2067
    wuzbob's Avatar Member
    Reputation
    1
    Join Date
    Aug 2011
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone have an updated Prot Pally profile?

  13. #2068
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Alright I haven't found any outstanding bugs myself just looking through the code, and have received more good than bad feedback from testers....

    So I decided to update my profiles to the current DEV version of PQR, changed a tiny bit of coding from the TESTERS versions (tiny bit) and split my 3 profiles into 3 separate XML files for easier compartmentalization This will make it easier for me to debug issues you are having, also easier for you to create your own special rotations for either pvp, pve or arena.

    Arena was the least tested by me (as in not at all) and is likely to be completely and utterly screwy

    Will be adding this to my main Pally Profile post as well as an ALPHA test only..... will keep old updates up as well haha

    FOR ANY BRAVE ENOUGH TO TEST IT USING THE DEV ONLY PQR
    Newest PvE/PvP/Arena ALPHA Holy Pally Download:
    Bubba_Holy_Pally_ALPHA_v2.5_TESTER__PQRv1013_DEV.zip


    here's the link to my main Pally Post that i continue to update
    http://www.ownedcore.com/forums/worl...ml#post2131812 ([BETA] PQRotation - an automated ability priority queue.)
    Last edited by bu_ba_911; 10-11-2011 at 05:26 PM.
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  14. #2069
    Debordes's Avatar Member
    Reputation
    14
    Join Date
    Oct 2007
    Posts
    128
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Probably a silly question bu_ba, but is your alpha profile PvE or PvP? Or both?

  15. #2070
    onya's Avatar Member
    Reputation
    67
    Join Date
    May 2008
    Posts
    152
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Xelper: with the lastest version you can't right click in ability editor text box to cut and paste.

    Small feature request, i'd like to be able to save an ability without the edit box closing.
    Last edited by onya; 10-11-2011 at 05:43 PM.

Similar Threads

  1. [Buying] Planetside 2 Priority Beta Key
    By isit123 in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 07-21-2012, 06:34 AM
  2. [Selling] PLANETSIDE 2 Priority/Early Access Beta Account
    By Kabraxiss in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 07-18-2012, 10:20 AM
  3. [Selling] Planetside 2 Priority/Early access Beta Keys
    By mrsluf in forum General MMO Buy Sell Trade
    Replies: 3
    Last Post: 07-17-2012, 04:45 AM
  4. [Selling] Planetside 2 Priority Access beta key codes
    By fatalefout in forum General MMO Buy Sell Trade
    Replies: 1
    Last Post: 06-26-2012, 04:08 PM
  5. [Bot] Automated dungeon queue / Justice Point leecher(Auto-it source)
    By s_e_a_n_66 in forum World of Warcraft Bots and Programs
    Replies: 36
    Last Post: 01-17-2011, 11:50 AM
All times are GMT -5. The time now is 08:41 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