PQR - Rotation Bot menu

User Tag List

Page 470 of 779 FirstFirst ... 370420466467468469470471472473474520570 ... LastLast
Results 7,036 to 7,050 of 11681
  1. #7036
    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)

    thanks for the heads up Snow - but i have nfc what to do with that. Perhaps I can ask Firepong for assistance , as this is primarily being made for his profile.

    So back to my original question. I guess PQR_UnitDistance is still causing major lag yes?

    thanks~

    -GB

    PQR - Rotation Bot
  2. #7037
    Helen536's Avatar Private
    Reputation
    1
    Join Date
    Dec 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I guessed that, but wonder if have something to do wth people getting execution errors with some addons or error comes from another source.
    Last edited by Helen536; 12-17-2012 at 02:24 AM.

  3. #7038
    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)
    @scyrnn: A little bit more information would be awesome. Make sure the Data file is in the Data folder and such.

  4. #7039
    firepong's Avatar Elite User
    Reputation
    384
    Join Date
    Jan 2008
    Posts
    955
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by googlebee View Post
    thanks for the heads up Snow - but i have nfc what to do with that. Perhaps I can ask Firepong for assistance , as this is primarily being made for his profile.

    So back to my original question. I guess PQR_UnitDistance is still causing major lag yes?

    thanks~

    -GB
    As far as I know, my custom PQR_UnitDistance() doesn't lag. Works with well to. Can find it in my Data File. Don't know if it works on bosses with big ass hit boxes though, never tried it on em.

    Sent from my SAMSUNG-SGH-I747 using Tapatalk 2

  5. #7040
    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)
    So this is what I have so far....honestly I am not sure if im even doing this correctly as an ability for Symbiosis (Never done multiple spells within 1 ability before)

    Please feel free to critique, as Im trying to polish this up.

    PHP Code:
    local _playerClass UnitClass("player")
    local catForm UnitBuffID("player"768)
    local unitguid = (UnitGUID("target") or 0)
    local EnemyHP 100 UnitHealth("target") / UnitHealthMax("target")
    local PlayerHP 100 UnitHealth("player") / UnitHealthMax("player")            

    if 
    playerClass == "DRUID" then
    -- The Following 5 spells are for Feral Druids:
    if 
    catForm ~= nil then
    -- Feral Spirit Wolves (From Shaman)
    if 
    IsSpellKnown(110807) and UnitBuffID("Player",108381) and GetSpellCooldown(110807) == 0 then
       CastSpellByName
    (tostring(GetSpellInfo(110807)))
    -- 
    Soul Swap (From Warlocks)
    elseif 
    IsSpellKnown(110810then    
        
    if unitguid ~= UnitGUID("target"then
        unitguid 
    UnitGUID("target"
        if 
    EnemyHP 25 and (not UnitDebuffID("target",1822) or not UnitDebuffID("target",1079)) and
        
    GetSpellCooldown(110810) == 0 then
        CastSpellByName
    (tostring(GetSpellInfo(110810)))    
            return 
    true
        
    elseif unitguid == nil then
            
    return false
        end
    -- Redirect (From Rogues)
    -- if 
    IsSpellKnown(110730)
    -- 
    Death Coil (From Deathknights)
    -- if 
    IsSpellKnown(122282)
    -- 
    Shattering Blow (From Warriors)
    -- if 
    IsSpellKnown(112997)
    -- 
    Divine Shield (From Paladins)
    -- if 
    IsSpellKnown(110700
    Still adding more as time permits, to eventually have this complete for all classes/specs

    thanks!

    -GB

    ** Edit 2 - IsSpellKnown does not work with SYmbiosis for the record. It simply locks up the entire profile. GetSpellInfo works fine.
    Last edited by googlebee; 12-18-2012 at 06:40 AM. Reason: IsSpellKnown doesnt work for Symbiosis

  6. #7041
    HikenNoAce's Avatar Banned
    Reputation
    1
    Join Date
    Dec 2012
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    gona test it out

  7. #7042
    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 Roxor77 View Post
    KickMyDog i have been trying your survival profile, During Lei Shi, Terrace of Endless Spring, During the Adds phase, it wont attack the adds on single target survival profile, not sure whats wrong with it...
    Remove the feign death pause, That is the problem. I will have a fix for it shortly.
    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

  8. #7043
    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 googlebee View Post
    So this is what I have so far....honestly I am not sure if im even doing this correctly as an ability for Symbiosis (Never done multiple spells within 1 ability before)

    Please feel free to critique, as Im trying to polish this up.

    Still adding more as time permits, to eventually have this complete for all classes/specs

    thanks!

    -GB
    Now I could be completely wrong, but as long as you record what class you put it on, shouldn't you still be able to just go, if SavedClass == "ROGUE" then .... elseif SavedClass == "DEATHKNIGHT" then ... end

    and just use the base spellid with CastSpellByName?

    seems simpler that way. Was thinking about undertaking this project soon myself, but there's no way i would ever automate who it goes to haha

    your way may be better for if they cast is with the profile off tho

    And for something like this.... IsPlayerSpell should definitely be used, IsSpellKnown is how you find the base spellid, IsPlayerSpell triggers true on morphed as well.
    ^0^Team Nova's PQR NCC ^0^

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

  9. #7044
    expunge's Avatar Knight-Lieutenant
    Reputation
    17
    Join Date
    Nov 2011
    Posts
    226
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sovietpanda View Post
    I have a couple of questions that I would like to ask.
    1. How come you don't support 64bit? I understand that it would require a change in the code and all that jazz, but there are A LOT more people that use 64bit windows as apposed to 32bit. (Also on a side note, I can't use this program and tmorph at the same time :'(
    2. That being said, are there any other alternatives for a 64bit version of wow? Or any plans to create a 64 bit version of this program?
    1. The program supports 64bit windows, it doesn't support the 64 bit client. Oh no, not tmorph!
    2. The 32 bit version of wow works just fine.

  10. #7045
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @googlebee: UnitGUID("target") will always return nil (never 0) if you do not have a target, unless you use:

    local targetGUID = UnitGUID("target") or 0
    if targetGUID == 0 then
    --we have no target
    end

    however that is also identical to:
    local targetGUID = UnitGUID("target")
    if targetGUID == nil then
    --we have no target
    end

    For the Symbiosis question, you can probably do something like this:

    Obviously this is not all you need, you need to make sure the spell is off CD, etc... but it should at least get you close to be able to detect what class and what spell ID to use... and how to use it.

    Code:
    local playerSymb = UnitBuffID("player", 110309)
    if PQ_SymbUnit == nil then
        PQ_SymbUnit = ""
    end
    local unitSymb = UnitBuffID(PQ_SymbUnit, 110309, "PLAYER")
    if playerSymb ~= nil and unitSymb == nil then
        for i=1,40 do
            local unitCheck = "raid"..i
            if UnitExists(unitCheck) then
                local symbiosis = UnitBuffID(unitCheck, 110309, "PLAYER")
                if symbiosis then
                    PQ_SymbUnit = unitCheck
                    break
                end
            end
        end
    end
    
    
    if UnitExists(PQ_SymbUnit) then
        local _, unitClass = UnitClass(PQ_SymbUnit)
        if unitClass == "PALADIN" then
            PQ_SymbSpellID =  Spell ID here
        else if targetClass == "PRIEST" then
            PQ_SymbSpellID = Spell ID here
        end
    CastSpellByName(GetSpellInfo(PQ_SymbSpellID))
    end
    Last edited by Xelper; 12-17-2012 at 12:40 PM.

  11. #7046
    rovillien's Avatar Sergeant
    Reputation
    17
    Join Date
    May 2011
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by chk View Post
    If somebody wants to make me a pvp 70 sub rogue rotation I'd be happy to pay them for their efforts.
    try sheuron's old 4.3.4 profile and also blinded's old pve profile ( i switch between those two because sheurons has more survive ability and cc and blinded has the insane burst down) so if your with a healer go blinded if your goin with a dps go sheuron's

    Ps: if you cant find it in the old posts i can try to .rar mine and upload it

  12. #7047
    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)
    Originally Posted by Xelper View Post
    @googlebee: UnitGUID("target") will always return nil (never 0) if you do not have a target, unless you use:

    local targetGUID = UnitGUID("target") or 0
    if targetGUID == 0 then
    --we have no target
    end

    however that is also identical to:
    local targetGUID = UnitGUID("target")
    if targetGUID == nil then
    --we have no target
    end

    For the Symbiosis question, you can probably do something like this:

    Obviously this is not all you need, you need to make sure the spell is off CD, etc... but it should at least get you close to be able to detect what class and what spell ID to use... and how to use it.

    Code:
    local playerSymb = UnitBuffID("player", 110309)
    if PQ_SymbUnit == nil then
        PQ_SymbUnit = ""
    end
    local unitSymb = UnitBuffID(PQ_SymbUnit, 110309, "PLAYER")
    if playerSymb ~= nil and unitSymb == nil then
        for i=1,40 do
            local unitCheck = "raid"..i
            if UnitExists(unitCheck) then
                local symbiosis = UnitBuffID(unitCheck, 110309, "PLAYER")
                if symbiosis then
                    PQ_SymbUnit = unitCheck
                    break
                end
            end
        end
    end
    
    
    if UnitExists(PQ_SymbUnit) then
        local _, unitClass = UnitClass(PQ_SymbUnit)
        if unitClass == "PALADIN" then
            PQ_SymbSpellID =  Spell ID here
        else if targetClass == "PRIEST" then
            PQ_SymbSpellID = Spell ID here
        end
    CastSpellByName(GetSpellInfo(PQ_SymbSpellID))
    end
    tyvm for clearing that up Xelper, and Bu_.

    The Code you linked above Xelper looks as if your also automating casting of Symbiosis on a player, which I do not want to do. There are plenty of adons to help people with casting Symbiosis. I only want to automate the use of said symbiosis spell under said conditions.

    I guess my confusion still lies within GUID. When you say we have no target, ( if targetGUID == 0 or Nil ) you mean there is no target selected yes? What also needs to be checked is if there was a previous target after we have selected a new target. hence the automation of Soul Swap being triggered. I dont want Soul Swap to trigger if i have a target with no previous target. If that makes sense.

    The reason for using Soul Swap is to reapply the existing Rake and Rip from your previous target to your new one. So naturally if i was to engage a boss and have it as a *Target* I dont want Soul Swap to trigger at that point unless of course i had Rake and Rip on a previous target prior to having the boss targetted.

    The only way I can see this working is by using Focus, once you have switched target, and target is not Focus, check focus for Rake and Rip, if present - cast Soul Swap on new target. The problem is this is a one way trip. It would be nice to be able to use it both ways. But unless your updating your focus after each Soul Swap is triggered....hmm. Perhaps that could work? Is it possible to have PQR Set a target to Focus after an action?

    -GB

  13. #7048
    luckysurfcs's Avatar Member
    Reputation
    2
    Join Date
    Apr 2010
    Posts
    85
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is there a prot pally profile knocking about?

  14. #7049
    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)

  15. #7050
    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 googlebee View Post
    tyvm for clearing that up Xelper, and Bu_.

    The Code you linked above Xelper looks as if your also automating casting of Symbiosis on a player, which I do not want to do. There are plenty of adons to help people with casting Symbiosis. I only want to automate the use of said symbiosis spell under said conditions.

    I guess my confusion still lies within GUID. When you say we have no target, ( if targetGUID == 0 or Nil ) you mean there is no target selected yes? What also needs to be checked is if there was a previous target after we have selected a new target. hence the automation of Soul Swap being triggered. I dont want Soul Swap to trigger if i have a target with no previous target. If that makes sense.

    The reason for using Soul Swap is to reapply the existing Rake and Rip from your previous target to your new one. So naturally if i was to engage a boss and have it as a *Target* I dont want Soul Swap to trigger at that point unless of course i had Rake and Rip on a previous target prior to having the boss targetted.

    The only way I can see this working is by using Focus, once you have switched target, and target is not Focus, check focus for Rake and Rip, if present - cast Soul Swap on new target. The problem is this is a one way trip. It would be nice to be able to use it both ways. But unless your updating your focus after each Soul Swap is triggered....hmm. Perhaps that could work? Is it possible to have PQR Set a target to Focus after an action?

    -GB
    FocusUnit()

    To impliment smartcasting of soulswap you will need to parse combatlog events,no other way so far,or atleast others are even more complicated.If not then just use soulswap from target to focus if you have focus or soulswap on target if no focus and have soulswap buff.
    Last edited by Valma; 12-18-2012 at 02:46 AM.
    MEDVED+VODKA+BALALAYKA

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 12:08 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