PQR - Rotation Bot menu

User Tag List

Page 750 of 779 FirstFirst ... 250650700746747748749750751752753754 ... LastLast
Results 11,236 to 11,250 of 11681
  1. #11236
    snopoke's Avatar Member
    Reputation
    1
    Join Date
    Nov 2011
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Has anyone gotten PQR to run under Wine on Ubuntu? Just wondering if this is possible.

    PQR - Rotation Bot
  2. #11237
    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 Maxitor View Post
    This is brilliant! With the hotkey part it could go to the PQR Library What would be even more better if we had a function what checks for PQI addon and if it was not loaded it sets a default value for every PQI profile variable. Basicly you pass a table to the function with the desired settings.
    Hmm I'll look into that as well good suggestion

    Sent from my SCH-I535 using Tapatalk 4
    ^0^Team Nova's PQR NCC ^0^

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

  3. #11238
    paintpauller's Avatar Contributor
    Reputation
    128
    Join Date
    Jan 2012
    Posts
    265
    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'll look into that as well good suggestion

    Sent from my SCH-I535 using Tapatalk 4
    i have something similar in my Interrupt profile so it can be used with both PQI and without. granted i dont have a fancy function do it for me but here is what i have. hopefully it helps you out some.

    PHP Code:
    if IsAddOnLoaded("PQInterface") == 1 then
        PQInterfaceLoaded 
    true
        PQInterfaceVersion 
    tonumber(GetAddOnMetadata("PQInterface""Version"))
        if 
    PQInterfaceVersion >= 2.22 then
            PQInterfaceUpdated 
    true
        
    else 
            
    PQInterfaceUpdated false 
        end
    else
        
    PQInterfaceLoaded false 
        PQInterfaceUpdated 
    false 
    end
    if PQR_LoadLua("PQR_PQI.lua") == true then
        PQInterfaceDataLoaded 
    true
    else 
        
    PQInterfaceDataLoaded false 
    end 
    then at the top of my variables ability
    PHP Code:
    if not PQInterfaceLoaded or not PQInterfaceUpdated or not PQInterfaceDataLoaded then
        
    --They dont have PQI or its not up-to-date use default values
        
        
    --set all the variables to their defaults

    elseif PQInterfaceLoaded and PQInterfaceUpdated and PQInterfaceDataLoaded then
        
    --They have PQI and its up-to-date use PQI

        
    --set all the variables to their PQI equivalent

    end 
    another thing we could with this info is give out a generic PQI error. for example
    Alpha Utilities - which requires PQI:
    PHP Code:
    --Let the know that they dont have PQI!
    if 
    not PQInterfaceLoaded and not PQI_AlphaUtilities_UpdateError_sent then
        
    print("|cff00ffff<|cff00aaffAlpha Utilities Error|cff00ffff> |cffb048f8 PQInterface was not detected, please install both the Addon and the PQR Data File to use this profile!")
        print(
    "|cffb048f8Download the latest version and follow the installation instructions at the bottom of this page: |cffffffffhttp://PQRotation.wikia.com/wiki/PQInterface")
        print(
    "|cffDC143CAlpha Utilities has been halted!")
        
    PQI_AlphaUtilities_UpdateError_sent true
    end
    --Let them know that they have an old version of PQI and need to update!
    if 
    PQInterfaceLoaded and not PQInterfaceUpdated and not PQI_AlphaUtilities_UpdateError2_sent then
        
    print("|cff00ffff<|cff00aaffAlpha Utilities Error|cff00ffff> |cffb048f8 PQInterface was detected but not up to date, please update both the Addon and the PQR Data File to use this profile!")
        print(
    "|cffb048f8You can download the latest version from: |cffffffffhttp://PQRotation.wikia.com/wiki/PQInterface")
        print(
    "|cffDC143CAlpha Utilities has been halted!")
        
    PQI_AlphaUtilities_UpdateError2_sent true
    end
    --Let them know that they dont have PQR_PQI_Data.lua and where to get it!
    if 
    not PQInterfaceDataLoaded and PQInterfaceLoaded and PQInterfaceUpdated and not PQI_AlphaUtilities_UpdateError3_sent then
        
    print("|cff00ffff<|cff00aaffAlpha Utilities Error|cff00ffff> |cffb048f8 PQInterface was detected and is up to date but you are missing the PQR Data File. This is required to use this profile!")
        print(
    "|cffb048f8Download the latest version and follow the installation instructions at the bottom of this page: |cffffffffhttp://PQRotation.wikia.com/wiki/PQInterface")
        print(
    "|cffDC143CAlpha Utilities has been halted!")
        
    PQI_AlphaUtilities_UpdateError3_sent true
    end 
    Alpha Interrupt - Does not require PQI:
    PHP Code:
    --Let them know that they have an old version of PQI and should update to use the rotation configureprofile will still work if they dont though!
    if 
    PQInterfaceLoaded and not PQInterfaceUpdated and not PQI_AlphaInterrupt_UpdateError_sent then
        
    print("|cff00ffff<|cff00aaffAlpha Interrupt Error|cff00ffff> |cffb048f8 PQInterface was detected but not up to date, please update both the Addon and the PQR Data File to use the in-game options")
        print(
    "|cffb048f8You can download the latest version from: |cffffffffhttp://PQRotation.wikia.com/wiki/PQInterface")
        
    PQI_AlphaInterrupt_UpdateError_sent true
    end
    --Let them know that they dont have PQR_PQI_Data.lua and where to get it to use the rotation configureprofile will still work if they dont though!
    if 
    not PQInterfaceDataLoaded and PQInterfaceLoaded and PQInterfaceUpdated and not PQI_AlphaInterrupt_UpdateError2_sent then
        
    print("|cff00ffff<|cff00aaffError|cff00ffff> |cffb048f8 PQInterface was detected and is up to date but you are missing the PQR Data File. This is required to use the in-game options")
        print(
    "|cffb048f8Download the latest version and follow the installation instructions at the bottom of this page: |cffffffffhttp://PQRotation.wikia.com/wiki/PQInterface")
        
    PQI_AlphaInterrupt_UpdateError2_sent true
    end 

    Alpha Profiles: - All profiles with PQInterface support!
    Alpha Interrupt: https://goo.gl/OLhGi - Ignore List, Random Percentage, Time Delays, & much More!
    Alpha Utilities: https://goo.gl/rt7WA - Farming, Prospecting, Disenchanting, Milling, & Questing
    Alpha Moonkin: https://goo.gl/gjxw0 - Optimized DPS Rotation for PvE, Mashup of 3 Profiles
    Avery's Ret: https://goo.gl/GhurM - My take on Avery's outstanding Ret profile with PQI

  4. #11239
    snopoke's Avatar Member
    Reputation
    1
    Join Date
    Nov 2011
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bump
    Has anyone gotten PQR to run under Wine on Ubuntu? Just wondering if this is possible.

  5. #11240
    MrHeroe's Avatar Member
    Reputation
    3
    Join Date
    May 2013
    Posts
    67
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bump
    In your oppinion whats the best way to cancel own auras?

    - - RunMacroText("/cancelaura xxxxxxxxxxx")
    - - CancelUnitBuff(xxxx) (does it even work?)

    or ist there another way?

  6. #11241
    cpowroks's Avatar Contributor
    Reputation
    180
    Join Date
    Oct 2007
    Posts
    623
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MrHeroe View Post
    Bump
    In your oppinion whats the best way to cancel own auras?

    - - RunMacroText("/cancelaura xxxxxxxxxxx")
    - - CancelUnitBuff(xxxx) (does it even work?)

    or ist there another way?
    CancelUnitBuff("player", GetSpellInfo(25780))

    is what i use to cancel RF as a paladin.
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  7. #11242
    JUANNY's Avatar Master Sergeant
    Reputation
    21
    Join Date
    May 2013
    Posts
    136
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anybody have the PTR offset for the new build 17331?

  8. #11243
    leetspeaker's Avatar Member
    Reputation
    3
    Join Date
    Feb 2009
    Posts
    70
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    <CurMgr>0x462C</CurMgr>
    <LocalGUID>0xF0</LocalGUID>
    <FirstObject>0xCC</FirstObject>
    <NextObject>0x34</NextObject>
    <Descriptors>0x4</Descriptors>
    <Obj_TypeOffset>0xC</Obj_TypeOffset>
    <Obj_X>0x830</Obj_X>
    <Obj_TargetGUID>0x28</Obj_TargetGUID>
    <ClickTerrain>0</ClickTerrain>
    Need someone who will find them, i've found others, but without these mine wow keeps crashing after trying to start rotation.
    Or i found something wrong,
    <CurrentWoWVersion>17331</CurrentWoWVersion>
    <WoWVersionOffset>0xC6652F</WoWVersionOffset>
    <PlayerName>0xEABE58</PlayerName>
    <PlayerClass>0xEABFD5</PlayerClass>
    <GetCurrentKeyBoardFocus>0xB9DC5C</GetCurrentKeyBoardFocus>
    <GameState>0xD4D3FE</GameState>
    <Lua_DoStringAddress>0x501BF</Lua_DoStringAddress>
    <Lua_GetLocalizedTextAddress>0x40CD10</Lua_GetLocalizedTextAddress>
    <CVarBaseMgr>0xB7E7A0</CVarBaseMgr>
    <CVarArraySize>0x400</CVarArraySize>
    <ObjMgr>0xC9F364 or 0xEABE18 ?</ObjMgr>
    Found these, but they are not working. :-D ,
    Last edited by leetspeaker; 08-27-2013 at 04:48 AM.

  9. #11244
    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)
    ** Update on Function Progress **

    Alright after thinking and working it all out... here's an update on the progress.... Might rename the Hotkey Variable in a little bit to make the Key Variable shorter (remove the _Key tail ) but Hotkey support is working, as well as an updated way to check if the Variable is loaded or not

    PHP Code:
    function PQI_Setup_Variables(tableNamePrefix) -- Name of the PQI Table, [Prefix you want to affix to Variable (Nova is default if left blank)]
        
    local tableName tableName
        local Prefix 
    Prefix or "Nova"
        
    if type(Prefix) ~= "string" then
            Prefix 
    "Nova"
        
    end
        local PQI_String 
    string.format("%s_%s%s""PQI"gsub(tableName.author"%s"""), gsub(tableName.name"%s"""))
        if 
    type(tableName.abilities) == "table" then
            
    for i=1#tableName.abilities do
                
    local AbilitiesName gsub(tableName.abilities[i].name'%s''')
                
    local Variable string.format('%s_%s'PrefixAbilitiesName)
                
    local PQI_String_Enable string.format("%s_%s_%s"PQI_StringAbilitiesName"enable")
                
    local PQI_String_Value string.format("%s_%s_%s"PQI_StringAbilitiesName"value")
                
                if 
    _G[PQI_String_Enablethen -- This is to verify that PQI is fully loaded before trying to make the Variables
                    _G
    [Variable..'_Check'] = _G[tostring(PQI_String_Enable)] -- Output Prefix_AbilityName_Check
                    _G
    [Variable] = _G[tostring(PQI_String_Value)] -- Output Prefix_AbilityName
                
    else
                    return 
    false
                end
            end
        end
        
    if type(tableName.hotkeys) == "table" then
            
    for h=1#tableName.hotkeys do
                
    local HotkeyName gsub(tableName.hotkeys[h].name'%s''')
                
    local Variable string.format('%s_%s%s'Prefix"Mod"HotkeyName)
                
    local PQI_String_Enable string.format("%s_%s_%s"PQI_StringHotkeyName"enable")
                
    local PQI_String_Key string.format('%s_%s_%s'PQI_StringHotkeyName"key")
                
                if 
    _G[PQI_String_Enablethen
                    _G
    [Variable..'_Check'] = _G[tostring(PQI_String_Enable)] -- Output Prefix_ModAbilityName_Check
                    _G
    [Variable..'_Key'] = PQI:IsHotkeys(_G[PQI_String_Key]) -- Output Prefix_ModAbilityName_Key
                
    else
                    return 
    false
                end
            end
        end

        
    return true
    end



    if not PQI_Setup_Variables(PQI_Healing_Druid"Nova"then
        
    return true
    end 
    remember we need to rerun this function each pass through to catch all of the updates to the values , but this thing is quick and i haven't had any issues with my internal testing so far

    Next step is the Addon check... if i don't see any slow downs in operating speed, i'll add it in

    This should be workable by most every dev out there.... remember to keep naming simple.... i haven't added any gsub patterns for removing anything other than spaces
    ^0^Team Nova's PQR NCC ^0^

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

  10. #11245
    MrHeroe's Avatar Member
    Reputation
    3
    Join Date
    May 2013
    Posts
    67
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cpowroks View Post
    CancelUnitBuff("player", GetSpellInfo(25780))

    is what i use to cancel RF as a paladin.
    Great Thank you! =)

  11. #11246
    jh16's Avatar Contributor
    Reputation
    323
    Join Date
    Feb 2012
    Posts
    321
    Thanks G/R
    10/46
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by leetspeaker View Post
    Need someone who will find them, i've found others, but without these mine wow keeps crashing after trying to start rotation.
    Or i found something wrong,

    Found these, but they are not working. :-D ,
    Yeah those are the ones I found. Perhaps PQR itself will need to be updated for 5.4 when it is released.

  12. #11247
    Maxitor's Avatar Master Sergeant
    Reputation
    8
    Join Date
    Apr 2013
    Posts
    85
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    bu_ba_911: i am going to try this out asap. The addon check should not slow down anything because you do it only once when the profile starts and it is only sets up the values to a default value.

    if (IsAddOnLoaded("PQInterface")) == nil then ...

    What i want to avoid here is to type in manually the long variable names and set a value for them.

    Edit: I have just read paintpauller's post he does the same.

    P.S. does anyone have an idea how to collect these code snippets?
    Last edited by Maxitor; 08-27-2013 at 07:35 AM.

  13. #11248
    Cikapaja's Avatar Member
    Reputation
    4
    Join Date
    Oct 2012
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone have working offsets for 17331?

  14. #11249

  15. #11250
    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)
    Anyone have the ptr offsets, been working on warrior/pally profiles on there, would really appreciate them.

    Pally is pulling 220k on dummies, warrior 230k.

    really excited for this patch, the cleave trinket is ridiculous, on some bosses I was pulling 600k+ at the end.

    edit:

    Pretty please I will give you my profiles or make one for your class.
    Last edited by averykey; 08-27-2013 at 11:41 AM.
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

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