PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 14 of 116 FirstFirst ... 10111213141516171864114 ... LastLast
Results 196 to 210 of 1739
  1. #196
    xaq's Avatar Private
    Reputation
    1
    Join Date
    Sep 2013
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by itstom View Post
    is there a list of ALL the functions available? I'm happy to do my own research and read through the API I just don't see it documented anywhere or if it is I don't see a link showing where. That custom function list doesn't show basic things like UnitPower or GetSpellCooldown?...

    -X

    PQR - Rotation Bot
  2. #197
    xaq's Avatar Private
    Reputation
    1
    Join Date
    Sep 2013
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xaq View Post
    is there a list of ALL the functions available? I'm happy to do my own research and read through the API I just don't see it documented anywhere or if it is I don't see a link showing where. That custom function list doesn't show basic things like UnitPower or GetSpellCooldown?...

    -X
    Sorry, I should be more specific, are there additional fuctions OTHER than the default lua API functions - it occurred to me right after I typed that that every item listed is a standard wow api call?

  3. #198
    nate8282's Avatar Member
    Reputation
    1
    Join Date
    May 2009
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone know if this is the newest version of the addon? https://www.dropbox.com/s/dcz01z3yw3...ace%20v5.4.zip
    the addon for me keep throwing errors and it's not working for me.

  4. #199
    xNotta's Avatar Member
    Reputation
    2
    Join Date
    Sep 2010
    Posts
    44
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How would I revert a profiles Rotation and Abilities back to default?
    And how would I revert the PQI changes I made in game back to their default values?
    Last edited by xNotta; 09-25-2013 at 02:13 PM.

  5. #200
    xNotta's Avatar Member
    Reputation
    2
    Join Date
    Sep 2010
    Posts
    44
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xaq View Post
    is there a list of ALL the functions available? I'm happy to do my own research and read through the API I just don't see it documented anywhere or if it is I don't see a link showing where. That custom function list doesn't show basic things like UnitPower or GetSpellCooldown?...

    -X
    I asked a dev where I could find the functions too. (http://www.ownedcore.com/forums/worl...ml#post2853059 ([PQR] CuteOne's Profiles)

    He linked: http://www.wowwiki.com/World_of_Warcraft_API and http://wowprogramming.com/docs

    Originally Posted by nate8282 View Post
    Anyone know if this is the newest version of the addon? https://www.dropbox.com/s/dcz01z3yw3...ace%20v5.4.zip
    the addon for me keep throwing errors and it's not working for me.
    5.4 is current.
    http://pqrotation.wikia.com/wiki/PQInterface#Download

    (Also sorry for 2 posts, merge if possible.)
    Last edited by xNotta; 09-25-2013 at 02:12 PM.

  6. #201
    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)
    Try ncc there's a ref link to pqr api and wow api link is in my signature to grab it. If you use pqr_spellavailable be sure to set pqr_spellavailable time to your lag settings went I get home I will post the call for lag or you can find it in a profile that uses it

    Please if someone helped you donate rep to them.

  7. #202
    nate8282's Avatar Member
    Reputation
    1
    Join Date
    May 2009
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is it only me that can't get this to work after the ninja patch yesterday?

  8. #203
    kuukuu's Avatar Contributor
    Reputation
    269
    Join Date
    Jul 2012
    Posts
    619
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xaq View Post
    Sorry, I should be more specific, are there additional fuctions OTHER than the default lua API functions - it occurred to me right after I typed that that every item listed is a standard wow api call?
    None of the functions in the Custom Functions list are standard wow api calls, hence the word custom. UnitPower and such ARE standard wow api calls though so if you're looking for them, you'd want to look at the WoWWiki and WoW Programming sites linked. I believe Wowhead has some info too but it's pretty limited.
    Former PQR Developer

  9. #204
    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)
    heres the lag code:

    Code:
    Nova_SpellAvailableTime = nil
    function Nova_SpellAvailableTime()
    	local lag = ((select(3,GetNetStats()) + select(4,GetNetStats())) / 1000)
    	if lag < .05 then
    		lag = .05
    	elseif lag > .4 then
    		lag = .4
    	end
    	return lag
    end
    
    PQR_SpellAvailableTime	= Nova_SpellAvailableTime()
    then PQR_SpellAvailable(id) should work without spamming with your current lag.

    Please if someone helped you donate rep to them.

  10. #205
    xaq's Avatar Private
    Reputation
    1
    Join Date
    Sep 2013
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Crystal, thanks for the reply - but I need to ask what is apparently a dumb question - Where do I put this? Is this something I would need in EVERY ability?

    Originally Posted by crystal_tech View Post
    heres the lag code:

    Code:
    Nova_SpellAvailableTime = nil
    function Nova_SpellAvailableTime()
    	local lag = ((select(3,GetNetStats()) + select(4,GetNetStats())) / 1000)
    	if lag < .05 then
    		lag = .05
    	elseif lag > .4 then
    		lag = .4
    	end
    	return lag
    end
    
    PQR_SpellAvailableTime	= Nova_SpellAvailableTime()
    then PQR_SpellAvailable(id) should work without spamming with your current lag.

  11. #206
    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)
    Originally Posted by xaq View Post
    Crystal, thanks for the reply - but I need to ask what is apparently a dumb question - Where do I put this? Is this something I would need in EVERY ability?
    no,

    normally i have a run once part of the profile (load data files, etc)

    if not _functionsloaded then
    _functionsloaded = true

    function goes here

    PQR_SpellAvailableTime goes here
    end

    and put this at the top in the main config ability or make a new one, up to you

    Please if someone helped you donate rep to them.

  12. #207
    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)
    Hey Profile Devs!

    Some of you know that we dropped NCC a couple of days ago and we'd like to add your profiles to our program over just linking to the community forum. What we would like to do is Get it so your end users that use the program can update/view changelogs/contact you via the feedback system. If you'd like to join us please pm me or bubba.

    Please if someone helped you donate rep to them.

  13. #208
    xaq's Avatar Private
    Reputation
    1
    Join Date
    Sep 2013
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Crystal, if this is the wrong place for this discussion I apologize, I'm happy to take it elsewhere... I have some pretty basic things going on in my rotation test, I'd really like to develop my own and contribute here but I can't get something as simple as this to work, even though as far as I can tell everything is FUNCTIONING

    I have an --Init block, part of which I stole from nova resto druid that looks like so... (and seems to work as it's writing to my chat window)

    If I can get a rotation to work without spamming ability not ready, I'd be much more prone to write a nice clean rotation and ability set.

    Also is there anyway to append a VARIABLE to the chat window, or how can I look at variable values/debug messages - I'd liek to know what it's actually setting as the "lag" value.

    Code:
    if PQR_RotationStarted == true then
    	-- Should be reloaded every time you reload Profile (No more needing to /rl)
    	PQR_RotationStarted = false
    
    --PQR_WriteToChat("|cff0088FFHoly Paladin Profile Version - |cff33CC002.0")
    	
    Nova_SpellAvailableTime = nil
    function Nova_SpellAvailableTime()
    	local lag = ((select(3,GetNetStats()) + select(4,GetNetStats())) / 1000)
    	if lag < .05 then
    		lag = .05
    	elseif lag > .4 then
    		lag = .4
    	end
    	return lag
    end
    PQR_WriteToChat("Testes, testes 123","lag")
    
    PQR_SpellAvailableTime	= Nova_SpellAvailableTime()
    
    end
    Then I have two very simple abilities, one for glaive toss and one for arcane shot... and in just those two abilities it ends up spamming enough that I get loads of ability not ready alerts...

    Code:
    -- Arcane Shot usage code.
    if PQR_SpellAvailable(3044) 
    and UnitPower("player") > 30
    then return true end
    
    --GlaiveToss Code
    if not IsPlayerSpell(117050) then return false end
    if PQR_SpellAvailable(117050) 
    and UnitPower("player") > 15
    --and select(2,GetSpellCooldown(61304)) == 0 
    then return true end
    obviously those are in two separate abilities, but for brevity i put them in the same block.



    Originally Posted by crystal_tech View Post
    no,

    normally i have a run once part of the profile (load data files, etc)

    if not _functionsloaded then
    _functionsloaded = true

    function goes here

    PQR_SpellAvailableTime goes here
    end

    and put this at the top in the main config ability or make a new one, up to you

  14. #209
    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)
    Originally Posted by xaq View Post
    Crystal, if this is the wrong place for this discussion I apologize, I'm happy to take it elsewhere... I have some pretty basic things going on in my rotation test, I'd really like to develop my own and contribute here but I can't get something as simple as this to work, even though as far as I can tell everything is FUNCTIONING

    I have an --Init block, part of which I stole from nova resto druid that looks like so... (and seems to work as it's writing to my chat window)

    If I can get a rotation to work without spamming ability not ready, I'd be much more prone to write a nice clean rotation and ability set.

    Also is there anyway to append a VARIABLE to the chat window, or how can I look at variable values/debug messages - I'd liek to know what it's actually setting as the "lag" value.

    Code:
    if PQR_RotationStarted == true then
    	-- Should be reloaded every time you reload Profile (No more needing to /rl)
    	PQR_RotationStarted = false
    
    --PQR_WriteToChat("|cff0088FFHoly Paladin Profile Version - |cff33CC002.0")
    	
    Nova_SpellAvailableTime = nil
    function Nova_SpellAvailableTime()
    	local lag = ((select(3,GetNetStats()) + select(4,GetNetStats())) / 1000)
    	if lag < .05 then
    		lag = .05
    	elseif lag > .4 then
    		lag = .4
    	end
    	return lag
    end
    PQR_WriteToChat("Testes, testes 123","lag")
    
    PQR_SpellAvailableTime	= Nova_SpellAvailableTime()
    
    end
    Then I have two very simple abilities, one for glaive toss and one for arcane shot... and in just those two abilities it ends up spamming enough that I get loads of ability not ready alerts...

    Code:
    -- Arcane Shot usage code.
    if PQR_SpellAvailable(3044) 
    and UnitPower("player") > 30
    then return true end
    
    --GlaiveToss Code
    if not IsPlayerSpell(117050) then return false end
    if PQR_SpellAvailable(117050) 
    and UnitPower("player") > 15
    --and select(2,GetSpellCooldown(61304)) == 0 
    then return true end
    obviously those are in two separate abilities, but for brevity i put them in the same block.
    if you ever want to get a value of a var or a function in game just use /dump var
    so /dump Nova_SpellAvailableTime()

    also to make it less spammy have you tried setting the delay to a value? 300ish maybe? (1000 is a sec)

    Please if someone helped you donate rep to them.

  15. #210
    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)
    Here's a sneak peak for some of the devs that want to know the current state of my own Healing Engine....

    http://www.ownedcore.com/forums/worl...ml#post2857058 ([PQR] Nova Team Profiles)

    Still a WIP very much so... But it seemed quick and reactive in my small scale tests... It is quite different from the old one, and I'm still not entirely sure I like it >.>

    BUT it was a great learning experience, so I figured I'd share before hiding it from the rest of the world MWAHAHAHAHAHAHA

    *edit*
    I will not discuss it here in this thread any way shape or form.... just an FYI

    Also and to any devs that missed CT, if you are interested in teaming with us to possibly host your profiles and such in our NCC to help users, let him know and he'll work with you to get it worked in seamlessly
    ^0^Team Nova's PQR NCC ^0^

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

Similar Threads

  1. [Bot] PQR PE Next Steps / Future of Rotation Botting
    By Chevrolet1 in forum World of Warcraft Bots and Programs
    Replies: 120
    Last Post: 10-21-2014, 11:47 AM
  2. [Selling] 3 Lifetime Session Keys For Sale, Great for the PQR user looking for a rotation bot
    By cukiemunster in forum World of Warcraft Buy Sell Trade
    Replies: 13
    Last Post: 03-11-2014, 07:18 AM
  3. rotation bot leveling (PQR)
    By classdog in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 09-17-2013, 06:13 PM
  4. [Release] PQR - Rotation Bot
    By Xelper in forum World of Warcraft Bots and Programs
    Replies: 11680
    Last Post: 09-16-2013, 07:47 PM
  5. [HELP] PQR Rotation Bot Profile Making
    By Missu in forum Programming
    Replies: 0
    Last Post: 10-22-2012, 06:27 AM
All times are GMT -5. The time now is 11:56 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