PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 463 of 779 FirstFirst ... 363413459460461462463464465466467513563 ... LastLast
Results 6,931 to 6,945 of 11681
  1. #6931
    magenpriest's Avatar Banned
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mentally View Post
    @OnionsTich: As mentioned, it's probably because PQR_UnitFacing is currently bugged.

    Also, I want to be the first one to congratulate myself with happy birthday. *claps*
    Anyone know custom/alt function when waiting Xelper for PQR_UnitFacing fixing?

    Happy birthday mentally! Cheerz!

    PQR - Rotation Bot
  2. #6932
    Luckycharm's Avatar Member
    Reputation
    1
    Join Date
    Jul 2011
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What is wrong with this code? Purify Spirit doesn´t trigger using spellid 77130.

    if not CheckMagics then
    function CheckMagics(t)
    for n=1,40 do
    local buff,_,_,count,bufftype,duration = UnitDebuff(t, n)
    if buff then
    if bufftype == "Magic" then return true end
    else
    break
    end
    end
    end
    end

    for i=1,#members do
    if not BadEffects(members[i].Unit)
    and CheckMagics(members[i].Unit)
    then
    PQR_CustomTarget = members[i].Unit
    return true
    end
    end

  3. #6933
    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)
    @Luckycharm: Try this. Simply replace the last part:
    Code:
    for i=1,#members do
    	if not BadEffects(members[i].Unit) and CheckMagics(members[i].Unit) then
    		PQR_CustomTarget = members[i].Unit
    		CastSpellByName(GetSpellInfo(77130),PQR_CustomTarget)
    		return true 
    	end
    end
    Also, if you didn't already. Make sure that the ability is set to use Custom Target rather than a target.

  4. #6934
    Luckycharm's Avatar Member
    Reputation
    1
    Join Date
    Jul 2011
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great but solved it already, ty for replying and congratz to your birthday. ^^
    Keep up the good work!

  5. #6935
    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)
    Glad you got it to work even without my help, Lucky!

  6. #6936
    Discipline's Avatar Contributor ALADEEN MOTHERFUCKER! CoreCoins Purchaser
    Reputation
    128
    Join Date
    Dec 2007
    Posts
    253
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sooo, this is my "Autopilot Arena Icy Touch Dispel", and I want to ask if it will, in theory, work as intended, as I cannot test it anytime soon. What I want it to do is check arena1-(Max Number of players in the bracket) for the buffs in the table, and if there is a buff i want to dispel on some of them, it will dispel it.

    Code:
    numOpponents = GetNumArenaOpponents()
    BuffsTable = {116849, 1044, 54428, 2916} -- Life Cocoon, Hand of Freedom, Divine Plea, Innervate
    
    
    if GlyphCheck(43546) then
        for k=1 , numOpponents do
            checkThis = ("arena"..k)
            for i=1, #BuffsTable do
                if UnitBuffID(checkThis, BuffsTable[i]) and UnitCanAttack("player", checkThis) then 
                    CastSpellByName("Icy Touch", checkThis)
                end
            end
        end
    else
        return false
    end

  7. #6937
    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)
    Happy Birthday Mentally!!!

    Hope you feel better soon!


    I didn't receive a pm yet



    edit:

    Some new updates to ret soon, also been working on a prot profile, been having trouble though.

    For some reason it won't cast shield of the righteous or avenger's shield, the spell ids are right and everything.

    53600-shield of the righteous
    PHP Code:
    if UnitPower("player"9) >= 3 then
        
    return true
    end 
    31935-avenger's shield
    PHP Code:
    if PQR_SpellAvailable(31935) or (UnitBuffID("player"85416) and UnitPower("player"9) < 5then
        
    return true
    end 
    ^ just test code to see if it will work, it won't even work with just, return true.
    Anyone know why? I made a new profile and it still won't work, re-downloaded pqr, updated again. Still won't work. =/ Out of ideas.
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  8. #6938
    lolomo2003's Avatar Active Member
    Reputation
    49
    Join Date
    Apr 2012
    Posts
    102
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have a quick question about spell ID

    On druid when Im in human form for Skull Bash show spell ID = 106839 , in bear form spell ID=82365, however interrupt work only with spell ID=106839 and I didn't understand why. It should work with spell ID=82365 with bear form.

    Thx in advance

  9. #6939
    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)
    @D1sc1pl1n3: Remove the parentheses around checkThis and that should work
    @averykey: Lemme look up the document and I'll send you the PM again. Also, try using CastSpellByName(GetSpellInfo(spellID),"target") return true instead of Return true. It's probably being affected by the morphing bug.
    @lolomo2003: See explanation above. Use CastSpellByName. It's being morphed and is affected by the morphing bug.

  10. #6940
    lolomo2003's Avatar Active Member
    Reputation
    49
    Join Date
    Apr 2012
    Posts
    102
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ahhh thx for explication I will +rep again but need to spread some around
    Last edited by lolomo2003; 12-13-2012 at 07:59 AM.

  11. #6941
    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 mentally View Post
    @D1sc1pl1n3: Remove the parentheses around checkThis and that should work
    @averykey: Lemme look up the document and I'll send you the PM again. Also, try using CastSpellByName(GetSpellInfo(spellID),"target") return true instead of Return true. It's probably being affected by the morphing bug.
    @lolomo2003: See explanation above. Use CastSpellByName. It's being morphed and is affected by the morphing bug.
    Thanks, will try that .

    Let me know when you send the pm, I think private messaging may be broken for me? Some people have tried sending me messages but they never get sent.
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  12. #6942
    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 averykey View Post
    Some people have tried sending me messages but they never get sent.
    THIS.BTW check your thread,got some neat things for ya there,posted it coz it seems somehow that you don't get my PMs.
    MEDVED+VODKA+BALALAYKA

  13. #6943
    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)
    Looking for pointers to get me in the right direction for a Symbiosis useage.

    Im not looking to automate buffing symbiosis, just looking to utilize the ability granted from it.

    For instance.

    Druids do not normally have Death Coil, is it possible to literally make a ability for Deathcoil using that spellid, and to code it for a range check. Only using it if target is X yards away?

    If so then this would be possible for every spell granted from Symbiosis yes?

    thanks in advance!

    -GB

  14. #6944
    Nerder's Avatar Contributor
    Reputation
    117
    Join Date
    Aug 2012
    Posts
    263
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello there again everyone, for the most part my rogue profiles are 100% done at the moment... I'm releasing them as completed. Please inform me of anything that might need adjustments. I've implemented a spec check, so you can actually load any of them, for instance Subtlety and if you're in Combat it'll go to combat... or if you already have Subtlety loaded and you switch to mutilate then it'll switch to that profile. No need to alt tab!

    Please give feedback as to what might need to be changed.

  15. #6945
    Bendecks's Avatar Sergeant CoreCoins Purchaser
    Reputation
    5
    Join Date
    Aug 2011
    Posts
    66
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by paintpauller View Post
    Thanks for the feedback! will defiantly try to add that in when i get some free time this week. can you describe what you want it to do? deposit all milled/prospected/exc into the guild bank/bank and take out all things that need milling/prospecting exc?
    This is exactly what I meant

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 05:36 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