PQR - Rotation Bot menu

User Tag List

Page 513 of 779 FirstFirst ... 13413463509510511512513514515516517563613 ... LastLast
Results 7,681 to 7,695 of 11681
  1. #7681
    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 js1974 View Post
    @ Team Nova

    Is your frame going to be accessible by anyone for anyone profiles or are you trying to keep it more restricted? I definitely love the work you guys do but unfortunately you tend to not touch the specs I play so would like to learn a little more about using the frame outside of Nova profiles or if that is going to be hard/impossible to do?
    not hard to do just need to grab the nova_frames.lua and load it into your profile as you would any data file (with some extra code for setup) and then create your tables and such and your golden.

    Please if someone helped you donate rep to them.

    PQR - Rotation Bot
  2. #7682
    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 js1974 View Post
    @ Team Nova

    Is your frame going to be accessible by anyone for anyone profiles or are you trying to keep it more restricted? I definitely love the work you guys do but unfortunately you tend to not touch the specs I play so would like to learn a little more about using the frame outside of Nova profiles or if that is going to be hard/impossible to do?
    Hmm I guess I need to make it more clear... Team Nova and our code is free to all to use, just make sure credit is given where credit is due

    I spent extra time coding the frame just to make it simple for others to use :-)

    Sent from my ADR6400L using Tapatalk 2
    Last edited by bu_ba_911; 01-21-2013 at 12:45 PM.
    ^0^Team Nova's PQR NCC ^0^

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

  3. #7683
    js1974's Avatar Member
    Reputation
    27
    Join Date
    Jan 2008
    Posts
    199
    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
    Hmm I guess I need to make it more clear... Team Nova and our code is free to all to use, just make sure credit is given where credit is due

    I spent extra time coding the frame just to make it simple for others to use :-)

    Sent from my ADR6400L using Tapatalk 2
    Sorry I didn't go through all the threads just saw some screenshots and like what I'm seeing. But much respect to Nova and all the profiles they have written!

  4. #7684
    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)
    Quick question.

    Is there a way to make an ability which looks at the combat log and if my character had taken a melee hit, it will cast an ability? Sadly I can't just check if my HP dropped because that drop could be due to a spell or it might have been absorbed.

    Context: Level 80 paladin twinks use SotR after being hit by a melee attack (which is usually absorbred). Timing SotR right after a melee attack is quite difficult so I was wondering whether PQR could help.

  5. #7685
    lostwalker's Avatar Member
    Reputation
    2
    Join Date
    Sep 2008
    Posts
    103
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does this work and if so how do i add it to PQR?


    Is it possible to kick amber explosion cast on ursok with pqr?
    i'm stucked with that (it's like hour of twilight, but on player)




    local kick = GetSpellInfo(122398 )
    local channelSpell, _, _, _, _, endTim = UnitCastingInfo("player")
    if channelSpell ~= nil and channelSpell == kick then
    local finishTime = endTim/1000 - GetTime()
    if finishTime < 2 then
    return true
    end
    end Spell id 122395
    Target Player

    Last edited by leetspeaker; 11-03-2012 at 08:47 PM.

  6. #7686
    Rubim's Avatar Contributor
    Reputation
    247
    Join Date
    Mar 2010
    Posts
    267
    Thanks G/R
    4/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by popeofdope View Post
    Quick question.

    Is there a way to make an ability which looks at the combat log and if my character had taken a melee hit, it will cast an ability? Sadly I can't just check if my HP dropped because that drop could be due to a spell or it might have been absorbed.

    Context: Level 80 paladin twinks use SotR after being hit by a melee attack (which is usually absorbred). Timing SotR right after a melee attack is quite difficult so I was wondering whether PQR could help.
    Yes you can with the RegisterEvent + FunctionsAPI.

    Code:
    "UNIT_COMBAT"
    Category: Unit Info,Combat
     	
    Fired when an npc or player participates in combat and takes damage
    arg1 
    the UnitID of the entity
    arg2 
    Action,Damage,etc (e.g. HEAL, DODGE, BLOCK, WOUND, MISS, PARRY, RESIST, ...)
    arg3 
    Critical/Glancing indicator (e.g. CRITICAL, CRUSHING, GLANCING)
    arg4 
    The numeric damage
    arg5 
    Damage type in numeric value (1 - physical; 2 - holy; 4 - fire; 8 - nature; 16 - frost; 32 - shadow; 64 - arcane)
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/385569-pqr-death-knight-monk-tank-dps-profiles.html#post2582063

  7. #7687
    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 Rubim View Post
    Yes you can with the RegisterEvent + FunctionsAPI.
    Thank you very much for this.

    I hate to seem lazy but I've been trying to come up with something using this but I am struggling. Most of my lua experience comes from modifying other people's code and seeing what happens when I make changes. Are there some examples of this being used in other people's profiles that I can have a look at?

    The best I have is:

    Code:
    if not meleeHit then
    		meleeHit = CreateFrame("Frame") 
    		meleeHit:RegisterEvent("UNIT_COMBAT") 
    		meleeHit:SetScript("OnEvent",function(...) if select(7,...)==1 then return true end end)
    end
    However this does not seem to work
    Last edited by popeofdope; 01-22-2013 at 06:19 AM.

  8. #7688
    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 popeofdope View Post
    Thank you very much for this.

    I hate to seem lazy but I've been trying to come up with something using this but I am struggling. Most of my lua experience comes from modifying other people's code and seeing what happens when I make changes. Are there some examples of this being used in other people's profiles that I can have a look at?

    The best I have is:

    Code:
    if not meleeHit then
    		meleeHit = CreateFrame("Frame") 
    		meleeHit:RegisterEvent("UNIT_COMBAT") 
    		meleeHit:SetScript("OnEvent",function(...) if select(7,...)==1 then return true end end)
    end
    However this does not seem to work
    Look at my monk mistweaver that should be a decent example.

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

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

  9. #7689
    fish221171's Avatar Member
    Reputation
    9
    Join Date
    Mar 2010
    Posts
    76
    Thanks G/R
    1/5
    Trade Feedback
    4 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Hi guys,

    Could someone please recommend a solid Feral DPS rotation?

    Anyone know any good ones?

    Many Thanks

  10. #7690
    cukiemunster's Avatar Contributor
    Reputation
    132
    Join Date
    Dec 2009
    Posts
    1,129
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by fish221171 View Post
    Hi guys,

    Could someone please recommend a solid Feral DPS rotation?

    Anyone know any good ones?

    Many Thanks
    Check out firepongs. It is second to none. http://www.ownedcore.com/forums/showthread.php?t=363185

    Sent from my Galaxy S3 using Tapatalk 2
    Last edited by cukiemunster; 01-22-2013 at 12:40 PM.

  11. #7691
    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 cukiemunster View Post
    Check out firepongs. It is second to none. [PQRotation] Firepong's PQR Profile's Feedback - Comments - Question's?

    Sent from my Galaxy S3 using Tapatalk 2
    I wasn't going to say anything. I was gonna let him try and find it himself

  12. #7692
    freaki's Avatar Member
    Reputation
    12
    Join Date
    Dec 2008
    Posts
    85
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    sending out a search and rescue party for mentally!

  13. #7693
    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 freaki View Post
    sending out a search and rescue party for mentally!
    She will be back. Shes been having some internet problems for the past few days. Just give it time and she will be back good as ever.

  14. #7694
    freaki's Avatar Member
    Reputation
    12
    Join Date
    Dec 2008
    Posts
    85
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks for the heads up firepong +rep

  15. #7695
    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)
    Originally Posted by firepong View Post
    She will be back. Shes been having some internet problems for the past few days. Just give it time and she will be back good as ever.
    she also has a small baby who is about to turn 1 so I am sure her hands are full .....

    speaking of babies.... mine is due anytime now... my wife has started dialiating and is afaced time for my 3rd kid to come into this world
    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. [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. [Bot] PQR - Rotation Bot
    By Xelper in forum World of Warcraft Bots and Programs
    Replies: 1738
    Last Post: 10-15-2014, 11:00 AM
  3. [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
  4. rotation bot leveling (PQR)
    By classdog in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 09-17-2013, 06:13 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 06:46 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