PQR - Rotation Bot menu

User Tag List

Page 467 of 779 FirstFirst ... 367417463464465466467468469470471517567 ... LastLast
Results 6,991 to 7,005 of 11681
  1. #6991
    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)
    Hey guys! I've started feeling a lot better now so I'm doing some heavy testing on Frost, Fire and Arcane before updating them. Just need to run through LFR a couple of times and do some tweaks. I know about Fire on Elegon already and working on a fix for the Power Sparks. =)

    I updated Shadow Priest and Demonology Warlock already with a few fixes to Fire so they should all be playable now, I also synchronized their key toggles and such so when using my profiles you won't have to learn different toggles or keybindings for every profile. :P

    Hopefully Arcane and Frost goes fast.

    PQR - Rotation Bot
  2. #6992
    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)
    Wb Mentally.

    If anyone can help me with this id appreciate it.

    Trying to get Symbiosis Soul Swap to cast when switching target and Rake or Rip is not present on target. I have the spell id set on the left, with recast delay of 3000 (30 seconds) with set at Target.

    PHP Code:
    local EnemyHP 100 UnitHealth("target") / UnitHealthMax("target")
    local rkDot UnitDebuffID("target"1822)
    local rpDot UnitDebuffID("target"1079)

    if 
    unitguid ~= unitguid then
     
    if EnemyHP 50 and not rkDot and not rpDot then
      
    return true
     end
    end 
    I assume this is just all wrong. As its not working lol.
    Last edited by googlebee; 12-15-2012 at 12:57 PM.

  3. #6993
    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)
    I'm guessing you're not setting the Unit GUID correctly.
    PHP Code:
    local unitguid = (UnitGUID("target") or 0)
    local EnemyHP 100 UnitHealth("target") / UnitHealthMax("target")

    if 
    unitguid ~= UnitGUID("target") or unitguid == 0 then
        unitguid 
    UnitGUID("target")
        if 
    EnemyHP 50 and (not UnitDebuffID("target",1822) or not UnitDebuffID("target",1079)) then
            
    return true
        end
    end 
    Try that. Basically; If the current GUID isn't the same as the last unit GUID or if the last unit GUID is 0 (You had no previous target), it'll continue to check if the Enemy has more than 50% health and if Rake or Rip isn't present, it'll cast the ability on the target
    Last edited by Kinky; 12-15-2012 at 02:52 PM.

  4. #6994
    lawlmoto's Avatar Active Member
    Reputation
    20
    Join Date
    Feb 2008
    Posts
    122
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by solva View Post
    i was wondering how many users approximately use PQR? Is there any record of downloads or an estimation based somewhere?

    The reason I am asking this is because sometimes someone outdps me in a long arena without having better gear. Since my rotation should be optimal using PQR should I assume that the said person also uses PQR?
    I'm guessing 15-30k based on profile downloads etc.

    Sent from my Galaxy Nexus using Tapatalk 2

  5. #6995
    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)
    still stuck and help would be much appreciated! thanks in advance =D


    Originally Posted by paintpauller View Post
    if any idea why this code is not working? all it does is freeze up the game.

    PHP Code:
    if PQR_InterruptStarted then
        PQR_InterruptStarted 
    false
        
            local TimeElasped 
    0.000
            local TimeStart 
    GetTime()
            
            while 
    TimeElasped 2.000 do
                
    TimeElasped GetTime() - TimeStart
                PQR_WriteToChat
    ("TimeStart")
                
    PQR_WriteToChat(TimeStart)
                
    PQR_WriteToChat("TimeElasped")
                
    PQR_WriteToChat(TimeElasped)
            
    end
    end 
    any help would be great, also a example of a working while loop would be much help.

  6. #6996
    munccu's Avatar Active Member
    Reputation
    22
    Join Date
    Mar 2008
    Posts
    146
    Thanks G/R
    1/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does this bot work as AFK bot? Haven't been able to find out working AFK bot.

  7. #6997
    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 munccu View Post
    Does this bot work as AFK bot? Haven't been able to find out working AFK bot.
    yes it does

  8. #6998
    abndrew82's Avatar Active Member
    Reputation
    17
    Join Date
    Jan 2008
    Posts
    162
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does this bot work as AFK bot? Haven't been able to find out working AFK bot.
    What do you mean afk bot, it will stop you from going AFK, but wont do anything really for you while your away. It is just for handling your rotation while you move your character.

  9. #6999
    Discipline's Avatar Contributor ALADEEN MOTHERFUCKER! CoreCoins Purchaser
    Reputation
    128
    Join Date
    Dec 2007
    Posts
    253
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by paintpauller View Post
    if any idea why this code is not working? all it does is freeze up the game.

    PHP Code:
    if PQR_InterruptStarted then
        PQR_InterruptStarted 
    false
        
            local TimeElasped 
    0.000
            local TimeStart 
    GetTime()
            
            while 
    TimeElasped 2.000 do
                
    TimeElasped GetTime() - TimeStart
                PQR_WriteToChat
    ("TimeStart")
                
    PQR_WriteToChat(TimeStart)
                
    PQR_WriteToChat("TimeElasped")
                
    PQR_WriteToChat(TimeElasped)
            
    end
    end 
    any help would be great, also a example of a working while loop would be much help.
    1st - what is the purpose of the code
    2nd - you are turning PQR_InterruptStarted everytime its on.

  10. #7000
    Beelzix's Avatar Member
    Reputation
    1
    Join Date
    Jun 2011
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ty will rewrite to check it out
    Originally Posted by paintpauller View Post
    Avery's flag code
    PHP Code:
    -- Pvp Flag
    local flag 
    = { "Alliance Flag""Horde Flag""Netherstorm Flag" }

    for 
    i=1,#flag do 
        
    InteractUnit(flag[i])
    end 
    edit the local to what you want, have fun. =D

  11. #7001
    munccu's Avatar Active Member
    Reputation
    22
    Join Date
    Mar 2008
    Posts
    146
    Thanks G/R
    1/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by abndrew82 View Post
    What do you mean afk bot, it will stop you from going AFK, but wont do anything really for you while your away. It is just for handling your rotation while you move your character.
    I mean, can this program make my character from going AFK while searching for like aeonaxx?

  12. #7002
    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 D1sc1pl1n3 View Post
    1st - what is the purpose of the code
    2nd - you are turning PQR_InterruptStarted everytime its on.
    to delay some code for x amount of seconds in this case 2 seconds. its a Interrupt profile so yes i am, just using that to only run the code once. the PQR_WriteToChat is just for testing to see y it wasnt working and wont be there when i get it to work.

  13. #7003
    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)
    @paintpauller: You can do something like this:
    Code:
    if PQR_InterruptStarted then
    	PQR_InterruptStarted = false
    	
    	local Start = GetTime()
    	
    	if Start - GetTime == 2 then
    		PQR_WriteToChat("Two seconds elapsed.")
    	end
    	
    	if Start - GetTime >= then
    		PQR_WriteToChat("Two seconds or more have elapsed.")
    	end
    end
    unix timestamp of the start time subtracted from the current unix timestamp is the time difference in seconds.
    I made a couple of examples. Exactly 2 seconds, or 2 seconds or more.

  14. #7004
    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 mentally View Post
    I'm guessing you're not setting the Unit GUID correctly.
    PHP Code:
    local unitguid = (UnitGUID("target") or 0)
    local EnemyHP 100 UnitHealth("target") / UnitHealthMax("target")

    if 
    unitguid ~= UnitGUID("target") or unitguid == 0 then
        unitguid 
    UnitGUID("target")
        if 
    EnemyHP 50 and (not UnitDebuffID("target",1822) or not UnitDebuffID("target",1079)) then
            
    return true
        end
    end 
    Try that. Basically; If the current GUID isn't the same as the last unit GUID or if the last unit GUID is 0 (You had no previous target), it'll continue to check if the Enemy has more than 50% health and if Rake or Rip isn't present, it'll cast the ability on the target
    Tyvm Mentally, Ill test it out in a bit here. I have never worked with GUID before, as crystal_tech pointed me in the right direction, I couldn't find any pertinent examples in the wowapi either ><

    I'll need to change that so it isn't returning true if I had no previous target (Kinda need to have had one with rake and rip on it to soul swap) - otherwise awesome!

    anyhow thanks! ill let u know how it works

    *Edit*

    Not working ..(Will this not work on a raiders dummy?)

    this is what i changed:

    PHP Code:
    local unitguid = (UnitGUID("target") or 0)
    local EnemyHP 100 UnitHealth("target") / UnitHealthMax("target")

    if 
    unitguid ~= UnitGUID("target"then
        unitguid 
    UnitGUID("target")
        if 
    EnemyHP 50 and (not UnitDebuffID("target",1822) or not UnitDebuffID("target",1079)) then
            
    return true
        
    elseif unitguid == 0
            
    return false
        end
     end
    end 
    Also can I just use castspellbyname and getspellcooldown instead of using the box on the lower left for recast delay and spell id? Or will that not work since i cannot skip unknown and this is only a spell obtainable when symbiosis is cast on the particular class.

    I want to do this for all class symbiosis combinations, so if that's possible then awesome.

    *Edit 2 - apparently you cannot use the lower left box for symbiosis. When i added in castbyspellname instead, it works. (Tested with Feral Spirit Wolves from shaman) I have yet to test this revision for Soul Swap as I dont have a lock to give symbiosis to.
    Last edited by googlebee; 12-15-2012 at 11:30 PM.

  15. #7005
    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)
    cold some1 let me know how to use
    PHP Code:
    PQR_DelayRotation() 
    when ever i try to use it it doesnt look like its doing anything even at 20 seconds it still not noticeable.

    Originally Posted by mentally View Post
    @paintpauller: You can do something like this:
    Code:
    if PQR_InterruptStarted then
    	PQR_InterruptStarted = false
    	
    	local Start = GetTime()
    	
    	if Start - GetTime == 2 then
    		PQR_WriteToChat("Two seconds elapsed.")
    	end
    	
    	if Start - GetTime >= then
    		PQR_WriteToChat("Two seconds or more have elapsed.")
    	end
    end
    unix timestamp of the start time subtracted from the current unix timestamp is the time difference in seconds.
    I made a couple of examples. Exactly 2 seconds, or 2 seconds or more.
    i have made the following changes to your code mentally but it still does not work:
    PHP Code:
    if PQR_InterruptStarted then
        PQR_InterruptStarted 
    false
        
        local Start 
    GetTime()
        
        if 
    Start GetTime() == 2 then
            PQR_WriteToChat
    ("Two seconds elapsed.")
        
    end
        
        
    if Start GetTime() >= 2 then
            PQR_WriteToChat
    ("Two seconds or more have elapsed.")
        
    end
    end 
    =(

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 04:47 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