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

User Tag List

Page 97 of 731 FirstFirst ... 4793949596979899100101147197597 ... LastLast
Results 1,441 to 1,455 of 10955
  1. #1441
    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 cokx View Post
    if you are targeting an enemy it heals everybody near you and if you are targeting a friend it only heals them, maybe you should delete the mouseover function
    but yes ive recognized some errors.
    its good against melees and every class except mages...
    there should be more dispell rules like = ignore in the first place dispell roots on everyone except rogue,warri,feral,dk
    To use mouseover safer you add this code:

    GetMouseFocus():GetName() ~= "WorldFrame"

    will only heal mouseover if your mouse is over a raid frame, and not when your mouse in on WorldFrame

    [BETA] PQRotation - an automated ability priority queue.
  2. #1442
    saga3180's Avatar Knight-Lieutenant
    Reputation
    6
    Join Date
    Sep 2011
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Also is there a lit of profiles here?

  3. #1443
    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)
    sheuron, i did some tweaking to your warrior slam ability for Arms. i haven't tested it yet, but it shouldn't clip Mortal Strike anymore (at least i hope). let me know what you think

    Code:
    local currentSpec = 0
    local spec = ""
    for i = 1, GetNumTalentTabs() do
    	local _,_,_,_,pointsSpent = GetTalentTabInfo(i)
    	if pointsSpent >= currentSpec then
    		currentSpec = pointsSpent;
    		spec = i;
    	end
    end
    
    if spec == 1 and UnitPower("player") >= 35 and GetSpellCooldown(12294) >= 1.5 and SpellIsTargeting() == nil then
    	return true
    end
    Last edited by ishtro; 09-15-2011 at 09:48 PM.

  4. #1444
    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 ishtro View Post
    sheuron, i did some tweaking to your warrior slam ability for Arms. i haven't tested it yet, but it shouldn't clip Mortal Strike anymore (at least i hope). let me know what you think

    Code:
    local currentSpec = 0
    local spec = ""
    for i = 1, GetNumTalentTabs() do
    	local _,_,_,_,pointsSpent = GetTalentTabInfo(i)
    	if pointsSpent >= currentSpec then
    		currentSpec = pointsSpent;
    		spec = i;
    	end
    end
    
    if spec == 1 and UnitPower("player") >= 35 and GetSpellCooldown(12294) >= 1.5 and SpellIsTargeting() == nil then
    	return true
    end
    sorry, i dont have arms spec to test it. Arms profile is original from xelper

  5. #1445
    Sivers's Avatar Member
    Reputation
    2
    Join Date
    May 2008
    Posts
    62
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For tanking profiles, is there any way to add a check if the mob is targeting you or not, and if not then taunt it? would be very easy to just spam Tab key and auto taunt anything that peeled to a dps or healer.

  6. #1446
    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)
    @xelper: is possible to make "target Click" do the click only once? An example, when i use Click to launch a freezing trap, because it spam click the area, trap is launched. but if any mob is at mouse position also target him breaking the trap. I done my own code to try to fix the issue, and seem to work flawless:

    Code:
    if IsRightControlKeyDown() then
      if GetSpellCooldown(77769) == 0 then CastSpellByName("Trap Launcher") end
      if IsUsableSpell(60192) then CastSpellByName("Freezing Trap") end
      if SpellIsTargeting() then CameraOrSelectOrMoveStart() CameraOrSelectOrMoveStop() end
    end

  7. #1447
    Zongfoo's Avatar Contributor
    Reputation
    109
    Join Date
    Dec 2007
    Posts
    150
    Thanks G/R
    10/28
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So.... 97 pages of replies. I wish there were subsections for this topic. Anyways...

    I have zero lua knowledge, and need to ask a couple dumb questions.
    1) Are there profiles for classes which are used for leveling? Like straight from lvl1?
    2) What specifically would a person enter in the ability editor, to make a simple Flash Heal (@ lvl3)? I was kinda hoping that the one that comes with the d/l would work at any lvl, but it doesn't heal myself at all.

    Last dumb question: Where could a guy surf to get a crash lesson on LUA (specifically for PQR).
    Last edited by Zongfoo; 09-16-2011 at 08:34 AM.

  8. #1448
    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)
    @Zongfoo: There's a few ways to learn lua; The Programming Language Lua and World of Warcraft API - WoWWiki - Your guide to the World of Warcraft for functions to use within PQR. There's not really any easy way to learn it on.

    Now, creating a profile for any leveling character shouldn't be that hard. (Depending on mob-level checks, group checks, etc..) but to use a simple Flash Heal, it's as easy as typing in the Name you want to use, then Flash Heal's spell ID (from wowhead) then continue to add a function or check onto Flash Heal to make it not spam heal you constantly.

    Something like this:
    Name: Flash Heal
    ID: 2061
    Target: Self
    Lua:
    local hp = UnitHealth("player") / UnitHealthMax("player") * 100

    if hp < 90 and PQR_IsMoving(1) == false then
    return true
    end

    Just a quick example. Alternatively you could have it heal your target/mouseover target, but you'd have to target/mouseover yourself then for the ability to autoheal you.

  9. #1449
    Hoblerhans's Avatar Member
    Reputation
    9
    Join Date
    Dec 2010
    Posts
    64
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Zongfoo View Post
    So.... 97 pages of replies. I wish there were subsections for this topic. Anyways...

    I have zero lua knowledge, and need to ask a couple dumb questions.
    1) Are there profiles for classes which are used for leveling? Like straight from lvl1?
    2) What specifically would a person enter in the ability editor, to make a simple Flash Heal (@ lvl3)? I was kinda hoping that the one that comes with the d/l would work at any lvl, but it doesn't heal myself at all.

    Last dumb question: Where could a guy surf to get a crash lesson on LUA (specifically for PQR).

    ^^ That was my intention for this post too^^. It would be nice if the Autors of different profiles are able to post them on first site. reading 97 pages could be a nightmare^^.
    With my warlock lvl 40 I hoped to choose the profile and lvl it up while brain afk, but it does nothing.
    And because I have absolutely no knowlegde of LUA I have no idea whats wrong-.-

  10. #1450
    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)
    Originally Posted by Hoblerhans View Post
    ^^ That was my intention for this post too^^. It would be nice if the Autors of different profiles are able to post them on first site. reading 97 pages could be a nightmare^^.
    With my warlock lvl 40 I hoped to choose the profile and lvl it up while brain afk, but it does nothing.
    And because I have absolutely no knowlegde of LUA I have no idea whats wrong-.-
    The first post DOES have a link to most of the profiles. To use a profile with a less than max character, you could try just removing any spells from the rotation that you don't have yet. This may or may not work, but that's where i'd start. A few of the profiles won't do anything until you're in combat, so you'll have to fire off something to aggro a mob.

  11. #1451
    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)
    Actually, with my planned change to my Shadow Profile, I'll add in checks so that any-level characters should be able to go from level 1 through 85.

  12. #1452
    trulygangster's Avatar Sergeant
    Reputation
    1
    Join Date
    Dec 2010
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Omg thank you mentally (:

  13. #1453
    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)
    Should have it up sometime this evening! Seeing as it's Friday and I quit early @ University today, it'll give me ample time to make the changes to it.

  14. #1454
    Hoblerhans's Avatar Member
    Reputation
    9
    Join Date
    Dec 2010
    Posts
    64
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by onya View Post
    The first post DOES have a link to most of the profiles. To use a profile with a less than max character, you could try just removing any spells from the rotation that you don't have yet. This may or may not work, but that's where i'd start. A few of the profiles won't do anything until you're in combat, so you'll have to fire off something to aggro a mob.
    Damn...owned-.-

    should watch´n think before posting^^

  15. #1455
    trulygangster's Avatar Sergeant
    Reputation
    1
    Join Date
    Dec 2010
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can anyone help me with my issue?

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:07 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