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

User Tag List

Page 609 of 731 FirstFirst ... 109509559605606607608609610611612613659709 ... LastLast
Results 9,121 to 9,135 of 10955
  1. #9121
    firepong's Avatar Elite User
    Reputation
    384
    Join Date
    Jan 2008
    Posts
    955
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Gabbz View Post
    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
    Sounds like a good idea lol. For example:

    Code:
    local mouse = IsMouseButtonDown([5])
    local Ctrl = IsRightControlKeyDown()
    local lbtarget = GetDamageTarget()
    
    if Ctrl == true and mouse == nil then
     SilentCast(73920)
      if SpellIsTargeting() then CameraOrSelectOrMoveStart() CameraOrSelectOrMoveStop() end  
      return true
    elseif Ctrl == true and mouse == 1 then
     SilentCast(403,lbtarget)
    end
    If the above code where to work, like from Gabbz above post, if Right control is down and the 5th mouse button isn't, it will cast Healing Rain (Shaman) on mouse location. But if both Right Control and 5th mouse button are down, then it will cast Lightning Bolt on damage target.

    In essence, that's what it is suppose to do, but nothing is perfect lol
    Last edited by firepong; 04-05-2012 at 01:53 AM.

    [BETA] PQRotation - an automated ability priority queue.
  2. #9122
    hablais's Avatar Private
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I hate to ask but Thread search didn't return an answer.

    Are their anywhere Beta offsets? Or is this file alreay shipped with PQR Update?

    greetz

  3. #9123
    FrostDKsFTW's Avatar Sergeant Major
    Reputation
    20
    Join Date
    Nov 2011
    Posts
    169
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    Profile updates, package includes:
    Mage (Frost PvP, Fire PvE, Fire PvP, Arcane PvE)
    Priest (Holy PvE, Discipline PvP)
    Hunter (MM PvE, Survival PvE)
    Warrior (Protection PvE, Fury PvE)
    Rogue (Combat PvE, Subtlely PvP)
    Death Knight (Frost PvP)
    Shaman (Elemental PvE, Resto PvE)
    Druid (Feral Tank PvE, Resto PvE)
    Also included 2 text files with code necesary to auto gather herbs and archaelogy fragments

    http://goo.gl/rseZ0

    + ALL profiles works on all european languajes
    + NEW Resto Shaman profile (hold left control to cast Healing Rain)

    To make chain heals on resto shaman profile had to do some new functions and may be usefull to other profiles. UnitsClose(unit) return the number players 12 yards around the target and being under 95% hp.
    Thanks for the Resto profile, I'll try it when I get home from work and donate too. =]

  4. #9124
    MastaRage's Avatar Sergeant Major
    Reputation
    56
    Join Date
    Dec 2011
    Posts
    170
    Thanks G/R
    4/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by hablais View Post
    I hate to ask but Thread search didn't return an answer.

    Are their anywhere Beta offsets? Or is this file alreay shipped with PQR Update?

    greetz
    Yes for 4.3.4: 15531 offsets are out just use the updater.

    Sent from my LG Revolution.

  5. #9125
    hablais's Avatar Private
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MastaRage View Post
    Yes for 4.3.4: 15531 offsets are out just use the updater.

    Sent from my LG Revolution.
    Thanks a lot for the fast and simple answer! +rep

    greetz

  6. #9126
    deadpanstiffy's Avatar Knight-Lieutenant
    Reputation
    158
    Join Date
    Mar 2012
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    Profile updates, package includes:
    Mage (Frost PvP, Fire PvE, Fire PvP, Arcane PvE)
    Priest (Holy PvE, Discipline PvP)
    Hunter (MM PvE, Survival PvE)
    Warrior (Protection PvE, Fury PvE)
    Rogue (Combat PvE, Subtlely PvP)
    Death Knight (Frost PvP)
    Shaman (Elemental PvE, Resto PvE)
    Druid (Feral Tank PvE, Resto PvE)
    Also included 2 text files with code necesary to auto gather herbs and archaelogy fragments

    http://goo.gl/rseZ0

    + ALL profiles works on all european languajes
    + NEW Resto Shaman profile (hold left control to cast Healing Rain)

    To make chain heals on resto shaman profile had to do some new functions and may be usefull to other profiles. UnitsClose(unit) return the number players 12 yards around the target and being under 95% hp.
    How and what did you base your heal percentages from, here are some ideas maybe you will take into consideration.

    The initial hit from riptide can be up to a 20k crit, and using it at <99% would be almost pointless knowing it has that first heal to it. As well as adding logic to Riptide to keep it up on the tank would be optimal.
    Healing Wave and Greater Healing Wave should only be cast with Tidal Waves buff present.
    The minimal movement in DS, and with the 4pc Spirit Walkers Grace is used for throughput rather than "while moving".
    I would remove healing surge all together, and add Natures Swiftness.

  7. #9127
    dariusz's Avatar Member
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    Profile updates, package includes:
    Mage (Frost PvP, Fire PvE, Fire PvP, Arcane PvE)
    Priest (Holy PvE, Discipline PvP)
    Hunter (MM PvE, Survival PvE)
    Warrior (Protection PvE, Fury PvE)
    Rogue (Combat PvE, Subtlely PvP)
    Death Knight (Frost PvP)
    Shaman (Elemental PvE, Resto PvE)
    Druid (Feral Tank PvE, Resto PvE)
    Also included 2 text files with code necesary to auto gather herbs and archaelogy fragments

    http://goo.gl/rseZ0

    + ALL profiles works on all european languajes
    + NEW Resto Shaman profile (hold left control to cast Healing Rain)

    To make chain heals on resto shaman profile had to do some new functions and may be usefull to other profiles. UnitsClose(unit) return the number players 12 yards around the target and being under 95% hp.

    big thanks for the language updates

  8. #9128
    diesall's Avatar Contributor
    Reputation
    105
    Join Date
    Jul 2011
    Posts
    162
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    whats the PQR_Event?
    the function is documented on the PQInterface wiki entry PQInterface - PQRotation Wiki

  9. #9129
    fluxflux's Avatar Knight
    Reputation
    5
    Join Date
    Jan 2012
    Posts
    185
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    now lvl 85 monk is available @ beta server

    looking for windwalker, mistweaver script^^

  10. #9130
    jackus's Avatar Active Member
    Reputation
    58
    Join Date
    Aug 2006
    Posts
    802
    Thanks G/R
    1/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I cant get sheuron disc or holy priest to work I got old and new version of PQR. Any one got same problem?

  11. #9131
    Kinky's Avatar Banned CoreCoins Purchaser
    Reputation
    481
    Join Date
    Nov 2008
    Posts
    500
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey guys! Sorry for my week's absence. A few things happened and my grandfather died so, I really didn't feel like doing much.
    I've been reading up on the past 58 pages and I've come to realize a few faults with the Shadow Priest profile. All though I have beta-access, I'm not going to update Shadow Priests for it just yet, mainly because of the entire class being vastly broken still. (SpellID's and API changes have already been made, though.)

    Anyhow, I'm going to update Shadow Priest and a few other profiles over the next few days with a few fixes and changes I've come over, along with what a few other people have brought up.

  12. #9132
    Deva's Avatar Master Sergeant
    Reputation
    17
    Join Date
    Oct 2011
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by fluxflux View Post
    now lvl 85 monk is available @ beta server

    looking for windwalker, mistweaver script^^
    Download bu_ba's Nova package, it has a starter monk included. Honestly, you don't need much more at 85, the basic moves are the same, but the current rotation should have the abilities for Tiger Palm and Blackout Kick changed to these...

    Blackout Kick:
    Code:
    if PQR_SpellAvailable(100784)
    	and PQ_ValidUnit
    	and IsSpellInRange(GetSpellInfo(100784), PQR_CustomTarget) == 1
    	and (UnitPower("player", 12) >= 2
    	or  UnitBuffID("player", 116768)) then -- Combo Breaker buff check
    --	and select(1, PQ_UnitInfo(PQR_CustomTarget)) <= 35 then
    		return true
    end
    Tiger Palm:
    Code:
    if PQR_SpellAvailable(100787)
    	and PQ_ValidUnit
    	and IsSpellInRange(GetSpellInfo(100787), PQR_CustomTarget) == 1
    	and ((UnitPower("player", 12) >= 3 
    	or select(4, PQ_UnitInfo("player")) < select(4, GetSpellInfo(100780)))
    	or UnitBuffID("player", 118864)) -- Combo Breaker buff check
    	and 100 * UnitHealth(PQR_CustomTarget) / UnitHealthMax(PQR_CustomTarget) >= 35 then
    		return true
    end
    Basically, if you have those buffs it should just cast the ability, without health/chi/energy checks. I may have screwed up the order, pretty tired.

    ...and of course, Touch of Death should be easy enough for people to figure out.

    All it's really missing is an AoE toggle, an exclusion for the two buff checks listed above added to Jab (to not waste procs) and... well, right now, Jab/the various combat abilities can be a little buggy. Otherwise, pretty solid for something fairly basic.
    Last edited by Deva; 04-05-2012 at 08:11 AM.

  13. #9133
    maleth's Avatar Banned
    Reputation
    8
    Join Date
    Feb 2012
    Posts
    131
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sorry to hear about your Grandfather Mentally. You're in our thoughts. Glad to see you back.

  14. #9134
    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 a9058727 View Post
    Download bu_ba's Nova package, it has a starter monk included. Honestly, you don't need much more at 85, the basic moves are the same, but the current rotation should have the abilities for Tiger Palm and Blackout Kick changed to these...

    Blackout Kick:
    Code:
    if PQR_SpellAvailable(100784)
    	and PQ_ValidUnit
    	and IsSpellInRange(GetSpellInfo(100784), PQR_CustomTarget) == 1
    	and (UnitPower("player", 12) >= 2
    	or  UnitBuffID("player", 116768)) then -- Combo Breaker buff check
    --	and select(1, PQ_UnitInfo(PQR_CustomTarget)) <= 35 then
    		return true
    end
    Tiger Palm:
    Code:
    if PQR_SpellAvailable(100787)
    	and PQ_ValidUnit
    	and IsSpellInRange(GetSpellInfo(100787), PQR_CustomTarget) == 1
    	and ((UnitPower("player", 12) >= 3 
    	or select(4, PQ_UnitInfo("player")) < select(4, GetSpellInfo(100780)))
    	or UnitBuffID("player", 118864)) -- Combo Breaker buff check
    	and 100 * UnitHealth(PQR_CustomTarget) / UnitHealthMax(PQR_CustomTarget) >= 35 then
    		return true
    end
    Basically, if you have those buffs it should just cast the ability, without health/chi/energy checks. I may have screwed up the order, pretty tired.

    ...and of course, Touch of Death should be easy enough for people to figure out.

    All it's really missing is an AoE toggle, an exclusion for the two buff checks listed above added to Jab (to not waste procs) and... well, right now, Jab/the various combat abilities can be a little buggy. Otherwise, pretty solid for something fairly basic.
    i've got a complete Solo Questing Profile in mind already.... honestly I just haven't had time to code it, but the groundwork is layed out in my notebook and on my dropbox account from the snippets i've written at work

    got how i want to do healing in dungeons as well to XD
    ^0^Team Nova's PQR NCC ^0^

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

  15. #9135
    Deva's Avatar Master Sergeant
    Reputation
    17
    Join Date
    Oct 2011
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    i've got a complete Solo Questing Profile in mind already.... honestly I just haven't had time to code it, but the groundwork is layed out in my notebook and on my dropbox account from the snippets i've written at work
    Yeah, those were just from my quick 2 dungeons as a Windwalker. Didn't get really in-depth.

    Originally Posted by bu_ba_911 View Post
    got how i want to do healing in dungeons as well to XD
    This I'll be really interested to see, given how odd things are with the positional requirements of some of their spells. Also, do you have cleansing working properly? I know it has a CD now... grr. Definitely needs to be top priority for the last fight in the first dungeon.

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 10:09 AM. 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