PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 6 of 116 FirstFirst ... 234567891056106 ... LastLast
Results 76 to 90 of 1739
  1. #76
    Kinkeh's Avatar Established Member
    Reputation
    243
    Join Date
    Jan 2012
    Posts
    450
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Paszo View Post
    I need assistance! I'm a fellow warrior looking for someone to fix this profile I use. I'm trying to get it to use Stormbolt when Colossus Smash debuff is up. If anyone knows how to do that please PM me!
    Code:
    local CS = select(7,UnitDebuffID("target",86346,"player"))
    
    if not IsPlayerSpell(107570) then return false end -- We don't have Storm Bolt talented.
    if not CS then return false end -- Our target doesn't have Colossus Smash.
    
    if PQR_SpellAvailable(107570) then -- If Storm Bolt is available.
       CastSpellByName(GetSpellInfo(107570),"target") return true
    end
    Should work as you want it.
    Last edited by Kinkeh; 09-19-2013 at 05:39 PM.

    PQR - Rotation Bot
  2. #77
    Paszo's Avatar Member
    Reputation
    3
    Join Date
    Mar 2013
    Posts
    60
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Where do I place it?

  3. #78
    Kinkeh's Avatar Established Member
    Reputation
    243
    Join Date
    Jan 2012
    Posts
    450
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Paszo View Post
    Where do I place it?
    Well, you could find the storm bolt ability in the profile if it has one or create a new ability, paste that code, save it then go into the rotation list and place it bellow colossus smash.

  4. #79
    larrybyrdy's Avatar Member
    Reputation
    2
    Join Date
    Mar 2011
    Posts
    61
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    64 Bit PQR would be ****in awesome. WoW could take better advantage of my hardware in raids when I run into laggy situations. We can dreaaaam

  5. #80
    DarkMassacre's Avatar Contributor
    Reputation
    87
    Join Date
    Apr 2009
    Posts
    141
    Thanks G/R
    9/21
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Question: Does pqr insert strings into say the chat box to execute them? I am wondering for 1: about a week ago I killed a rare and I hit a macro on my mouse wrong or something, my chat box opened and while I wasnt hitting any buttons numbers like 345345*242342(4646456)*45646464 were being spammed in the chat box.

    I'm also wondering for example say you use pqr sometimes for pve but dont use it other times for pvp but some random person is QQ from your server because they lost and threatening to report you for botting when yo u actually werent RL or say death threats someone sent you or someone else if the gm's went back o look at the chat log if they would see Pqr strings.

    Also one thing I thought about, since they now force 64 bit systems to run 64 bit clients couldnt they do a cross check of who has a 64 bit system and using a 32 bit client and then just inspect all of the, for botting? I mean the average user wouldnt bother to change 64 bit back to 32 bit ...
    Last edited by DarkMassacre; 09-20-2013 at 12:58 AM.

  6. #81
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    No PQR-strings doesnt write to the chat, only locally where only you can see it and nobody else. No need to worry

    Also I doubt they wanna **** over all subscribers that still play on a 32-bit only OS
    Last edited by Ninjaderp; 09-20-2013 at 04:19 AM.

  7. #82
    Sheriffs's Avatar Member
    Reputation
    2
    Join Date
    Jan 2013
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can someone help me out? I need a code to re-target and re-focus, if my target and focus drops... Something like this:

    local lasttarget = GetUnitName("target")
    local lastfocus = GetUnitName("focus")

    if not UnitExists("target")
    then
    if UnitExists(lasttarget)
    and not UnitIsDeadOrGhost(lasttarget)
    then
    RunMacroText("/tar "..lasttarget)
    end
    end
    if not UnitExists("focus")
    then
    if UnitExists(lastfocus)
    and not UnitIsDeadOrGhost(lastfocus)
    then
    RunMacroText("/focus "..lastfocus)
    end
    end

    It doesn't work... but how to resolve this? ty in advance.

  8. #83
    julfo's Avatar Corporal
    Reputation
    2
    Join Date
    Dec 2011
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sheriffs View Post
    Can someone help me out? I need a code to re-target and re-focus, if my target and focus drops... Something like this:

    local lasttarget = GetUnitName("target")
    local lastfocus = GetUnitName("focus")

    if not UnitExists("target")
    then
    if UnitExists(lasttarget)
    and not UnitIsDeadOrGhost(lasttarget)
    then
    RunMacroText("/tar "..lasttarget)
    end
    end
    if not UnitExists("focus")
    then
    if UnitExists(lastfocus)
    and not UnitIsDeadOrGhost(lastfocus)
    then
    RunMacroText("/focus "..lastfocus)
    end
    end

    It doesn't work... but how to resolve this? ty in advance.
    Try this:
    Code:
    --Target
    if not lasttarget then
    	lasttarget = "none"
    end
    if UnitExists("target") and lasttarget ~= UnitName("target") then
     	lasttarget = UnitName("target")
    end
    if not UnitIsDeadOrGhost(lasttarget) and not UnitExists("target") then
    	RunMacroText("/tar " .. lasttarget)
    end
    --Focus
    if not lastfocus then
    	lastfocus = "none"
    end
    if UnitExists("focus") and lastfocus ~= UnitName("focus") then
    	lastfocus = UnitName("focus")
    end
    if not UnitIsDeadOrGhost(lastfocus) and not UnitExists("focus") then
    	RunMacroText("/focus " .. lastfocus)
    end

  9. #84
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Something I see in several profiles is keybinds conflicting with each other, like the warrior-profile I use for instance: It uses Heroic Leap on left ctrl, and I've set it to use demoralizing banner on right-alt. Now when I press right-alt it also uses Heroic Leap. I have the same issue when I use Vachiusas PQI Disc-profile, it has Mass Dispell on right-alt and Power Word: Barrier on left-ctrl. When I press right-alt it uses both of those.

    Anyways gonna check the ability editor to see if I can find something ^^

  10. #85
    Muhammad.R1's Avatar Member
    Reputation
    13
    Join Date
    Mar 2009
    Posts
    60
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Could someone please help me?
    I've searched constantly throughout this forums for people experiencing similar problems and there's no solution stated that works..

    The thing is , whenever I alt+tab out of wow and if I open my browser (IE/Chrome/Opera/Any), PQR and WoW become unresponsive and I am unable to go back in game .. It just like freezes? And then I have to bring up the task manager to close the programs.

    Even if I go back to WoW , nothing happens , it just does not load and I don't receive any errors.
    I think it has something to do with memory regarding PQR? That shouldn't be a problem though because i have 16 GB ram.

    Any help would be much appreciated!

    Thank you

  11. #86
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Make sure you play in windowed-full screen mode.

  12. #87
    Mavmins's Avatar Contributor
    Reputation
    165
    Join Date
    Oct 2012
    Posts
    606
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is there a way to check if mr target can be disarmed ? im only missing a couple of things for my Prot Warrior to be finished and I was curious about this ability and how to check it

  13. #88
    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 Mavmins View Post
    is there a way to check if mr target can be disarmed ? im only missing a couple of things for my Prot Warrior to be finished and I was curious about this ability and how to check it
    Just use it, if it is immune then blacklist. Combat is over, clear blacklist.

  14. #89
    Mavmins's Avatar Contributor
    Reputation
    165
    Join Date
    Oct 2012
    Posts
    606
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    That would work for single target boss fights but not out in the world or trash etc

  15. #90
    julfo's Avatar Corporal
    Reputation
    2
    Join Date
    Dec 2011
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ninjaderp View Post
    Something I see in several profiles is keybinds conflicting with each other, like the warrior-profile I use for instance: It uses Heroic Leap on left ctrl, and I've set it to use demoralizing banner on right-alt. Now when I press right-alt it also uses Heroic Leap. I have the same issue when I use Vachiusas PQI Disc-profile, it has Mass Dispell on right-alt and Power Word: Barrier on left-ctrl. When I press right-alt it uses both of those.

    Anyways gonna check the ability editor to see if I can find something ^^
    I believe (but not 100% certain) that this is due to the way windows handles pressing the right alt key... If I remember correctly, Alt Gr (the right alt key) actually does the same thing as pressing ctrl+alt together. At least where input is concerned.

Page 6 of 116 FirstFirst ... 234567891056106 ... LastLast

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. [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
  3. rotation bot leveling (PQR)
    By classdog in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 09-17-2013, 06:13 PM
  4. [Release] PQR - Rotation Bot
    By Xelper in forum World of Warcraft Bots and Programs
    Replies: 11680
    Last Post: 09-16-2013, 07:47 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:43 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