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

User Tag List

Page 594 of 731 FirstFirst ... 94494544590591592593594595596597598644694 ... LastLast
Results 8,896 to 8,910 of 10955
  1. #8896
    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)
    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)
    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

    + PRIEST, DEATHKNIGHT, SHAMAN and MAGE (Fire only) profiles also works on all european languages
    + Priest profile uses new healing engine and handle better the chakra states

    I ll make all profiles compatible with all languages. Feedback about bugs or game experiencies are welcome.
    If you like this roitations feel free to donate, Paypal account: [email protected]
    [ 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]

    [BETA] PQRotation - an automated ability priority queue.
  2. #8897
    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)
    Ok, got some bare minimum profiles made for Enhance DPS & Elemental DPS for Mists Beta.

    These, like stated, are BARE profiles, only doing DPS and keeps lightning shield up. I did not include weapon enchants because it still cannot tell what chant is on a certain weapon ( enhancement for example uses both flametongue and windfurry). As for right now, I used them great for doing quests when I had to kill mobs.

    If I had to take a guess, I would say Elemental is the highest there in DPS just for the simple fact with its mastery and the Echos talent ( extra chance at proccing another attack of the same caliber) for leveling. I had a mastery rating of 22.75 or so and a few times, I had 4 lightning bolts popping off of 1 spell. My guess is with the procs from the Echos talent, mastery also benefits from that. If that is right, expect the talent to change before Mists gos live.

    Download Link: http://pqrotation-profiles.googlecod...20Profiles.rar
    Last edited by firepong; 04-02-2012 at 12:30 AM.

  3. #8898
    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)
    @me28791:
    Is it not simplier just to add ability to that checks if if you current target is dead or if you dont have a target then "targetlastenemy" and if you get CP then use it.
    You can also do this check if you have a target but no combopoints.
    Looking for exploiters and botters to Elder Scrolls Online.

  4. #8899
    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 Gabbz View Post
    @me28791:
    Is it not simplier just to add ability to that checks if if you current target is dead or if you dont have a target then "targetlastenemy" and if you get CP then use it.
    You can also do this check if you have a target but no combopoints.
    was thinking that then worried about if you target a new person it will go back, I will have to look at it more

  5. #8900
    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 me28791 View Post
    if there a way to check combo points on the last target i.e. checking combo points on a player you just killed so you can SR off them,

    right now am thinking about a mouseover check but not sure if theres an easier way then

    Code:
    local ran = IsSpellInRange("Faerie Fire", "mouseover")
    local pCP = GetComboPoints("player", "mouseover")
    local sr, _, _, _, _, _, srtimer = UnitbuffID("player", 1079)
    local cb = UnitAffectingCombat("player")
    
    if sr and cb == nil and ran ~= nil and pCP > 0 then
    		return true
    	else
    	if sr and ran ~=nil then
    		if cb == nil then
    			if pCP >1 then
    			if srtimer - gettime () <9 then
    			 return true
    			 else
    			 if pCP >2 then
    			 if srtimer - gettime () <18 then
    			 return true
    			else
    			 if pCP >3 then
    			 if srtimer - gettime () <27 then
    			 return true
    			 else
    			 if pCP >4 then
    			 if srtimer - gettime () <36 then
    			 else
    			 if pCP ==5 then
    			 if srtimer - gettime () <45 then
    			 return true
    			 end
    			 end
    			 end
    			 end
    			 end
    			 end
    			 end
    			 end
    			 end
    		end
    		end 
    	end
    end
    using faerie fire as a range check as its 35 yards and I no SR is 100 but wanted a cut off point (mainly for if I can get the target working properly any help for my noobishness would be great
    Start with this, it will help put you in the right direction.

    Code:
    IsUsableSpell(52610)
    &
    Code:
    GetComboPoints("player", "target") == 0

  6. #8901
    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 deadpanstiffy View Post
    Start with this, it will help put you in the right direction.

    Code:
    IsUsableSpell(52610)
    &
    Code:
    GetComboPoints("player", "target") == 0
    Man, thats a lot of if's and end's. I wish more people would start using elseif instead of if this then end. Would make the code a whole lot smaller and less ends

  7. #8902
    blacknightlll's Avatar Member
    Reputation
    4
    Join Date
    Mar 2009
    Posts
    154
    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)
    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

    + PRIEST, DEATHKNIGHT, SHAMAN and MAGE (Fire only) profiles also works on all european languages
    + Priest profile uses new healing engine and handle better the chakra states

    I ll make all profiles compatible with all languages. Feedback about bugs or game experiencies are welcome.
    If you like this roitations feel free to donate, Paypal account: [email protected]
    i know it says must be 85 but is it possible to use the priest holy profile to lvl? or should i just take the spells out and put them back in as i get them

  8. #8903
    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)
    Is there a way to unlearn/change specialization in MOP beta?

    Coz as for now Destro is HARDLY ilvl dependant(you run out of mana really ****ing fast until you got lots of INT) and Affli is really shitty for lvling.Seems like demo with TP is the best lvling spec ATM.
    MEDVED+VODKA+BALALAYKA

  9. #8904
    bgr's Avatar Sergeant
    Reputation
    9
    Join Date
    Apr 2012
    Posts
    55
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    Are you using the 64-bit client for WoW? If so, PQROtation does not support it. Also, did you make sure to download the PQUpdater and make sure you have the latest offsets? I doubt the offsets is your problem if it sees your character, but who knows.
    do you guys have any other ideas? my wow is in 32bit mode and PQR is updated. im running it as administrator and it ids my character but still says not in game even though i am logged in.

  10. #8905
    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)
    Originally Posted by bu_ba_911 View Post

    Working on making a high quality leveling Profile for monks right now, going to be focusing on Mistweavers since some1 is already working on Windwalker
    thats sound nice i love it yeahhhhhhhh +rep
    Last edited by fluxflux; 04-02-2012 at 02:03 AM.

  11. #8906
    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 blacknightlll View Post
    i know it says must be 85 but is it possible to use the priest holy profile to lvl? or should i just take the spells out and put them back in as i get them
    Around level 66-67 most classes got all spells for his core rotation. The changes Xelper did on last PQR should make most profiles usable at that level. below that is unpredictable.
    [ 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]

  12. #8907
    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 bu_ba_911 View Post
    Look at my sig..... The answer is there!!!

    Also special thanks to my Beta Account provider, leaving anonymous unless he comes forth to claim praise XD

    Working on making a high quality leveling Profile for monks right now, going to be focusing on Mistweavers since some1 is already working on Windwalker
    The new PQR function to swap rotations could help to organize a leveling profile

    Code:
    if UnitLevel("player") < 10 then return PQR_SwapRotation("Monk leveling 1-10") end
    if UnitLevel("player") > 9 and IsSpellKnown(WindwalkerSpellID) then return PQR_SwapRotation("Monk leveling Windwalker") end
    [ 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]

  13. #8908
    schadis's Avatar Member
    Reputation
    11
    Join Date
    Sep 2008
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @xelper

    a summarie of profile packs would be nice at the front page of the thread because the dev. have so
    much profiles and there are so many outdated once and the wiki you are linking to has not the actual links.

    i dont copy now every sig in here but 596 pages with discus. and profiles is realy tooo much.
    a own sup forum under
    # Forum
    # World of Warcraft
    # World of Warcraft Bots and Programs
    # [Release] [BETA] PQRotation - an automated ability priority queue.

    where you main thread is stiky+ threads from every dev. for profiles would be realy nice! can ownedcore do this? because this is so amazing

  14. #8909
    Darkstylo's Avatar Contributor Authenticator enabled
    Reputation
    197
    Join Date
    Jan 2009
    Posts
    218
    Thanks G/R
    1/2
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by schadis View Post
    @xelper

    a summarie of profile packs would be nice at the front page of the thread because the dev. have so
    much profiles and there are so many outdated once and the wiki you are linking to has not the actual links.

    i dont copy now every sig in here but 596 pages with discus. and profiles is realy tooo much.
    a own sup forum under
    # Forum
    # World of Warcraft
    # World of Warcraft Bots and Programs
    # [Release] [BETA] PQRotation - an automated ability priority queue.

    where you main thread is stiky+ threads from every dev. for profiles would be realy nice! can ownedcore do this? because this is so amazing
    Not something Xelper is responsible for.
    You should post this in the suggestion forum.

    As many have tried to create there own dedicated forum, in the end it didn't work out anyway.

  15. #8910
    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)
    Hey guys, after using the Nova Arms PVE profile, it does semi-decent numbers, but it still a fair bit behind Bossqwerty's most recent profile.

    Is there any way that the team could take a look at it and establish why his seems to pull out about 2k more on average? For the life of me I can't work it out.

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