PQR - Rotation Bot menu

User Tag List

Page 474 of 779 FirstFirst ... 374424470471472473474475476477478524574 ... LastLast
Results 7,096 to 7,110 of 11681
  1. #7096
    Rubim's Avatar Contributor
    Reputation
    247
    Join Date
    Mar 2010
    Posts
    267
    Thanks G/R
    4/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ginostylez View Post
    Hey i'd GREATLY appreciate it if anyone can help with this,
    I am using Interrupt (Xelper) as a warrior, and every time i try to heroic leap (and demoralizing banner) when someone is trying to cast something not in range of me it spams pummel and makes my heroic leap green circle disappear every time i try and use it

    if anyone can help as to how i can fix this would be great!!!

    thanks
    You need to pause your rotation to be able to use "area spells", or it will be canceled.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/385569-pqr-death-knight-monk-tank-dps-profiles.html#post2582063

    PQR - Rotation Bot
  2. #7097
    Ginostylez's Avatar Member
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    crap so there is no way at all?

  3. #7098
    Ginostylez's Avatar Member
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    aside from pausing the bot :S

  4. #7099
    cassrgs's Avatar Master Sergeant Authenticator enabled
    Reputation
    9
    Join Date
    Oct 2011
    Posts
    90
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ginostylez View Post
    crap so there is no way at all?
    you could try to create a interrupt ability within your rotation with a range check for pummel and not use the default interrupt

    something like

    PHP Code:
    if UnitCastingInfo("target") and IsSpellInRange("Pummel""target") == 1 then
            CastSpellByName
    ("Pummel")
    return 
    true
        end 
    or try to edit the interrupt - initialize - and where it is

    PHP Code:
    elseif playerClass == "WARRIOR" then
                
    return 6552 
    you change for

    PHP Code:
    elseif playerClass == "WARRIOR" then
    if CheckInteractDistance("target"3) == 1 then
                
    return 6552
    end 

    this way it will only try to interrupt if in range so if its out of range it will do something else and wont break the aim for your leap
    Last edited by cassrgs; 12-21-2012 at 01:18 AM.

  5. #7100
    Ginostylez's Avatar Member
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ok so where do i add this code? im so confused with all of this lol :S

    there's either::
    -initialize-
    -- Variables: Interrupt --
    Interrupt (Arena)
    Interrupt (Focus)
    Interrupt (Target)

  6. #7101
    Rubim's Avatar Contributor
    Reputation
    247
    Join Date
    Mar 2010
    Posts
    267
    Thanks G/R
    4/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by deadpanstiffy View Post
    No matter what locale is used raid1 will always be raid1 and boss1 will always be boss1, is that correct?
    Exactly.

    10chars
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/385569-pqr-death-knight-monk-tank-dps-profiles.html#post2582063

  7. #7102
    cassrgs's Avatar Master Sergeant Authenticator enabled
    Reputation
    9
    Join Date
    Oct 2011
    Posts
    90
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @gino: just edited my previous post with some extra stuff

  8. #7103
    cassrgs's Avatar Master Sergeant Authenticator enabled
    Reputation
    9
    Join Date
    Oct 2011
    Posts
    90
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    heart of the phoenix

    So I created this ability to use on my hunter profile for when I have a ferocity pet and he dies to cast the pet "brez". but it doesnt work T.T

    PHP Code:
    if UnitExists("pet") ~= nil
    and UnitIsDead("pet"
    and 
    PQR_SpellAvailable(55709)
    and 
    IsSpellInRange(GetSpellInfo(55709))
    then return true
    end 
    What am I doing wrong?

  9. #7104
    Ginostylez's Avatar Member
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cassrgs View Post
    you could try to create a interrupt ability within your rotation with a range check for pummel and not use the default interrupt

    something like

    PHP Code:
    if UnitCastingInfo("target") and IsSpellInRange("Pummel""target") == 1 then
            CastSpellByName
    ("Pummel")
    return 
    true
        end 
    or try to edit the interrupt - initialize - and where it is

    PHP Code:
    elseif playerClass == "WARRIOR" then
                
    return 6552 
    you change for

    PHP Code:
    elseif playerClass == "WARRIOR" then
    if CheckInteractDistance("target"3) == 1 then
                
    return 6552
    end 

    this way it will only try to interrupt if in range so if its out of range it will do something else and wont break the aim for your leap

    okay i really appreciate you helping me but it still breaks it if its kind of close, how can i make it the most minimum distant to not break it? also will this work for all focus and target?

  10. #7105
    cassrgs's Avatar Master Sergeant Authenticator enabled
    Reputation
    9
    Join Date
    Oct 2011
    Posts
    90
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well since CheckInteractDistance("target", 3) its still around 10 yards you could try to use the function Firepong posted bellow to specify other distance value for your check

    http://www.ownedcore.com/forums/worl...ml#post2512291 (PQR - Rotation Bot)

  11. #7106
    myojinyahiko's Avatar Contributor
    Reputation
    106
    Join Date
    Jul 2006
    Posts
    450
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ginostylez View Post
    Hey i'd GREATLY appreciate it if anyone can help with this,
    I am using Interrupt (Xelper) as a warrior, and every time i try to heroic leap (and demoralizing banner) when someone is trying to cast something not in range of me it spams pummel and makes my heroic leap green circle disappear every time i try and use it

    if anyone can help as to how i can fix this would be great!!!

    thanks
    I can't get Xelper's Interrupt to work at all on any toon =(

  12. #7107
    Ginostylez's Avatar Member
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cassrgs View Post
    Well since CheckInteractDistance("target", 3) its still around 10 yards you could try to use the function Firepong posted bellow to specify other distance value for your check

    http://www.ownedcore.com/forums/worl...ml#post2512291 (PQR - Rotation Bot)
    okay , what exactly do i do with that code? and how do i implement it lol :S

  13. #7108
    cukiemunster's Avatar Contributor
    Reputation
    132
    Join Date
    Dec 2009
    Posts
    1,129
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by googlebee View Post
    Posting this once again for feedback.

    1) I have no way to test it (No lock)
    2) is the logic correct?


    This is a slightly edited version of what Bu came up with for me. (Thanks Bu!)

    Symbiosis - Warlock > Feral - Soul Swap

    PHP Code:
    local unit1 UnitExists("target")
    local unit2 UnitExists("focus")
    local EnemyHP 100 UnitHealth("target") / UnitHealthMax("target")

    if 
    unit1 and unit2 then
      
    -- If the current target has rake or rip we do nothing.
      if (
    UnitDebuffID("target",1822) or UnitDebuffID("target",1079)) then
        
    return false
      
    elseif UnitBuffID("player"SSBUFFIDthen
        CastSpellByName
    (GetSpellInfo(SS), "target")
        return 
    true
      end
      
    -- If the current focus has rake or riphealth check on targetcheck debuff on focuscheck cd on Soul Swap
    -- 
    check  that current target is not focus targetthen cast SS and set  target to new focus      
      
      
    if EnemyHP 20 
        
    and (UnitDebuffID("focus",1822
        or 
    UnitDebuffID("focus",1079)) 
        and 
    GetSpellCooldown(110810) == and  unit1 then    -- **checking that current target is NOT focus**  
        
    CastSpellByName(GetSpellInfo(110810), "target") -- Changed this to target as your checking focus for debuff to SS to target
          FocusUnit
    ("target")
          return 
    true  
      end
    end 
    Thanks much!

    -GB
    Bump for help with this, since I want/need this too lol

    Sent from my HTC EVO using Tapatalk 2

  14. #7109
    Rubim's Avatar Contributor
    Reputation
    247
    Join Date
    Mar 2010
    Posts
    267
    Thanks G/R
    4/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cassrgs View Post
    So I created this ability to use on my hunter profile for when I have a ferocity pet and he dies to cast the pet "brez". but it doesnt work T.T

    PHP Code:
    if UnitExists("pet") ~= nil
    and UnitIsDead("pet"
    and 
    PQR_SpellAvailable(55709)
    and 
    IsSpellInRange(GetSpellInfo(55709))
    then return true
    end 
    What am I doing wrong?
    I think UnitExists will be TRUE even if your pet is dead.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/385569-pqr-death-knight-monk-tank-dps-profiles.html#post2582063

  15. #7110
    cassrgs's Avatar Master Sergeant Authenticator enabled
    Reputation
    9
    Join Date
    Oct 2011
    Posts
    90
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Rubim View Post
    I think UnitExists will be TRUE even if your pet is dead.
    I believe the problem lies elsewhere since with those changes its working (more or less, gotta put more conditionals like range check and if its on combat)


    PHP Code:
    local Heartdebuff UnitDebuffID("player"55711)

    if 
    UnitExists("pet") ~= nil
    and UnitIsDead("pet") and not Heartdebuff
    then 
    CastSpellByName
    ("Heart of the Phoenix")
    return 
    true
    end 
    Probably if im using Cunning or tenacity pet the code will hang the rotation (since they dont have the spell and i didnt put a check for it)

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