PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 135 of 779 FirstFirst ... 3585131132133134135136137138139185235635 ... LastLast
Results 2,011 to 2,025 of 11681
  1. #2011
    kclux's Avatar Active Member
    Reputation
    16
    Join Date
    Jun 2011
    Posts
    199
    Thanks G/R
    2/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have a problem with a piece of code to return flags in BG's. The original code was without a range check, resulting in some weird behavior once you started to get into 40 yards or so range of any flag. I am trying to add a melee range check but I am failing. This is what I have now:

    Code:
    local flag = { "Alliance Flag", "Horde Flag", "Netherstorm Flag" }
    
    for _,v in ipairs(flag) do 
    	if CheckInteractDistance (v, 3) then 
    		InteractUnit(v) 
    	end
    end
    Tried several thing but I cannot make it work. Right now like this, it is doing nothing I hope someone can tell me what I am ****ing up here.

    PQR - Rotation Bot
  2. #2012
    Fumi's Avatar Contributor CoreCoins Purchaser
    Reputation
    207
    Join Date
    Feb 2008
    Posts
    561
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi guys, i would like to "try" to code a profile to MOP Balance Druids, i dont know anything about coding in PQR (only seen what you guys post) if anyone wanna teach me/help me out please PM me

  3. #2013
    sheuron's Avatar Knight-Champion
    Reputation
    319
    Join Date
    Aug 2011
    Posts
    504
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kclux View Post
    I have a problem with a piece of code to return flags in BG's. The original code was without a range check, resulting in some weird behavior once you started to get into 40 yards or so range of any flag. I am trying to add a melee range check but I am failing. This is what I have now:

    Code:
    local flag = { "Alliance Flag", "Horde Flag", "Netherstorm Flag" }
    
    for _,v in ipairs(flag) do 
    	if CheckInteractDistance (v, 3) then 
    		InteractUnit(v) 
    	end
    end
    Tried several thing but I cannot make it work. Right now like this, it is doing nothing I hope someone can tell me what I am ****ing up here.
    CheckInteractDistance only works with players, monsters and npcs
    [ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
    If you like this piece of code feel free to invite me a beer making a donation.
    My paypal account: [email protected]

  4. #2014
    kclux's Avatar Active Member
    Reputation
    16
    Join Date
    Jun 2011
    Posts
    199
    Thanks G/R
    2/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    CheckInteractDistance only works with players, monsters and npcs
    Ah ok thanks, to bad but that explains it. Guess no way then to use it since being drawn to the flag when there are still walls between you and it doesnt really work lol.

  5. #2015
    sheuron's Avatar Knight-Champion
    Reputation
    319
    Join Date
    Aug 2011
    Posts
    504
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You can save a variable GetTime() when you target a player with flag buff.

    If you miss that target you can spam InteractUnit for next 10 seconds.
    [ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
    If you like this piece of code feel free to invite me a beer making a donation.
    My paypal account: [email protected]

  6. #2016
    kclux's Avatar Active Member
    Reputation
    16
    Join Date
    Jun 2011
    Posts
    199
    Thanks G/R
    2/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    You can save a variable GetTime() when you target a player with flag buff.

    If you miss that target you can spam InteractUnit for next 10 seconds.
    The problem is that for example when you get close to the enemy flagroom, you will get drawn to the flag like a magnet and you get stuck at a wall or so not being able to do anything until you deactivate PQR. That is why I was trying to check if I am close to the flag.

  7. #2017
    deadpanstiffy's Avatar Knight-Lieutenant
    Reputation
    158
    Join Date
    Mar 2012
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kclux View Post
    I have a problem with a piece of code to return flags in BG's. The original code was without a range check, resulting in some weird behavior once you started to get into 40 yards or so range of any flag. I am trying to add a melee range check but I am failing. This is what I have now:

    Code:
    local flag = { "Alliance Flag", "Horde Flag", "Netherstorm Flag" }
    
    for _,v in ipairs(flag) do 
    	if CheckInteractDistance (v, 3) then 
    		InteractUnit(v) 
    	end
    end
    Tried several thing but I cannot make it work. Right now like this, it is doing nothing I hope someone can tell me what I am ****ing up here.
    I use an ability that spams it in an interrupt profile. I have never had a problem or report from blizzard for around 3 months so far. You can detect flag position, but you will also need to check the combat log to check who has the flag on the enemy team and if you are in range of that person, etc...

    Code:
    if UnitInBattleground("player") then
    	InteractUnit("Horde Flag")
    	if not UnitBuff("player","Alliance Flag") then
    		InteractUnit("Alliance Flag")
    	end
    end

  8. #2018
    sheuron's Avatar Knight-Champion
    Reputation
    319
    Join Date
    Aug 2011
    Posts
    504
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kclux View Post
    The problem is that for example when you get close to the enemy flagroom, you will get drawn to the flag like a magnet and you get stuck at a wall or so not being able to do anything until you deactivate PQR. That is why I was trying to check if I am close to the flag.
    Try disabling click to move.
    [ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
    If you like this piece of code feel free to invite me a beer making a donation.
    My paypal account: [email protected]

  9. #2019
    parabol1352's Avatar Active Member
    Reputation
    20
    Join Date
    Feb 2012
    Posts
    65
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    could anyone direct me to the best fire mage pqr profile please? ive tried looking through the thread but i cant see anything posted :/

    would be greatly appreciated and thanks in advance.

  10. #2020
    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 parabol1352 View Post
    could anyone direct me to the best fire mage pqr profile please? ive tried looking through the thread but i cant see anything posted :/

    would be greatly appreciated and thanks in advance.
    Look on the first page. It's all I will say on the matter. You obviously didn't look close enough.

  11. #2021
    lostwalker's Avatar Member
    Reputation
    2
    Join Date
    Sep 2008
    Posts
    103
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Crystal_Tech's old Warlock AoE Profile.

    Does anyone still have this older file, was back before 2012, it was a stand alone Demo AoE profile. I had it but lost it when my computer crashed. =(

  12. #2022
    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)
    Will have the beta offsets out tomorrow sometime... I have them mostly done, but servers aren't up so I can't test out the object manager offsets.

  13. #2023
    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 lostwalker View Post
    Crystal_Tech's old Warlock AoE Profile.

    Does anyone still have this older file, was back before 2012, it was a stand alone Demo AoE profile. I had it but lost it when my computer crashed. =(
    man thats old lol i've pm'd ya about it. if anyone is wondering where to get it grab the pqr for 3.3.5 in the first post lots of old stuff there.

    Please if someone helped you donate rep to them.

  14. #2024
    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 firepong View Post
    Look on the first page. It's all I will say on the matter. You obviously didn't look close enough.
    Me thinks Firepong is getting irritated by lazy people.
    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

  15. #2025
    dklcfr's Avatar Master Sergeant
    Reputation
    26
    Join Date
    Aug 2010
    Posts
    127
    Thanks G/R
    3/4
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    [sarcasm]Hey can anyone tell me where i can download pqr, i've searched the entire thread and cant find anything[/sarcasm]

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 09:27 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