PQR - Rotation Bot menu

User Tag List

Page 713 of 779 FirstFirst ... 213613663709710711712713714715716717763 ... LastLast
Results 10,681 to 10,695 of 11681
  1. #10681
    zeromaster's Avatar Member
    Reputation
    1
    Join Date
    Feb 2013
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone got the PTR Offsets for 17124 ?

    PQR - Rotation Bot
  2. #10682
    goldrush2k12's Avatar Private
    Reputation
    1
    Join Date
    Oct 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by zeromaster View Post
    Anyone got the PTR Offsets for 17124 ?
    no one will have them for some reason PTR wont launch in 32x

  3. #10683
    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)
    You can force it to launch 32 bit if you delete wow_64.exe after you open the launcher.
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  4. #10684
    mikeyd234's Avatar Sergeant
    Reputation
    9
    Join Date
    Oct 2012
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Also looking for PTR offsets, anyone got them, or can someone tell me how to get them myself? =/

  5. #10685
    Vastico's Avatar Member
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mikeyd234 View Post
    Also looking for PTR offsets, anyone got them, or can someone tell me how to get them myself? =/
    Mine gets stuck saying PQR - LOGIN does that mean its out of date?

  6. #10686
    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)
    Hey guys, Thought I would share some code i thought of today. This bit turns off your CD toggle if your out of combat and your CDs are on.

    Code:
    TurnOffCDsOutOfCombat = true  --PQI setting or w/e
    
    
    if UnitAffectingCombat("player") then
        InCombat = true
    end
    
    
    if not UnitAffectingCombat("player")
    and TurnOffCDsOutOfCombat
    and UseCD --Cooldowns Toggle
    and InCombat then
        UseCD = false  
        InCombat = false
        print("Hey man, I turned off your CDs because you left combat.")
        PQR_WriteToChat("Cooldowns: |cFFFF0000Disabled")
    end
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  7. #10687
    mikeyd234's Avatar Sergeant
    Reputation
    9
    Join Date
    Oct 2012
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hmm well i've got IDA now and pointed it at the wow.exe and it's doing it's thing, unsure where to go from there though

  8. #10688
    Sacred's Avatar Contributor
    Reputation
    207
    Join Date
    Dec 2007
    Posts
    152
    Thanks G/R
    3/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    17124 PTR offsets, untested.
    https://www.dropbox.com/s/nz8m19z4vq...sets_17124.xml
    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <Offsets>
    	<CurrentWoWVersion>17124</CurrentWoWVersion>  
    	<WoWVersionOffset>0xD8A635</WoWVersionOffset>
    	<PlayerName>0xFCF698</PlayerName>
    	<PlayerClass>0xFCF815</PlayerClass>
    	<GetCurrentKeyBoardFocus>0xCB2010</GetCurrentKeyBoardFocus>
    	<GameState>0xE70C6E</GameState>
    	<Lua_DoStringAddress>0x5C299</Lua_DoStringAddress>
    	<Lua_GetLocalizedTextAddress>0x47DAFF</Lua_GetLocalizedTextAddress>
    	<CVarBaseMgr>0xCA5540</CVarBaseMgr>
    	<CVarArraySize>0x400</CVarArraySize>
    	<ObjMgr>0xFCF658</ObjMgr>
    	<CurMgr>0x462C</CurMgr>
    	<LocalGUID>0xF0</LocalGUID>
    	<FirstObject>0xCC</FirstObject>
    	<NextObject>0x34</NextObject>
    	<Descriptors>0x4</Descriptors>
    	<Obj_TypeOffset>0xC</Obj_TypeOffset>
    	<Obj_X>0x828</Obj_X>
    	<Obj_TargetGUID>0x28</Obj_TargetGUID>
    	<ClickTerrain>0</ClickTerrain>
    </Offsets>

  9. #10689
    goldrush2k12's Avatar Private
    Reputation
    1
    Join Date
    Oct 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sacred View Post
    17124 PTR offsets, untested.
    https://www.dropbox.com/s/nz8m19z4vq...sets_17124.xml
    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <Offsets>
    	<CurrentWoWVersion>17124</CurrentWoWVersion>  
    	<WoWVersionOffset>0xD8A635</WoWVersionOffset>
    	<PlayerName>0xFCF698</PlayerName>
    	<PlayerClass>0xFCF815</PlayerClass>
    	<GetCurrentKeyBoardFocus>0xCB2010</GetCurrentKeyBoardFocus>
    	<GameState>0xE70C6E</GameState>
    	<Lua_DoStringAddress>0x5C299</Lua_DoStringAddress>
    	<Lua_GetLocalizedTextAddress>0x47DAFF</Lua_GetLocalizedTextAddress>
    	<CVarBaseMgr>0xCA5540</CVarBaseMgr>
    	<CVarArraySize>0x400</CVarArraySize>
    	<ObjMgr>0xFCF658</ObjMgr>
    	<CurMgr>0x462C</CurMgr>
    	<LocalGUID>0xF0</LocalGUID>
    	<FirstObject>0xCC</FirstObject>
    	<NextObject>0x34</NextObject>
    	<Descriptors>0x4</Descriptors>
    	<Obj_TypeOffset>0xC</Obj_TypeOffset>
    	<Obj_X>0x828</Obj_X>
    	<Obj_TargetGUID>0x28</Obj_TargetGUID>
    	<ClickTerrain>0</ClickTerrain>
    </Offsets>
    will give this a test and see if it works will edit with the result

    As cpowroks said a little further up, delete you x64 version of wow that will then launch ptr in 32x to make PQR work and the offset works like a charm thanks
    Last edited by goldrush2k12; 07-01-2013 at 03:13 PM.

  10. #10690
    Vastico's Avatar Member
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sacred View Post
    17124 PTR offsets, untested.
    https://www.dropbox.com/s/nz8m19z4vq...sets_17124.xml
    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <Offsets>
    	<CurrentWoWVersion>17124</CurrentWoWVersion>  
    	<WoWVersionOffset>0xD8A635</WoWVersionOffset>
    	<PlayerName>0xFCF698</PlayerName>
    	<PlayerClass>0xFCF815</PlayerClass>
    	<GetCurrentKeyBoardFocus>0xCB2010</GetCurrentKeyBoardFocus>
    	<GameState>0xE70C6E</GameState>
    	<Lua_DoStringAddress>0x5C299</Lua_DoStringAddress>
    	<Lua_GetLocalizedTextAddress>0x47DAFF</Lua_GetLocalizedTextAddress>
    	<CVarBaseMgr>0xCA5540</CVarBaseMgr>
    	<CVarArraySize>0x400</CVarArraySize>
    	<ObjMgr>0xFCF658</ObjMgr>
    	<CurMgr>0x462C</CurMgr>
    	<LocalGUID>0xF0</LocalGUID>
    	<FirstObject>0xCC</FirstObject>
    	<NextObject>0x34</NextObject>
    	<Descriptors>0x4</Descriptors>
    	<Obj_TypeOffset>0xC</Obj_TypeOffset>
    	<Obj_X>0x828</Obj_X>
    	<Obj_TargetGUID>0x28</Obj_TargetGUID>
    	<ClickTerrain>0</ClickTerrain>
    </Offsets>
    Working thanks

  11. #10691
    mikeyd234's Avatar Sergeant
    Reputation
    9
    Join Date
    Oct 2012
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks Sacred, working fine.

    Can someone help me with a quick function to do the following:

    Check my focus is casting 'Launch Sawblade' if so send a raid warning command with who the target of the sawblade is? Make sense? Would have to check by cast name as unsure of which of the 4 spell ids it is.

    Then I can mod it and take it from there just for some PTR testing Thanks in advance

  12. #10692
    ozmodiar's Avatar Member
    Reputation
    13
    Join Date
    Oct 2012
    Posts
    41
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mikeyd234 View Post
    Thanks Sacred, working fine.

    Can someone help me with a quick function to do the following:

    Check my focus is casting 'Launch Sawblade' if so send a raid warning command with who the target of the sawblade is? Make sense? Would have to check by cast name as unsure of which of the 4 spell ids it is.

    Then I can mod it and take it from there just for some PTR testing Thanks in advance
    What SpellID is it? Wowhead has many: launch sawblade - Wowhead Search

    Edit: Nevermind you said you didn't know. I should have read the whole message.
    Last edited by ozmodiar; 07-01-2013 at 03:53 PM.

  13. #10693
    Nixo's Avatar Sergeant OldSchool CoreCoins Purchaser
    Reputation
    11
    Join Date
    Mar 2013
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    11 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanxx for PTR Offset

  14. #10694
    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 mikeyd234 View Post
    Thanks Sacred, working fine.

    Can someone help me with a quick function to do the following:

    Check my focus is casting 'Launch Sawblade' if so send a raid warning command with who the target of the sawblade is? Make sense? Would have to check by cast name as unsure of which of the 4 spell ids it is.

    Then I can mod it and take it from there just for some PTR testing Thanks in advance
    this should work tho i have not tested it:
    PHP Code:
    local Spell_list = { 144028143329143291143266143265 }
    for 
    i=1#Spell_list do
        
    if not UnitExists("focus"then return false end
        local castName 
    UnitCastingInfo("focus")
        
    local channelName UnitChannelInfo("focus")
        if 
    channelName ~= nil then
            
    --target is channeling a spell
            
    --load the channel variables into the cast variables to make logic a little easier.
            
    castName channelName
        end
        
    if PQ_LastSentRW == nil then PQ_LastSentRW 0 end
        
    if castName then
            
    if GetSpellInfo(Spell_list[i]) == castName and PQ_LastSentRW GetTime() then
                PQ_LastSentRW 
    GetTime() + 10 --only send out the msg every 10 seconds
                local unitname 
    GetUnitName("focus")
                
    local spellTarget GetUnitName("focustarget"
                --
    there is no way that i know of to get the target 
                
    --of a spell so we must assume that its their target!
                
    RunMacroText("/rw "..unitname.." is casting "..castName.." on "..spellTarget)
            
    end
        end
    end 
    the 5 ids included in the Spell_list are Launch Sawblade but you can add more spells to that list if you so desire and it will work. there is no way to tell the target of a casting spell so we must assume that the target is their target.

    let me know how this works and if you want anything added to it.
    - Paint


    EDIT: @osbornx22, not that i know of, tho you could try ignoring it after so many failed attempts until you get out of combat. i'm still somewhat new to PQR profiles but that is what i would do.
    Last edited by paintpauller; 07-02-2013 at 05:09 AM.

    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

  15. #10695
    osbornx22's Avatar Sergeant
    Reputation
    14
    Join Date
    Nov 2009
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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"
    Last edited by osbornx22; 07-02-2013 at 07:15 AM.

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 01:06 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