PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 74 of 779 FirstFirst ... 24707172737475767778124174574 ... LastLast
Results 1,096 to 1,110 of 11681
  1. #1096
    averykey's Avatar Contributor
    Reputation
    158
    Join Date
    Dec 2011
    Posts
    448
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For optimal dps I need a way to check if enemy's are around me.

    I know onya made a way to get player positions, is it possible to get enemy positions?
    This could allow for much smarter aoe rotations.

    Target Finder
    Code:
    hrtargethealth = Nova_Spell[PQ_HolyRadiance].targetHealth
    hrsecondaryhealth = Nova_Spell[PQ_HolyRadiance].targetHealth
    hrrange = 10
    hrsecondarytargets = Nova_Spell[PQ_HolyRadiance].targetNumber
    
    if not onyainit then
    
    function onyaGetPlayerMapPosition(unit)
      local x,y = GetPlayerMapPosition(unit)  
      return x,y
    end
    
    function NewScaleFactor(unit1,dist)
       local x1,y1 = onyaGetPlayerMapPosition(unit1)
       local x2,y2 = onyaGetPlayerMapPosition("player")
       local xx= x1 - x2
       local yy = y1 -y2
       sft = tostring (dist/sqrt(((xx) * (xx))  + (((yy) * 0.6666666666666) ^ 2)))
       return sft
    end
    
    function DistanceBetweenUnits(unit1,unit2)
       if unit2 == unit1 then return 0 end
       local x1,y1 = onyaGetPlayerMapPosition(unit1)
       local x2,y2 = onyaGetPlayerMapPosition(unit2)
       if x1 == 0 and y1 == 0 and x2 ==0 and y2 == 0 then return 0 end
       return (sqrt((((x2 - x1)  * sf) ^ 2)  + (((y2 - y1)  * sf / 1.5) ^ 2)))
    end
    
    function IsInRange(u1,u2)
      local range = DistanceBetweenUnits(member[u1].name,member[u2].name)
       if range <= hrrange  then
           return true
       end
    end
    
    function getDefHealth(unit)
       return (100 - member[unit].health)
    end
    
    function sortDefHealth(aUnit, anotherUnit)
        return getDefHealth(aUnit) > getDefHealth(anotherUnit)
    end
    
    function findGoodTarget()
       if table.maxn(hrtargets) ~=0 and table.maxn(hrsecondary) >= hrsecondarytargets then   
          table.sort(hrtargets, sortDefHealth)  
          table.sort(hrsecondary, sortDefHealth)
          for x = 1, table.maxn(hrtargets) do
              local inrangecount = 0
              for y = 1, table.maxn(hrsecondary) do
                if IsInRange(hrtargets[x],hrsecondary[y]) then inrangecount = inrangecount + 1 end
                if inrangecount == hrsecondarytargets then return member[hrtargets[x]].name end
              end
          end
       end
     end 
    
    
    onyainit = true
    end
    
    local currentmap = GetMapInfo()
    local currentlevel = tostring(GetCurrentMapDungeonLevel()) or "0"
    local grp = "party"
    local mems = GetNumPartyMembers()
    if GetNumRaidMembers() > 0 then
      grp = "raid"
      mems = GetNumRaidMembers()
    end
    
    if (sfm ~= currentmap) or (sfl ~= currentlevel) then
      sf = 6000
      sfm = currentmap
      sfl = currentlevel
    end
    
     for mmm = 1, mems do
       local checktarget = grp..tostring(mmm)
       local range = DistanceBetweenUnits("player",checktarget)
       if (range > 28) and (CheckInteractDistance(checktarget,1)) then
         sf =  NewScaleFactor(checktarget,28)
       end
       if (range > 11.11) and (CheckInteractDistance(checktarget,2)) then
          sf =  NewScaleFactor(checktarget,11.11)
       end
       if (range > 9.9) and (CheckInteractDistance(checktarget,3)) then
          sf =  NewScaleFactor(checktarget,9.9)
       end
       if (range > 40) and (UnitInRange(checktarget)) then
          sf =  NewScaleFactor(checktarget,40)
       end
     end
     
    hrtargets = {}
    hrsecondary = {} 
    member = {}
     
    for i = 0, mems, 1 do
       member[i] = {}
       if i==0 then member[i].name = "player" else member[i].name = grp..tostring(i) end
       local memberin = UnitGetIncomingHeals(member[i].name) or 0
       member[i].health= 100 * (UnitHealth(member[i].name)+ memberin ) / UnitHealthMax(member[i].name)
       if not UnitIsDeadOrGhost(member[i].name) then 
         if member[i].health < hrtargethealth 
            and not (UnitBuffID(member[i].name, 82327)) 
            and IsSpellInRange("Holy Radiance", member[i].name) 
           then table.insert(hrtargets,i) end
         if member[i].health < hrsecondaryhealth then table.insert(hrsecondary,i) end
       end
    end
    HR
    Code:
    if Nova_Spell[PQ_HolyRadiance].check then
    	local _, _, _, cost = GetSpellInfo(82327)
    	local mana = UnitPower("player") 
    	local spell = UnitCastingInfo("player")
    	
    	if mana > cost and spell ~= GetSpellInfo(82327) then
    	   local HRtarget = findGoodTarget()
    	   if HRtarget ~= nil then
    	      PQR_CustomTarget = HRtarget
    	      return true
    	   end
    	end
    end
    I want to be able to keep censure up on three targets at all times.
    Is there a way to track a different targets debuff, I know you can track the current targets debuffs.

    edit:

    Why is Avoid fragmentation like this?
    Code:
    local tentacledeath = select(7,UnitDebuffID("player",109597))
    if tentacledeath and tentacledeath - GetTime() < 0.7 then 
    RunMacroText("/click ExtraActionButton1") 
    end
    Shouldn't it be like this?
    Code:
    Actions: /click ExtraActionButton1
    Target: target
    Spell ID: 0
    
    local shrapnel, _, _, _, _, _, shrapnelEndTime = UnitDebuffID("player", 109957)
    if shrapnel then
        local finishTime = shrapnelEndTime - GetTime()
        if finishTime < 1 then
            return true
        end
    end
    Last edited by averykey; 06-24-2012 at 12:31 AM.
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

    PQR - Rotation Bot
  2. #1097
    endersblade's Avatar Member
    Reputation
    1
    Join Date
    May 2009
    Posts
    52
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ran into a strange issue. running the [xrnArca] PvE profile, and it won't go when fighting Ahune. It'll work just fine on the trash, it'll work just fine on Ahune when he's surfaced. But once his core pops, it stops casting at all. I have to manually take over (not that it's hard....1111111111 lol). Why's it doing this? Any ideas?

  3. #1098
    xLegendx's Avatar Member
    Reputation
    14
    Join Date
    Sep 2011
    Posts
    827
    Thanks G/R
    3/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there any Marksmanship PvP profiles?
    Kickmydog's is not really up to date.

    Much appreciated
    Last edited by xLegendx; 06-24-2012 at 01:38 AM.

  4. #1099
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Firepong: Thats awesome! I'd be sure to use it next time I level a feral, thank you.

  5. #1100
    [Blinded]'s Avatar Contributor
    Reputation
    88
    Join Date
    Nov 2009
    Posts
    177
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by endersblade View Post
    Ran into a strange issue. running the [xrnArca] PvE profile, and it won't go when fighting Ahune. It'll work just fine on the trash, it'll work just fine on Ahune when he's surfaced. But once his core pops, it stops casting at all. I have to manually take over (not that it's hard....1111111111 lol). Why's it doing this? Any ideas?
    The problem is that the core act like a dummy and so you have to add him to the "SpecialAggro"-table.

  6. #1101
    Taran32's Avatar Knight-Lieutenant
    Reputation
    9
    Join Date
    Feb 2012
    Posts
    369
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Firepong,

    Is there a reason none of your PQR profiles work for leveling? I noticed you wrote that HonorBuddy's is more clean, but I've used a number of profiles for other classes from other coders, and they seemed to work fine. Yours and the other PvE Feral profiles don't seem to work though. Are there plans to make that happen anytime soon? It'd make things a lot simpler for those of us who'd prefer not to buy HonorBuddy.

  7. #1102
    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 Taran32 View Post
    @Firepong,

    Is there a reason none of your PQR profiles work for leveling? I noticed you wrote that HonorBuddy's is more clean, but I've used a number of profiles for other classes from other coders, and they seemed to work fine. Yours and the other PvE Feral profiles don't seem to work though. Are there plans to make that happen anytime soon? It'd make things a lot simpler for those of us who'd prefer not to buy HonorBuddy.
    Main reason is there is SO MUCH checks in there for certain buffs in my main Feral profile. You could use the profile I posted above for Honortbuddy to level, just add Mangle/Shred into he rotation through Rotation Editor.

    EDIT** Just a side warning, there is no combat check's in this rotation but for like 2 spells. All it does is check to see if you have a target, and if the spell is known and the target is Hostile, it will auto start attacking it. So use at your own risk lol.
    Last edited by firepong; 06-24-2012 at 11:28 AM.

  8. #1103
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Taran32 View Post
    @Firepong,

    Is there a reason none of your PQR profiles work for leveling? I noticed you wrote that HonorBuddy's is more clean, but I've used a number of profiles for other classes from other coders, and they seemed to work fine. Yours and the other PvE Feral profiles don't seem to work though. Are there plans to make that happen anytime soon? It'd make things a lot simpler for those of us who'd prefer not to buy HonorBuddy.
    If you look hard enough you can allways find cracked versions of software online if you decide its not worth it to support the scene...

  9. #1104
    Taran32's Avatar Knight-Lieutenant
    Reputation
    9
    Join Date
    Feb 2012
    Posts
    369
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ninjaderp View Post
    If you look hard enough you can allways find cracked versions of software online if you decide its not worth it to support the scene...
    I try to stay away from the cracked versions because it's far too easy for someone to pass off virus infested "cracks" as a great deal. But I'll look into adding Mangle and Shred into the one you posted above. I only asked because I'd wanted to try Feral PvP at 85, but couldn't find something that would level it up through PQR. Nova had the balance profile, but Kitty seemed a faster bet.

  10. #1105
    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)
    Version 1.0.0.1 released for my HonorBuddy Rotation. Nothing major, just minor bug fixes. In the next MAJOR update, will have my complete rotation of my FireKitteh profile coded in and working just as good

    EDIT* On that note, still don't know if I'm going to have HonorBuddy handle Mangle/Shred or not. Might just go ahead and let PQRotation handle it all 100% as it has yet to fail me on any of my raids in the last 6 months

  11. #1106
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah your Firekitteh has never failed shred/mangle when I've tried it, its really good! How would I edit Gabbz kittyversion of his Kittybear (when I shapeshift to kitty it changes to kittyrotation) to have your shred/mangle-logic? I use his bearprofile alot since it has kitty-rotation included, but it fails when you cant get behind your target since it wants to shred all the time.

  12. #1107
    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 Ninjaderp View Post
    Yeah your Firekitteh has never failed shred/mangle when I've tried it, its really good! How would I edit Gabbz kittyversion of his Kittybear (when I shapeshift to kitty it changes to kittyrotation) to have your shred/mangle-logic? I use his bearprofile alot since it has kitty-rotation included, but it fails when you cant get behind your target since it wants to shred all the time.
    Can you link me his profile? I thought I had it, but I can't find it lol.

  13. #1108
    MACH9 WoW Services's Avatar Member CoreCoins Purchaser
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    219
    Thanks G/R
    1/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @firepong so you use honorbuddy and PQR combined for raids? why is that.. what does Honorbuddy give you that PQR doesn't!

  14. #1109
    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 cameronmc88 View Post
    @firepong so you use honorbuddy and PQR combined for raids? why is that.. what does Honorbuddy give you that PQR doesn't!
    prob using the waypoints/vendor/gather side of honorbuddy.

    Please if someone helped you donate rep to them.

  15. #1110
    MACH9 WoW Services's Avatar Member CoreCoins Purchaser
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    219
    Thanks G/R
    1/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wouldn't that increase your chance of being banned using both?

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 10:02 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