PQR - Rotation Bot menu

User Tag List

Page 358 of 779 FirstFirst ... 258308354355356357358359360361362408458 ... LastLast
Results 5,356 to 5,370 of 11681
  1. #5356
    deadpanstiffy's Avatar Knight-Lieutenant
    Reputation
    158
    Join Date
    Mar 2012
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    function GlyphInUse(id)
    	for i=1,NUM_GLYPH_SLOTS do 
    		local _,_,_,gid=GetGlyphSocketInfo(i,1)
    		if gid==id then
    		return true
    		end
    	end
    end
    Code:
    if GlyphInUse(41092) then
    	--some code here
    end
    Not sure why you are using a table to look up the glyph when only one ID exists.

    PQR - Rotation Bot
  2. #5357
    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)
    Originally Posted by Gabbz View Post
    I perhaps was a bit unclear

    PHP Code:
    if UnitCanAttack("player","target") and UnitAffectingCombat("player"then
        local doubleJeopardy 
    = { 410925703054922121027 }
        for 
    i=1,#doubleJeopardy do
            
    if HaveGlyph(doubleJeopardy[i]) then
                
    if UnitExists("focus") and RangeCheck(20271"focus") and switchedTargets == false then
                    CastSpellByName
    (GetSpellInfo(20271), "focus")
                    
    switchedTargets true
                    
    return true   -- Should add this
                
    elseif UnitExists("target") and RangeCheck(20271"target") and switchedTargets == true then
                    CastSpellByName
    (GetSpellInfo(20271), "target")      
                    
    switchedTargets false
                    
    return true   -- Should add this
                end 
           end
        end  
    -- End of the loop going through all glyphs in list
         -- 
    So we are here only if no hit in list 
         if 
    UnitExists("focus") and RangeCheck(20271"focus"then
            CastSpellByName
    (GetSpellInfo(20271), "focus")
            return 
    true
          
    elseif UnitExists("target") and RangeCheck(20271"target"then
             CastSpellByName
    (GetSpellInfo(20271), "target")      
            return 
    true
         end
    end 
    -- ends combat/attack checkI have this because it will attack once from range but if I'm kiting it won't attack again because the only combat check I have is in pause 
    Thank you, I understand now.

    Originally Posted by deadpanstiffy View Post
    Code:
    function GlyphInUse(id)
    	for i=1,NUM_GLYPH_SLOTS do 
    		local _,_,_,gid=GetGlyphSocketInfo(i,1)
    		if gid==id then
    		return true
    		end
    	end
    end
    Code:
    if GlyphInUse(41092) then
    	--some code here
    end
    Not sure why you are using a table to look up the glyph when only one ID exists.
    I don't know the id, I just added all the ids that have glyph of double jeopardy on wowhead.

    This does the same thing? I think it does, I still don't understand a lot.

    PHP Code:
    function HaveGlyph(id)
        for 
    i=1GetNumGlyphSockets() do
            if 
    select(4GetGlyphSocketInfo(i)) == id then return true end
        end
        
    return false
    end 
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  3. #5358
    Damned1's Avatar Member
    Reputation
    2
    Join Date
    Feb 2008
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It will give you invalid target if you dont have earthliving weapon on your weapon and it tries to unleash elements.

  4. #5359
    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)
    Two current Holy Paladin rotations (both Nova and Sheepmoon) are locking up at random on me. Tried removing Eternal Flame to see if it's a replacement skill doing it but still locking up. Not sure what is going on. The weird part is if someone dies, it'll work again for a couple seconds then lock up again. Same after I res, things will start working again for a bit.
    Former PQR Developer

  5. #5360
    saga3180's Avatar Knight-Lieutenant
    Reputation
    6
    Join Date
    Sep 2011
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kuukuu View Post
    Two current Holy Paladin rotations (both Nova and Sheepmoon) are locking up at random on me. Tried removing Eternal Flame to see if it's a replacement skill doing it but still locking up. Not sure what is going on. The weird part is if someone dies, it'll work again for a couple seconds then lock up again. Same after I res, things will start working again for a bit.
    I use both profiles and i have no such problems with it.

  6. #5361
    mrperson13's Avatar Member
    Reputation
    1
    Join Date
    Sep 2007
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm not entirely sure it's profile specific. I'm using the leveling windwalker profile and it locks up all the time, only way I noticed how to fix it was to close and reopen WoW, which sucks in a dungeon. I should note that it also will not allow me to press buttons once locked up, and it has previously worked perfectly - it just randomly started doing this.

  7. #5362
    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)
    Originally Posted by kuukuu View Post
    Two current Holy Paladin rotations (both Nova and Sheepmoon) are locking up at random on me. Tried removing Eternal Flame to see if it's a replacement skill doing it but still locking up. Not sure what is going on. The weird part is if someone dies, it'll work again for a couple seconds then lock up again. Same after I res, things will start working again for a bit.
    Maybe you're missing a spell that the profile is using?

  8. #5363
    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)
    Originally Posted by xLegendx View Post
    Maybe you're missing a spell that the profile is using?
    I can confirm there is a lockup, I had to restart wow to fix it.



    edit:


    So I would do mass exo/exo like this? +rep for you gabbz, thanks for the help
    Going to re-write all of the abilities to use return true
    PHP Code:
    -- HoW Check
    local howSTART
    howDURATION GetSpellCooldown(24275)
    if 
    howSTART GetTime() + howDURATION 0.1 and howSTART GetTime() + howDURATION 0 then
        
    return false
    -- Freeze Check
    elseif not PQR_UnitFacing("player""target"then
        
    return false
    -- Holy Avenger Check
    elseif UnitBuffID("player"105809) and UnitPower("player"9) >= 3 then
        
    return false
    -- Prevents wrong spell casts
    elseif PQR_SpellAvailable(24275then
        
    return false
    end

    -- Exorcism
    if UnitCanAttack("player","target") and UnitAffectingCombat("player"then
        
    if UnitBuffID("player"87138) and UnitPower("player"9) < or UnitPower("player"9) < 5 then
            local massExorcism 
    = { 8310712203012202885703 }
            for 
    i=1,#massExorcism do
                
    if HaveGlyph(massExorcism[i]) then
                    
    if RangeCheck(85256"target"then
                        CastSpellByName
    ("Exorcism""target")
                        return 
    true
                    end
                end
            end
                
    if RangeCheck(879"target"then
                    CastSpellByName
    (GetSpellInfo(879), "target")
                    return 
    true
                end
            end
        end 
    edit:

    Originally Posted by Damned1 View Post
    It will give you invalid target if you dont have earthliving weapon on your weapon and it tries to unleash elements.

    PHP Code:
    if UnitBuffID("player"51730) == nil then return false end 
    inside unleash elements
    Last edited by averykey; 10-26-2012 at 11:04 PM.
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  9. #5364
    gex00's Avatar Member
    Reputation
    1
    Join Date
    Oct 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    There seems to be a lack of PvP Monk profile, willing to donate if someone can manage to do so

  10. #5365
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    really want to know whos profile peps are using if they say its locking up makes it hard to fix it

    Please if someone helped you donate rep to them.

  11. #5366
    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)
    Originally Posted by crystal_tech View Post
    really want to know whos profile peps are using if they say its locking up makes it hard to fix it
    I tried a bunch of profiles to make sure it wasn't just mine, They seem to lockup sometimes, but it's only sometimes so It's not a big deal.
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  12. #5367
    mrperson13's Avatar Member
    Reputation
    1
    Join Date
    Sep 2007
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    really want to know whos profile peps are using if they say its locking up makes it hard to fix it
    For me it's Nova's Wind profile.
    Attachment 11016
    Attachment 11017

  13. #5368
    googlebee's Avatar Contributor PQR Profile Developer CoreCoins Purchaser
    Reputation
    235
    Join Date
    Oct 2007
    Posts
    478
    Thanks G/R
    0/0
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Mine locks up as well very rarely, but it does.

    It seems to lock up more often however if I'm using my bear profile with the revised interrupt (Not Xelpers)

    Sometimes hitting escape (To open the options menu) will fix it, other times a reload ui will, and worst case, relogging.

  14. #5369
    evv0kk's Avatar Member
    Reputation
    7
    Join Date
    Nov 2007
    Posts
    143
    Thanks G/R
    2/4
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how difficult would it be to get PQR to work with 64 bit? Just curious

  15. #5370
    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 evv0kk View Post
    how difficult would it be to get PQR to work with 64 bit? Just curious
    Iam curious to why people keep asking this question in this thread, it works fine in 32-bit and there's nothing wrong with that. If it was so easy to make it work with 64-bit wow I think Xelper would have done it a long time ago.

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