PQR - Rotation Bot menu

User Tag List

Page 715 of 779 FirstFirst ... 215615665711712713714715716717718719765 ... LastLast
Results 10,711 to 10,725 of 11681
  1. #10711
    Mavmins's Avatar Contributor
    Reputation
    165
    Join Date
    Oct 2012
    Posts
    606
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thank you both !

    PQR - Rotation Bot
  2. #10712
    Jettand's Avatar Corporal
    Reputation
    6
    Join Date
    Sep 2012
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I keep getting .net Framework errors every few months and PQR will stop working completely. I'm using windows 7, anyone have solutions? Thanks in advance!

  3. #10713
    Sun0s's Avatar Member
    Reputation
    1
    Join Date
    Apr 2013
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello,

    Depuis aujourd'hui je rencontre des problemes avec Pqr il craht constament.

    I encounter problems with Pqr since today.
    It crash landing without stop. I use Windows8.

    Ty.

  4. #10714
    Jettand's Avatar Corporal
    Reputation
    6
    Join Date
    Sep 2012
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Haven't been been able to use PQR for 2 weeks, any help will be greatly appreciated. No wow for 2 weeks D-=

  5. #10715
    Holobyte's Avatar Sergeant
    Reputation
    43
    Join Date
    Apr 2012
    Posts
    56
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by CodeMyLife View Post
    I think this recast delay is only if you return true and use left box to cast. If you use CastSpellByName ot does not aplly. Do you use returns?
    Yeah, I'm using returns and leting pqr cast the ability for me.
    I know it's cool between profile authors to handle casting inside the profile. I've done that myself for some of my profiles, but Frost DK's rotation is simple enough to not need this level of 'sophistication'.

    The recast delay is not working for Blood Tap and Blood Tap only. For every other ability it's working fine. As I said, the spell has some particularities that may be causing this behaviour, hence my curiosity about how PQR handles that recast delay.

  6. #10716
    kickmydog's Avatar Contributor
    Reputation
    257
    Join Date
    Jul 2011
    Posts
    635
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by osbornx22 View Post
    Any way to distinguish between normal dk diseases and glyphed (undispellable) dk diseases?

    Glyph of Enduring Infection - Spell - World of Warcraft

    /run print(UnitDebuff("target", "Frostfieber"))

    without glyph:
    Frostfieber Interface\Icons\Spell_DeathKnight_FrostFever 0 Disease 30 32462.673 player nil nil 55095 false nil true 166

    with glyph:
    Frostfieber Interface\Icons\Spell_DeathKnight_FrostFever 0 Disease 30 32462.673 player nil nil 55095 false nil true 166

    Its important for my ret paladin rotation, which spams

    Cleanse - Spell - World of Warcraft

    The Problem is a fail from blizzard. The glyph doesnt change the dispel type of the debuff from "Disease" to "None"
    Have you tried using from the UnitDebuff function the part that checks "isStealable" I've been using it on my hunter profile for a while now for using tranquilizing shot. Check if it works for dispelling diseases.

    ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    Btw I occasionally get messages from people who have problems with my profile and I try to fix those where I can. However just telling me that Kill Command doesn't work for you "fix it" will get you a rather rude reply back from me.

    If you have a problem with the profile, be polite and give me as much information as possible if you want help back. Thanks.
    Last edited by kickmydog; 07-03-2013 at 04:26 PM.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017

  7. #10717
    Holobyte's Avatar Sergeant
    Reputation
    43
    Join Date
    Apr 2012
    Posts
    56
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    My new profile runs fine on 10man raids but during certain 25man encounters (mostly Primordius) I face some major slowdowns that go away when I pause the profile. I have a good computer (core i5 3570K / 8GB RAM) and other profiles (from other authors) do not give me any slowdowns, ever.

    Does using Lua tables affect profile performance? For my current profile I decided to make use of Lua tables. It has 6 global tables that are read and updated by a number of functions and abilities. I'm not creating any other tables, not even local ones. Some tables have subtables, others don't.
    An example:
    Code:
        Runes = {
            ["b"] = { Up = 0, CdLeft = 10 },
            ["u"] = { Up = 0, CdLeft = 10 },
            ["f"] = { Up = 0, CdLeft = 10 },
        }
    This table is updated at every PQR cycle by a function (ability check delay is at 20ms):
    Code:
    function Hf_UpdateRunes()
        if not Runes then
            Hf_AddLog("Error", "'Runes' table does not exists.", "Hf_UpdateRunes")
            return
        end
    
    
        local runeSlots = { "b", "u", "f"}
        local r = 1
        for slot=1, 6 do
            local start, cd, up = GetRuneCooldown(slot)
            local left = start + cd - GetTime()
            if not up then -- on Cd
                if Runes[runeSlots[r]].CdLeft > left then
                    Runes[runeSlots[r]].CdLeft = left
                end
            else -- off Cd
                Runes[runeSlots[r]].Up = Runes[runeSlots[r]].Up + 1
            end
            if slot % 2 == 0 then
                r = r + 1
            end
        end
    end
    I have similar tables and functions to handle player buffs and target debuffs.

    So, do you think that I should drop tables and simply return multiple values? I don't really want to make this change and see no performance gain at all so I tought I should ask first.
    Last edited by Holobyte; 07-03-2013 at 05:43 PM. Reason: spelling

  8. #10718
    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)
    I'm trying to figure out if there is an easy way to add an ability to a rotation that will only be used if a certain criteria is met.

    I want Spellid 122287 to be cast but only if my target is NPC 69869 or NPC 69957 and outside of melee range.

    I tried a few different ways to add this but the same problem I kept running into is I just keep spamming wrath over and over regardless what my target is.

    any ideas?

  9. #10719
    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
    I'm trying to figure out if there is an easy way to add an ability to a rotation that will only be used if a certain criteria is met.

    I want Spellid 122287 to be cast but only if my target is NPC 69869 or NPC 69957 and outside of melee range.

    I tried a few different ways to add this but the same problem I kept running into is I just keep spamming wrath over and over regardless what my target is.

    any ideas?
    what class is it?


    This Should work just put a melee only spellid for the first local

    PHP Code:
    local meleespell 35395 --put a melee only spell id here (i used Crusader Strike)
    if 
    IsPlayerSpell(122287)
        and 
    UnitExists("target")
        and 
    UnitAffectingCombat("player")
        and 
    IsSpellInRange(meleespell"target") == 0 then
            local npcID 
    tonumber(UnitGUID("target"):sub(6,10), 16)
            
            if 
    npcID == 69869 or npcID == 69957 then
                CastSpellByName
    (GetSpellInfo(122287), "target")
                return 
    true
            end
    end 
    Last edited by crystal_tech; 07-03-2013 at 09:12 PM. Reason: tweaked the code a bit

    Please if someone helped you donate rep to them.

  10. #10720
    Jettand's Avatar Corporal
    Reputation
    6
    Join Date
    Sep 2012
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Where is PQI? I can't find a page to download it. Been looking for 40 mins, really fustrating..

    Also, is there a working DK profile? Tried using Rubims and Imdasandmans. Not sure if it's PQI related, I'm using PQI from a few months ago..
    I can load profile on my other toons perfectly, DK will not load anything. Imdasandman 2h Frost used to work, won't load now.
    Last edited by Jettand; 07-03-2013 at 11:21 PM. Reason: More to be said????

  11. #10721
    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 Jettand View Post
    Where is PQI? I can't find a page to download it. Been looking for 40 mins, really fustrating
    inbox is full

    PQInterface - PQRotation Wiki

    Please if someone helped you donate rep to them.

  12. #10722
    tobmaps's Avatar Active Member
    Reputation
    43
    Join Date
    Apr 2013
    Posts
    28
    Thanks G/R
    1/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Holobyte View Post
    Does using Lua tables affect profile performance?
    since you create new table everytime you run your function - yes
    Last edited by tobmaps; 07-04-2013 at 12:00 AM.

  13. #10723
    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 Holobyte View Post
    My new profile runs fine on 10man raids but during certain 25man encounters (mostly Primordius) I face some major slowdowns that go away when I pause the profile. I have a good computer (core i5 3570K / 8GB RAM) and other profiles (from other authors) do not give me any slowdowns, ever.

    Does using Lua tables affect profile performance? For my current profile I decided to make use of Lua tables. It has 6 global tables that are read and updated by a number of functions and abilities. I'm not creating any other tables, not even local ones. Some tables have subtables, others don't.
    An example:
    Code:
        Runes = {
            ["b"] = { Up = 0, CdLeft = 10 },
            ["u"] = { Up = 0, CdLeft = 10 },
            ["f"] = { Up = 0, CdLeft = 10 },
        }
    This table is updated at every PQR cycle by a function (ability check delay is at 20ms):
    Code:
    function Hf_UpdateRunes()
        if not Runes then
            Hf_AddLog("Error", "'Runes' table does not exists.", "Hf_UpdateRunes")
            return
        end
    
    
        local runeSlots = { "b", "u", "f"}
        local r = 1
        for slot=1, 6 do
            local start, cd, up = GetRuneCooldown(slot)
            local left = start + cd - GetTime()
            if not up then -- on Cd
                if Runes[runeSlots[r]].CdLeft > left then
                    Runes[runeSlots[r]].CdLeft = left
                end
            else -- off Cd
                Runes[runeSlots[r]].Up = Runes[runeSlots[r]].Up + 1
            end
            if slot % 2 == 0 then
                r = r + 1
            end
        end
    end
    I have similar tables and functions to handle player buffs and target debuffs.

    So, do you think that I should drop tables and simply return multiple values? I don't really want to make this change and see no performance gain at all so I tought I should ask first.
    try this:
    Lua Unofficial FAQ (uFAQ)

    and reading

    Lua for Beginners

    sounds like your trying to grow your tables after they are created and you should cap them at so many lines, and delay your updates to the tables a bit more.

    Please if someone helped you donate rep to them.

  14. #10724
    DarkMassacre's Avatar Contributor
    Reputation
    87
    Join Date
    Apr 2009
    Posts
    141
    Thanks G/R
    9/21
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am interested in learning how to write profiles for PQR, could someone please tell me what kind of code c++, C# ect is used in profiles so I can find some guides for that language?

  15. #10725
    evlow's Avatar Contributor
    Reputation
    171
    Join Date
    Sep 2007
    Posts
    233
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    PQR is all lua based, you can find a ton of guides, and start looking at various addons to learn how to program it, also search for the wow api and that'll get you started.

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:42 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