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

Shout-Out

User Tag List

Page 509 of 731 FirstFirst ... 9409459505506507508509510511512513559609 ... LastLast
Results 7,621 to 7,635 of 10955
  1. #7621
    cokx's Avatar Banned
    Reputation
    92
    Join Date
    Dec 2008
    Posts
    896
    Thanks G/R
    0/0
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ziggar View Post
    Hey cokx your inbox seems full.

    Also bubba the holy profile seems to be working fine , did some pve with it yesterday and no problemos that i could see .
    free again

    [BETA] PQRotation - an automated ability priority queue.
  2. #7622
    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)
    @fluxlfux:
    Code:
    local myTable = {
    	"Twilight Assault Drake",
    	"Twilight Assassin",
    	"Raider's Training Dummy",
    	"Arm Tentacle",
    	"Wing Tentacle",
    	"Mutated Corruption",
    	"Mana Void",
    	"Elementium Bolt",
    	"Burning Tendons",
    	"Warmaster Blackhorn",
    	"Goriona"
    }
    for i=1,#myTable do
    	if not UnitExists("target") then
    		RunMacroText("/tar "..myTable[i])
    	else
    		if IsSpellInRange(GetSpellInfo(8092), "target") == 1
    			and not UnitIsDeadOrGhost("target")
    			and UnitCanAttack("player","target")
    			and not PQR_IsOutOfSight("target", 1)
    		then return true else RunMacroText("/cleartarget") end
    	end
    end
    Fixed, should automatically target an enemy and clear your current target if:
    - You walk out of a 40 yard range
    - Target is dead
    - You can't attack the target anymore
    Last edited by Kinky; 03-15-2012 at 12:05 PM. Reason: update

  3. #7623
    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)
    mhh its not working he cast no profile i have this up on my list

  4. #7624
    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)
    Xelper and Valma (and Mentally so I don't get yelled at, might as well throw in Blinded too and bu_ba while i'm at it) thanks for all the quick bug fixes you've done. I'll get on and test out Valma's warlock rotation. I'd rep all you guys but it won't let me

  5. #7625
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    PQR v2.0.5 - Download Here
    Okay I lied, one last update. I had an idea that would simplify patch days for everyone so we aren't pestered for the latest offsets 100 times.

    -New "Download Offsets" button. This button will appear on the Process Select form if no recognized copies of WoW are active.
    Last edited by Xelper; 03-15-2012 at 01:11 PM.

  6. #7626
    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)
    @ Xelper yery nice

    maybe the same for the profile?^^

  7. #7627
    g1teglover's Avatar Site Donator
    Reputation
    14
    Join Date
    Oct 2008
    Posts
    91
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    PQR v2.0.5 - Download Here
    Okay I lied, one last update. I had an idea that would simplify patch days for everyone so we aren't pestered for the latest offsets 100 times.

    -New "Download Offsets" button. This button will appear on the Process Select form if no recognized copies of WoW are active.
    Nice addition Xelper, no more having to make sure that the Offsets are updated after patching

  8. #7628
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by fluxflux View Post
    @ Xelper yery nice

    maybe the same for the profile?^^
    I will consider it for a future update. It would probably be a button on the profile/rotation form and the profile developer would need to provide a direct download link for both files.


    Sent from my iPad using Tapatalk HD

  9. #7629
    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)
    @Xelper, may I PM you with some questions about the Data folder/LUA file imports?

  10. #7630
    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 mentally View Post
    @fluxlfux:
    Code:
    local myTable = {
    	"Twilight Assault Drake",
    	"Twilight Assassin",
    	"Raider's Training Dummy",
    	"Arm Tentacle",
    	"Wing Tentacle",
    	"Mutated Corruption",
    	"Mana Void",
    	"Elementium Bolt",
    	"Burning Tendons",
    	"Warmaster Blackhorn",
    	"Goriona"
    }
    for i=1,#myTable do
    	if not UnitExists("target") then
    		RunMacroText("/tar "..myTable[i])
    	else
    		if IsSpellInRange(GetSpellInfo(8092), "target") == 1
    			and not UnitIsDeadOrGhost("target")
    			and UnitCanAttack("player","target")
    			and not PQR_IsOutOfSight("target", 1)
    		then return true else RunMacroText("/cleartarget") end
    	end
    end
    Fixed, should automatically target an enemy and clear your current target if:
    - You walk out of a 40 yard range
    - Target is dead
    - You can't attack the target anymore
    Shouldn't it be return false and nit true if it is a valid target u have selected? Otherwise it'll keep spamming spellid 0 no?

    Sent from my Xoom
    ^0^Team Nova's PQR NCC ^0^

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

  11. #7631
    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)
    Originally Posted by Xelper View Post
    It wouldn't have casted that spell until the cast had finished which means no pre-casting prior to being off GCD.
    Now you do agree with the fact I was right,didn't you? (:

    No offence,just trying to keep you in good mood

    BTW buba,I whined a bit and it took effect not only on my rep as you can see :P Mentally's,your's and other profile writers started to grow up really fast Seems like noone wants us to drop our projects :P
    Last edited by Valma; 03-15-2012 at 03:14 PM.
    MEDVED+VODKA+BALALAYKA

  12. #7632
    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)
    mhh i dont no some things i do wrong its not worked for me, i have testet in orgrimmar on dummys but he cast nothing

  13. #7633
    CPCS0101's Avatar Corporal
    Reputation
    4
    Join Date
    Sep 2011
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Valma View Post
    Now you do agree with the fact I was right,didn't you? (:

    No offence,just trying to keep you in good mood

    BTW buba,I whined a bit and it took effect not only on my rep as you can see :P Mentally's,your's and other profile writers started to grow up really fast Seems like noone wants us to drop our projects :P
    Of course not XD even those of us who customize our own code still use your great profiles as the core. It's easier to start with a slightly less than ideal but still perfectly valid plate than a white pile of empty.

  14. #7634
    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)
    @fluxlfux: Go back a page, to my last reply, I updated the code there. It works perfectly for me, so it should for you as well.
    @Bu_ba_911: I have absolutely no idea.

  15. #7635
    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 its to 50% work he target the dummy but casting nothing

    its to strange for me^^

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 02:16 PM. 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