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

Shout-Out

User Tag List

Page 412 of 731 FirstFirst ... 312362408409410411412413414415416462512 ... LastLast
Results 6,166 to 6,180 of 10955
  1. #6166
    kclux's Avatar Active Member
    Reputation
    16
    Join Date
    Jun 2011
    Posts
    199
    Thanks G/R
    2/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Valma, nice work with your profile, I just wish it wasn't that "compressed". Trying to change something or understand something is close to impossible, for me at least with PQR hanging for 2-3 minutes when I try to open Functions in the Ability Editor for example.

    [BETA] PQRotation - an automated ability priority queue.
  2. #6167
    Valma's Avatar Contributor
    Reputation
    152
    Join Date
    Nov 2011
    Posts
    209
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kclux View Post
    @Valma, nice work with your profile, I just wish it wasn't that "compressed". Trying to change something or understand something is close to impossible, for me at least with PQR hanging for 2-3 minutes when I try to open Functions in the Ability Editor for example.
    Use some texteditor with sintax hightlightning(e-texteditor,notepad2 etc.).This is the way I'm working on any profiles. And yes,to do what this profile doing and WILL be doing in future(tiiiiiimes more than now),it must be even more complicated.

    Anyway,I'm trying to programm my profile in such way that you just need to start it one time and thats all.
    MEDVED+VODKA+BALALAYKA

  3. #6168
    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)
    Originally Posted by happydado View Post
    *sheuron pls can u explain me what is Pressure function
    and i have check your frost mage pvp profile and i have see that in poly spell there arent the polyfunction right?
    and can u implement in the spellsteal the % of mana for use that?
    Go to rotation editor and add Polymorph before "--- offensive spells ---"

    About spellsteal go to ability editor and replace
    Code:
    if StealThisBuff("target") then return true end
    with this code to cast spellsteal only when mana is above 50%
    Code:
    if StealThisBuff("target") 
    and 100 * UnitPower("player") / UnitPowerMax("player") > 50
    then return true end
    ---

    Pressure function explained
    http://www.ownedcore.com/forums/worl...ml#post2196267 ([BETA] PQRotation - an automated ability priority queue.)
    Last edited by sheuron; 02-20-2012 at 08:57 AM.

  4. #6169
    trinchen's Avatar Corporal
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    shadow???

    Heya guys love all the profiles being made, bubba and sheuron yall are my heros, anyway i was wondering if maybe there was a shadow priest pve profile. i looked around in the forum wasnt able to find one. The earliest one a i found was from dec2011 was wondering if that one is still good or if anyone has updated one since.

  5. #6170
    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)
    Originally Posted by trinchen View Post
    Heya guys love all the profiles being made, bubba and sheuron yall are my heros, anyway i was wondering if maybe there was a shadow priest pve profile. i looked around in the forum wasnt able to find one. The earliest one a i found was from dec2011 was wondering if that one is still good or if anyone has updated one since.
    Well, i think shadow priest rotation didnt changed since cataclysm was released so any profile released should be valid.

  6. #6171
    kclux's Avatar Active Member
    Reputation
    16
    Join Date
    Jun 2011
    Posts
    199
    Thanks G/R
    2/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Valma View Post
    Use some texteditor with sintax hightlightning(e-texteditor,notepad2 etc.).This is the way I'm working on any profiles. And yes,to do what this profile doing and WILL be doing in future(tiiiiiimes more than now),it must be even more complicated.

    Anyway,I'm trying to programm my profile in such way that you just need to start it one time and thats all.
    BTW did not want to sound like I am complaining, I am not ! Just saying that yours is pretty much the hardest to understand and I always have some things in the profiles I "improve" to my personal likings or have to add some stuff and with your profile that is a lot harder. On the bright side, could see it as challenge to improve my LUA skills hehe.

  7. #6172
    happydado's Avatar Active Member
    Reputation
    20
    Join Date
    Feb 2011
    Posts
    158
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    Go to rotation editor and add Polymorph before "--- offensive spells ---"

    About spellsteal go to ability editor and replace
    Code:
    if StealThisBuff("target") then return true end
    with this code to cast spellsteal only when mana is above 50%
    Code:
    if StealThisBuff("target") 
    and 100 * UnitPower("player") / UnitPowerMax("player") > 50
    then return true end
    ---

    Pressure function explained
    http://www.ownedcore.com/forums/worl...ml#post2196267 ([BETA] PQRotation - an automated ability priority queue.)
    In the ability file of frost mage poly text is this
    <Name>Polymorph</Name>
    <Default>false</Default>
    <SpellID>0</SpellID>
    <Actions />
    <Lua>if UnitExists(&quot;mouseover&quot and UnitIsUnit(&quot;mouseover&quot;,&quot;target&quot == nil and IsLeftControlKeyDown() then CastSpellByID(118,&quot;mouseover&quot end</Lua>
    <RecastDelay>500</RecastDelay>
    <Target>Target</Target>
    <CancelChannel>False</CancelChannel>
    And no the text of the polyfunction text.

    PS: how pressure works in the frost mage profile can u do 1 situation in arena ?

    Tnx and + 2 rep for u.
    u are the best
    Last edited by happydado; 02-20-2012 at 09:16 AM.

  8. #6173
    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)
    Originally Posted by happydado View Post
    In the ability file of frost mage poly text is this
    <Name>Polymorph</Name>
    <Default>false</Default>
    <SpellID>0</SpellID>
    <Actions />
    <Lua>if UnitExists("mouseover") and UnitIsUnit("mouseover","target") == nil and IsLeftControlKeyDown() then CastSpellByID(118,"mouseover") end</Lua>
    <RecastDelay>500</RecastDelay>
    <Target>Target</Target>
    <CancelChannel>False</CancelChannel>
    And no the text of the polyfunction text.

    PS: how pressure works in the frost mage profile can u do 1 situation in arena ?

    Tnx and + 2 rep for u.
    u are the best
    Meh, that code was old, im fire pve/pvp now, forgot to update frost profile. Download again now

    http://goo.gl/rseZ0

    - Add smart polymorph for arenas to Frost rotation
    - Spellsteal only when your mana is above 50%

    Dont think the Pressure function is useful on pvp, is done to finetune dps on pve. Maybe can be used on arena 5vs5 to autotarget an enemy when all your friends got same target.

  9. #6174
    mrleo's Avatar Member
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    54
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    guys what is the "Ability check delay" function in the window for? is there a way to make the program spam the spells before the GCD (to avoid latency)?

  10. #6175
    mrleo's Avatar Member
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    54
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nvm found it ... its amazing lol...

  11. #6176
    Kaolla's Avatar Contributor
    Authenticator enabled
    Reputation
    126
    Join Date
    Apr 2007
    Posts
    341
    Thanks G/R
    2/2
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by trinchen View Post
    Heya guys love all the profiles being made, bubba and sheuron yall are my heros, anyway i was wondering if maybe there was a shadow priest pve profile. i looked around in the forum wasnt able to find one. The earliest one a i found was from dec2011 was wondering if that one is still good or if anyone has updated one since.
    Search for any of Mentally's posts. I believe her rotation is hosted on Bubba's SVN as well, but anything she has made has been exceptional, especially the more recent builds.

  12. #6177
    happydado's Avatar Active Member
    Reputation
    20
    Join Date
    Feb 2011
    Posts
    158
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    Meh, that code was old, im fire pve/pvp now, forgot to update frost profile. Download again now

    http://goo.gl/rseZ0

    - Add smart polymorph for arenas to Frost rotation
    - Spellsteal only when your mana is above 50%

    Dont think the Pressure function is useful on pvp, is done to finetune dps on pve. Maybe can be used on arena 5vs5 to autotarget an enemy when all your friends got same target.
    You are the best tnx alot.
    I think that nice thing to add can is the deep freeze on focus target if i have one.

  13. #6178
    kclux's Avatar Active Member
    Reputation
    16
    Join Date
    Jun 2011
    Posts
    199
    Thanks G/R
    2/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Valma, btw just tried your latest release from SVN and I cannot get it to do anything and I have no idea why. I tried as Destruction and as Affliction but it is not doing anything at all. I also tried /pqd which doesn't work either. Might be something at my end but all my other profiles work just fine.

  14. #6179
    kickmydog's Avatar Contributor
    Reputation
    257
    Join Date
    Jul 2011
    Posts
    635
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mrleo View Post
    guys where do find all the spells ID to make my own profile?
    Wowhead: You see what we did there.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017

  15. #6180
    ipass's Avatar Member
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    45
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok nobody Knows how to fix this?


    15 Hours Ago

    ok thanks to Elokaynu for his priest profile)

    I can get most of my Shadow spells to work except Vampiric Touch?

    Actions:/startattck
    SpellId: 34914
    CODE:

    local VT, _, _, _, _, _, timer = UnitDebuffID("target", 34914, "PLAYER")
    local target = UnitExists("target")
    local DarkArch = UnitBuffID("player", 87153)

    if DarkArch ~= nil then
    return false
    elseif target ~= nil then
    if VT ~= nil then
    if timer - GetTime() < 3 then
    return true
    else
    return false
    end
    else
    return true
    end
    else
    return false
    end



    or this code

    local VT, _, _, _, _, _, timer = UnitDebuffID("target", 34914, "PLAYER")
    local target = UnitExists("target")
    local DarkArch = UnitBuffID("player", 87153)

    if DarkArch ~= nil then
    return false
    elseif target ~= nil then
    if VT ~= nil then
    if timer - GetTime() < 3 then
    return true
    else
    return false
    end
    else
    return true
    end
    else
    return false
    end

    Can anyone help me with this problem?

    thanks

    ipass

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 12:35 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