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

User Tag List

Page 380 of 731 FirstFirst ... 280330376377378379380381382383384430480 ... LastLast
Results 5,686 to 5,700 of 10955
  1. #5686
    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)
    I am having a problem with Ultraxion on Hardmode. I play resto druid, got the tank on focus to keep Lifebloom up. I use the typical checks: UnitIsDeadOrGhost, UnitCanCooperate, IsSpellInRange and PQR_IsOutOfSight. When the tank has to phase out now, the whole rotation stops because Lifebloom cannot be applied and when the tank phases in again I have to click with the mouse on the focus target frane to get the rotation going again.

    I guess it doesn't fail the checks because it is in range for everything but because of the different phase it doesn't work? Anyone got an idea how to fix this? Thanks.

    [BETA] PQRotation - an automated ability priority queue.
  2. #5687
    couky's Avatar Corporal
    Reputation
    2
    Join Date
    Jan 2012
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Mentally, here is my chibi bug report :
    I tried your shadow pve leveling profile which is really nive for my young lvl 80 priest ^^
    It just have one bug : when I move the rotation keep spamming me "invalid target" or "You have no target".
    It always spam me that when I am out of combat and when I'am moving on the map.
    Last edited by couky; 02-11-2012 at 03:43 PM.

  3. #5688
    Bossqwerty's Avatar Legendary
    Reputation
    713
    Join Date
    Nov 2006
    Posts
    693
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Techz View Post
    Boss what is your latest and best Arms release as i have so many im confused lol
    stance dance:
    BossSD6.2.rar

    TG (must run reset profile before running main profile)
    BossTG3.0.rar

    SMF (not high quality, basic rotation)
    BossSMF1.0.rar

  4. #5689
    popeofdope's Avatar Sergeant
    Reputation
    11
    Join Date
    Aug 2010
    Posts
    63
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by saga3180 View Post
    @VALMA it just spamms ban of doom
    and if i remove it it just starts to spam immolate and occcasionally a soulfire

    Edit : i also havent seen your profile do any incinerates at all.

    I've tried this profile too and it doesn't work.

    It gets bane of doom, corr and imo up as well as ISF then it does nothing. It does not shadowflame (which should have been next in the priority) and it does not chaos bolt or incinerate. This was tested on dummies and in LFR Ultraxion.
    For the section that does work, it casts the spells in the wrong order. It starts by putting up BoD, immo, corr, then conflagrates and then soul burns a soul fire. This is the worst way to open up. Not starting with soul burn soul fire means you lose out on 10% extra spellpower from 4pc T13 and also 15% extra damage from ISF on all 3 dots.

    You should try and get it to do this when it opens up: Soulburn, Soul fire, immolate, bane of doom, conflagrate, corruption. That is the correct order according to simcraft.
    Last edited by popeofdope; 02-11-2012 at 04:23 PM.

  5. #5690
    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 bbatotas View Post
    Does anyone have DnD code? I looked at buba's code, doesn't really work. Any help?
    Which part doesnt work?

    Sent from my Thunderbolt using Tapatalk
    ^0^Team Nova's PQR NCC ^0^

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

  6. #5691
    romb0t's Avatar Member
    Reputation
    79
    Join Date
    Dec 2011
    Posts
    212
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Valma
    I have tested the new profile on a dumy again.

    I think that the issue is with BloodFury as we will try to cast it even if we are not an Orc ! I have just added a check in the BloodFury ability like:
    Code:
    -- The second output argument of UnitRace is the race in english
    if select(2,UnitRace("PLAYER")) == "Orc" then return false end
    But it does not solve the ChaosBolt nor the Incinerate issue.

    It seems that we hit an issue with Corruption and Soulfire as we hit the ability but do nothing even if we do not cast the spell. So we wait for the delay and then re-evaluate the rotation.
    as after that we have an issue with the Corruption logic as we dont' execute anything in the rotation that is afterwards. I have checked that it goes over the loop funtion and so should return false but nothing is done, we wait for the delay and that's it. Then we re-evalutate the rotation from the start.

    Other strange thing is that I do not see the Soulburn ability being used (putting a print at the start of the ability, I don't see it).

    I will continue to investigate later as it is quite late for now.

    PS: At this stage, what I have done is to add a print at each return true and at the end of the ability so I can see what we do but I need a good chat addon to keep the history big enough and to be able to do copy paste so that you can look at the rotation behavior.

  7. #5692
    brusterj88's Avatar Private
    Reputation
    1
    Join Date
    Oct 2010
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I love this program btw! Is there a way to setup the interrupt when i don't have the target as my main target. Lets say i have a Mage targeted, Rogue focused, and the third player in arena is a Priest. The Priest casts penance, but he is not my target and I want to counter spell the cast without changing my current target or focus?

  8. #5693
    bbatotas's Avatar Private
    Reputation
    3
    Join Date
    Aug 2011
    Posts
    14
    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
    Which part doesnt work?

    Sent from my Thunderbolt using Tapatalk
    It's a total crap shoot whether it will work on not. Holding down the button only casts it once and then it doesn't cast again. You have to spam ctrl and hope that it doesn't have a temper and will cast. Yes, the same problem happens when there's no other actions in the priority list.

  9. #5694
    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)
    Originally Posted by brusterj88 View Post
    I love this program btw! Is there a way to setup the interrupt when i don't have the target as my main target. Lets say i have a Mage targeted, Rogue focused, and the third player in arena is a Priest. The Priest casts penance, but he is not my target and I want to counter spell the cast without changing my current target or focus?
    dont think so.

  10. #5695
    brusterj88's Avatar Private
    Reputation
    1
    Join Date
    Oct 2010
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can I pay money to him to make it do that? I a whole arena profile with similar abilities and fake casting etc i would pay a substantial amount for.

  11. #5696
    ShinyKnight's Avatar Member
    Reputation
    3
    Join Date
    May 2011
    Posts
    82
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by brusterj88 View Post
    Can I pay money to him to make it do that? I a whole arena profile with similar abilities and fake casting etc i would pay a substantial amount for.
    The word is that this program is not going to be PvP-focused, period, and with good reasoning.

    Don't like it? Code your own.

  12. #5697
    brusterj88's Avatar Private
    Reputation
    1
    Join Date
    Oct 2010
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have more money than sense. As such I would like to hire someone to perform the services I am unable to do

  13. #5698
    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 brusterj88 View Post
    I love this program btw! Is there a way to setup the interrupt when i don't have the target as my main target. Lets say i have a Mage targeted, Rogue focused, and the third player in arena is a Priest. The Priest casts penance, but he is not my target and I want to counter spell the cast without changing my current target or focus?
    I actually believe that you can, with the use of the arena1-arena5 UnitIDs which classify an opposing team in a match.

    If you'd like to try doing it yourself, WoWProgramming is a good place to start, namely this page.

    That said, I wouldn't expect anyone to do it for you. This program is receiving far more attention from the PvP crowd than is healthy for it, and Xelper doesn't need any more publicity on that front.

  14. #5699
    brusterj88's Avatar Private
    Reputation
    1
    Join Date
    Oct 2010
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Also, name one R1 glad that doesn't cheat.

  15. #5700
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Big thanks to Bossarms for the new update, really smooth profile!

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 11:55 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