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

Shout-Out

User Tag List

Page 608 of 731 FirstFirst ... 108508558604605606607608609610611612658708 ... LastLast
Results 9,106 to 9,120 of 10955
  1. #9106
    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)
    My primary function is failure

    [BETA] PQRotation - an automated ability priority queue.
  2. #9107
    farnumdizzle's Avatar Master Sergeant
    Reputation
    32
    Join Date
    Mar 2012
    Posts
    93
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kaolla View Post
    My primary function is failure
    I'd agree with you if your profile wasn't so good!

  3. #9108
    gamingjunkie's Avatar Member
    Reputation
    4
    Join Date
    Feb 2011
    Posts
    73
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Have that fixed, now when I enable PQR in game, nothing happens or am I missing a step somewhere

    EDIT: Scratch that, I figured it out.

  4. #9109
    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)
    Did you try to target an enemy?

    The rotation check if you have the lightninght bolt talent and cast it when nobody need healing
    [ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
    If you like this piece of code feel free to invite me a beer making a donation.
    My paypal account: [email protected]

  5. #9110
    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)
    Honestly, I haven't been able to reproduce the Unholy/Blood Presence issue after a dozen 2s matches, Tol Barad, the Darkmoon Deathmatch, several BGs, and twenty minutes spent dismounting in midair until my HP was under 25% and beating up Training Dummies.

    Just to be on the safe side, I've split the Presences into two different abilities and widened the percentage gap, but I can't guarantee this will resolve the issue. I'll check things line-by-line tonight if anyone continues to experience problems.

    You can update to 2.3b via PQR's built-in update function, or through my Google Code page. Again, thanks for bearing with me.

    http://kaolla-pqr-profiles.googlecod...20-%202.3b.rar

  6. #9111
    Zemnexx's Avatar Active Member CoreCoins Purchaser
    Reputation
    31
    Join Date
    Aug 2011
    Posts
    141
    Thanks G/R
    1/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Kaolla Is there anyway to change the button the Kill function is bound to any key, as I use all my modifier keys in game. I'm not very LUA savvy as previously stated.

  7. #9112
    me28791's Avatar Member
    Reputation
    10
    Join Date
    Jul 2011
    Posts
    90
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Zemnexx View Post
    @Kaolla Is there anyway to change the button the Kill function is bound to any key, as I use all my modifier keys in game. I'm not very LUA savvy as previously stated.
    you can only change to left or right shift, ctrl or alt pretty sure

  8. #9113
    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)
    Unfortunately only the Modifier keys Shift, Control and Alt are covered under LUA. Because the system differentiates between Right and Left modifier keys, we have six to use...which unfortunately still isn't many.

    I apologize. I don't know if there's a way for Xelper to add support for other keybinds, but it would be an interesting addition. Until then, this is the best we can do

  9. #9114
    travis2861's Avatar Contributor
    Reputation
    99
    Join Date
    Aug 2007
    Posts
    227
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kaolla View Post
    Unfortunately only the Modifier keys Shift, Control and Alt are covered under LUA. Because the system differentiates between Right and Left modifier keys, we have six to use...which unfortunately still isn't many.

    I apologize. I don't know if there's a way for Xelper to add support for other keybinds, but it would be an interesting addition. Until then, this is the best we can do
    Would it be possible for it to pick up the num pad for those of us with nagas?

  10. #9115
    ishtro's Avatar Master Sergeant
    Reputation
    36
    Join Date
    Jul 2010
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    you can use GetCVar() as well. in my arms warrior profile i use in game macros to toggle abilities on/off.

    Ability Name: Blood Fury
    Spell ID: 20572
    Code:
    if GetCVar("CDs") == "yes"
    	and UnitRace("player")=="Orc"
    	and UnitAffectingCombat("player")
    	and UnitExists("target") 
    	and UnitCanAttack("player","target") 
    	and GetShapeshiftForm() == 3 then 
    	return true 
    end
    in game macro using Super Duper Macro
    Code:
    #showtooltip
    /run RegisterCVar("CDs","no")    
    /run if GetCVar("CDs")=="no" then SetCVar("CDs","yes") SetMacroSpell("CDs","Deadly Calm") print("Cooldowns: \124cFF15E61C Enabled") return elseif GetCVar("CDs")=="yes" then SetCVar("CDs","no") SetMacroSpell("CDs","Battle Stance") print("Cooldowns: \124cFFE61515 Disabled") end

  11. #9116
    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 Kaolla View Post
    Unfortunately only the Modifier keys Shift, Control and Alt are covered under LUA. Because the system differentiates between Right and Left modifier keys, we have six to use...which unfortunately still isn't many.

    I apologize. I don't know if there's a way for Xelper to add support for other keybinds, but it would be an interesting addition. Until then, this is the best we can do
    Xelper helped me so to save you, I'll help you through pms it's a lil more in depth but it should work XD

    Sent from my phone.
    ^0^Team Nova's PQR NCC ^0^

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

  12. #9117
    itsmemario's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    Did you try to target an enemy?

    The rotation check if you have the lightninght bolt talent and cast it when nobody need healing
    i just tested this on a 5 man. I have 2 points in the talent and even when i target an enemy it doesent seem to cast for me either. All party members at 100% and im casting nothing.Its ok for me cause i just have lb bound to alt1 to cast when i need to.

    I also noticed you have riptide set to only cast if not moving. Its instant so shouldent we want to cast if we are moving or not.
    Last edited by itsmemario; 04-04-2012 at 11:46 PM.

  13. #9118
    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 bu_ba_911 View Post
    Xelper helped me so to save you, I'll help you through pms it's a lil more in depth but it should work XD

    Sent from my phone.
    You, sir, are a gentleman and a scholar.

  14. #9119
    Gabbz's Avatar Contributor
    Reputation
    184
    Join Date
    Dec 2011
    Posts
    451
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Zemnexx View Post
    @Kaolla Is there anyway to change the button the Kill function is bound to any key, as I use all my modifier keys in game. I'm not very LUA savvy as previously stated.
    you can use mousebuttons.

    IsMouseButtonDown([button])

    Arguments:

    button - Number or name of a mouse button (number,string)
    1 or LeftButton - Primary mouse button
    2 or RightButton - Secondary mouse button
    3 or MiddleButton - Third mouse button (or clickable scroll control)
    4 or Button4 - Fourth mouse button
    5 or Button5 - Fifth mouse button
    Looking for exploiters and botters to Elder Scrolls Online.

  15. #9120
    cs0267's Avatar Member
    Reputation
    1
    Join Date
    Dec 2011
    Posts
    18
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The Nova Holy Pally profile is awesome. Outhealed people in lfr in raidfinder gear and I was in full pvp blues... Awesome job.

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 09:31 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