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

Shout-Out

User Tag List

Page 489 of 731 FirstFirst ... 389439485486487488489490491492493539589 ... LastLast
Results 7,321 to 7,335 of 10955
  1. #7321
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,033
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    sweet..

    i don't need the gui part just the math of the addon to run a check against. but this should allow for libbossid to run outside of wow now too and many others.

    [BETA] PQRotation - an automated ability priority queue.
  2. #7322
    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.01 (NOTE: DOWNLOAD REMOVED. SEE MAIN POST FOR v2.02)

    -Changed default 'spell available time' to 125ms before a spell is off CD. Up from 50ms. It was 250ms in the original version. This can be changed in a profile by changing PQR_SpellAvailableTime.
    -Changed default refresh rate from 100ms to 50ms.
    -Added external Lua file loading. Any file in the "Data" directory named as follows: "PQR_*.lua" will be loaded into WoW when PQR starts. It should only be loaded once. If you reload UI, log off then in, etc.. it should re-inject on the next PQR start.


    ----

    Here is a quick sample of Time to Die for developers: TTD.zip
    Place the Lua file in the Data directory. Place the mage profile in the MAGE directory. Start the rotation and attack a dummy.
    Last edited by Xelper; 03-12-2012 at 10:52 AM.

  3. #7323
    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 crystal_tech View Post
    okay i'm working on updating everything i've coded. but i've hit a snag

    Code:
    local current_life = UnitHealth("target")
    local first_time = GetTime()
    local first_life = UnitHealth("target")
    local first_life_max = UnitHealthMax('target")
    
    if current_life > 0 then
    	local time_diff = GetTime() - first_time
    	local hp_diff = first_life - current_life
    	if hp_diff > 0 then
    		local full_time = time_diff* first_life_max/hp_diff
    		local past_first_time = (first_life_max - first_life) * time_diff/hp_diff
    		calc_time = first_time - past_first_time + full_time - current_time
    			if calc_time < 1 then
    				calc_time = 1
    			end
    	end
    		time_to_die = SecondsToTime(calc_time)
    		print(time_to_die)
    end
    i'm trying to create a timer that i can call to other ablities. it should calc out the time till a mob/boss dies but its busted somewhere. If tried to modify the code from rTimeToDie : Combat Mods : World of Warcraft AddOns
    but i can't get it to work. so I'm offering rep for the fix.

    notes:

    I just want to create a timer ability and then do a check against it in my code such as:

    if unitdebuff("target", 1950) == nil and time_to_die > 21 then return true end



    thanks for your help!
    Here you go:
    Code:
    if not TTD_loaded and UnitAffectingCombat(&amp;apos;player&amp;apos;) then
    	TTD_ttd = 1000
    	TTD_apoint_life = UnitHealth(&amp;apos;target&amp;apos;)
    	TTD_bpoint_life = nil
    	TTD_time = GetTime()
    	
    	TTD_loaded = true
    elseif TTD_loaded and not UnitAffectingCombat(&amp;apos;player&amp;apos;) then
    	TTD_apoint_life = nil
    	TTD_bpoint_life = nil
    	TTD_time = nil
    	
    	TTD_loaded = false
    end
    
    if TTD_loaded then
    	if GetTime() - TTD_time &amp;gt; 1 then
    		TTD_time = GetTime()
    		TTD_bpoint_life = UnitHealth(&amp;apos;target&amp;apos;)
    		local HealthDif = TTD_apoint_life - TTD_bpoint_life
    		TTD_apoint_life = UnitHealth(&amp;apos;target&amp;apos;)
    		TTD_ttd = UnitHealthMax(&amp;apos;target&amp;apos;) \ HealthDif
    	end
    end
    This needs to be added in some zerospellid ability at the near top of the rotation.
    Last edited by Valma; 03-12-2012 at 12:59 AM.
    MEDVED+VODKA+BALALAYKA

  4. #7324
    Meatglue's Avatar Active Member
    Reputation
    16
    Join Date
    Aug 2011
    Posts
    248
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Sheuron

    Wondering if you have though about a smart Armor ability for Mage especially for pvp like molten for dps and mage for mana loss at set percent?
    Also, still having weird issue with it losing rotation and spamming scorch with a 2-3 second delay in between at times.
    Sounds like it's just a personal problem though.

  5. #7325
    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
    [URL="http://www.mediafire.com/download.php?182pn7jtc4queyt"]-Added external Lua file loading. Any file in the "Data" directory named as follows: "PQR_*.lua" will be loaded into WoW when PQR starts. It should only be loaded once. If you reload UI, log off then in, etc.. it should re-inject on the next PQR start.
    Ok,this is awesome for sure.I'm a happy panda Will move PQ_Debug window code I got and some other usefull staff that could be used by other developers in libraries like this
    MEDVED+VODKA+BALALAYKA

  6. #7326
    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)
    Just know that the lua files are loaded when the main PQR form loads.. You will need to relaunch PQR and then reload UI for the new code to take effect.

    Ill probably eventually make an option to reload the lua files every time.

  7. #7327
    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
    Just know that the lua files are loaded when the main PQR form loads.. You will need to relaunch PQR and then reload UI for the new code to take effect.

    Ill probably eventually make an option to reload the lua files every time.
    You mean that PQR parses Data folder only when it starts and then injects parsed files on every "reloadui" or .. ??
    MEDVED+VODKA+BALALAYKA

  8. #7328
    diesall's Avatar Contributor
    Reputation
    197
    Join Date
    Jul 2011
    Posts
    208
    Thanks G/R
    1/46
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Working on a completely redesigned from the ground up PQInterface to complement the new PQR 2.0

    a few key features:
    • custom Text fields useable by profile creators to display custom text for the current rotation status invoked from abilities
    • tighter integration with the the bot itself (more precise information on the bots status)
    • new interface

  9. #7329
    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)
    So here we go.As I promised - updated my profile.

    Support for all 3 specs now in 1(!!!) profile.So you should just start PQR and slack like a whore You don't need to swap anything when you change specs,go in dungeon,go in raid etc.

    And yes,I finally finished Demo(+petswap).Enjoy,folks

    DOWNLOAD
    MEDVED+VODKA+BALALAYKA

  10. #7330
    svs's Avatar Active Member
    Reputation
    15
    Join Date
    Feb 2012
    Posts
    89
    Thanks G/R
    9/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Blinded changed Lightning Shield ability of ur Shaman profile after couple of deaths due to falling caused by refreshing shield while mounted to:

    Code:
    if UnitBuffID( "player", 324 ) == nil and IsMounted()== nil then
    	return true
    end
    Same with weapon enchants
    Last edited by svs; 03-12-2012 at 05:06 AM.

  11. #7331
    wooloveshacks's Avatar Member
    Reputation
    5
    Join Date
    Nov 2008
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Valma View Post
    So here we go.As I promised - updated my profile.

    Support for all 3 specs now in 1(!!!) profile.So you should just start PQR and slack like a whore You don't need to swap anything when you change specs,go in dungeon,go in raid etc.

    And yes,I finally finished Demo(+petswap).Enjoy,folks

    DOWNLOAD
    Great to see the continued work

    I've just tried this now with the new version of PQR and not sure why but it absolutely is brutal to my frame rate.. it drops from 60fps solid down to 1 or even 0 fps at times

    Anyone else having this lagging issue?

  12. #7332
    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 wooloveshacks View Post
    Great to see the continued work

    I've just tried this now with the new version of PQR and not sure why but it absolutely is brutal to my frame rate.. it drops from 60fps solid down to 1 or even 0 fps at times

    Anyone else having this lagging issue?
    w00t the ****? O.o I have weird computer and even on it it doesn't lags :/
    MEDVED+VODKA+BALALAYKA

  13. #7333
    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 Valma View Post
    w00t the ****? O.o I have weird computer and even on it it doesn't lags :/
    Gotta admit though, your profile is one of the biggest ones I've used. My systems specs are not that bad and even when I use your profiles, I notice a good 10fps drop on boss fights. Guess all that code is really killer though Anyways, I just got to trying out your Last Profile update before the latest one and have to say. It works great. Will have to try out the new one later.

    EDIT* Damn, if only I had enough time to code a profile that has almost 3.5k lines of code in it
    Last edited by firepong; 03-12-2012 at 04:25 AM.

  14. #7334
    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)
    Well guys, I just wanted to drop by a quick note letting everyone who uses my profiles know that I'm currently working on updating (and upgrading!) my Feral Cat / Shadowpriest Profile for some of the new stuff added in PQR2!

    Gonna work on it today and hopefully also wrap up my Shadow PvP Profile. Just wish I had one calm day where I could sit down and focus on everything, heh.

  15. #7335
    imdasandman's Avatar Contributor
    Reputation
    206
    Join Date
    Feb 2011
    Posts
    965
    Thanks G/R
    9/4
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @ valma getting this error in wow with your profile with the use of PQR 2.01 or w/e his newest version is... your profile is the only one to be throwing errors so far....

    Code:
    Message: [string "  ..."]:272: attempt to index a nil value
    Time: 03/12/12 02:55:28
    Count: 224
    Stack: [string "  ..."]:272: in function `PQ_Init'
    [string "  ..."]:293: in function `?'
    [string "..."]:542: in function `PQR_NextAbility'
    [string "..."]:355: in function `PQR_ExecuteRotation'
    [string "..."]:139: in function <[string "..."]:74>
    
    Locals: (*temporary) = <function> defined =[C]:-1
    (*temporary) = nil
    (*temporary) = nil
    (*temporary) = nil
    (*temporary) = nil
    (*temporary) = "attempt to index a nil value"
    My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
    https://imdasandmandeathknight.googl...com/svn/trunk/
    Originally Posted by Valma View Post
    Oh sure. (: Plz,lord,rewrite my profile without "re-inventing a wheel".I'm really interested how would you do so.I even ready to eat my pants if yours will perform better in raids than mine

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 03:25 PM. 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