PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 47 of 779 FirstFirst ... 43444546474849505197147547 ... LastLast
Results 691 to 705 of 11681
  1. #691
    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 saga3180 View Post
    can someone help me out how to fix this Holy light?

    local start,duration,enabled = GetSpellCooldown(20473)
    if (start+duration-GetTime()) > 1.0 and (start+duration-GetTime()) < 1.5 then return false end
    if Spell == "Holy Shock" or Spell == "Holy Light" or Spell == "Flash of Light" or Spell == "Divine Light" then return false end
    if PQR_CustomTargetHP < 96 and PQR_IsMoving(0.1) == false then
    return true
    end

    Its trying to do holy shock and holy light at the same time and wont cast any
    Sometimes it keeps getting stuck trying to cast on myself or people.
    i'll try to take a stab
    Code:
    local start,duration,enabled = GetSpellCooldown(20473)
    
    if start + (duration - GetTime()) > 1 and start + (duration - GetTime()) < 1.5 then return false end
    
    if Spell == "Holy Shock" or Spell == "Flash of Light" or Spell == "Divine Light" then return false end
    
    if PQR_CustomTargetHP < 96 and PQR_IsMoving(0.1) == false then 
    	return true
    end

    Please if someone helped you donate rep to them.

    PQR - Rotation Bot
  2. #692
    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 Raakz View Post
    hi

    any hunter beta profil out now? and need beta offsets
    I'm waiting for retail for my profiles as beta is beta and changes are a pain.

    Please if someone helped you donate rep to them.

  3. #693
    yourson's Avatar Member
    Reputation
    4
    Join Date
    Feb 2012
    Posts
    149
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Top raiding profiles of course need to wait for live, but making some basic rotations for lvling is quite handy. I used team nova arms beta that is really basic and it helped me so much to lvl on beta and it will probably be cool even for hcs when we get new ofsets.
    PQR makes lvling so much lesd painful.

  4. #694
    maleth's Avatar Banned
    Reputation
    8
    Join Date
    Feb 2012
    Posts
    131
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Do i need a completely different download to use PQR on the beta? I can't find a Beta download link etc.

  5. #695
    Astyre's Avatar Member
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    pqr will work on live, and beta; however we are currently waiting for updated offsets for Beta to work.

  6. #696
    Raakz's Avatar Private
    Reputation
    1
    Join Date
    May 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    wtb beta offsets for lvling to lvl 90 pls want donate this

  7. #697
    saga3180's Avatar Knight-Lieutenant
    Reputation
    6
    Join Date
    Sep 2011
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    i'll try to take a stab
    Code:
    local start,duration,enabled = GetSpellCooldown(20473)
    
    if start + (duration - GetTime()) > 1 and start + (duration - GetTime()) < 1.5 then return false end
    
    if Spell == "Holy Shock" or Spell == "Flash of Light" or Spell == "Divine Light" then return false end
    
    if PQR_CustomTargetHP < 96 and PQR_IsMoving(0.1) == false then 
    	return true
    end
    It was a nice try but i get the same result
    Even if holy shock is on cd holy light just get stuck trying to cast it hmm
    Last edited by saga3180; 06-02-2012 at 12:45 PM.

  8. #698
    Deva's Avatar Master Sergeant
    Reputation
    17
    Join Date
    Oct 2011
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by saga3180 View Post
    It was a nice try but i get the same result
    Even if holy shock is on cd holy light just get stuck trying to cast it hmm
    Firstly, I'm guessing you have the Spell variable declared elsewhere - if not, that's your first problem. Try this out.

    Code:
    if PQR_SpellAvailable(20473) or Spell == "Holy Light" or Spell == "Flash of Light" or Spell == "Divine Light" then
    	return false
    end
    
    if PQR_CustomTargetHP < 96 and PQR_IsMoving(0.1) == false then 
    	CastSpellByID(635,PQR_CustomTarget)
    	return true
    end
    Untested, but using PQR's function to see if Holy Shock is ready, and changing Holy Shock to Holy Light in the Spell cast checks, as well as doing a direct CastSpellByID in case you have the spell set to only target yourself/your target (make sure you set this to Custom anyway though) should fix it.

    P.S. Man, is that some really old bubba code or what? :P
    Deva == a9058727

  9. #699
    saga3180's Avatar Knight-Lieutenant
    Reputation
    6
    Join Date
    Sep 2011
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Deva View Post
    Firstly, I'm guessing you have the Spell variable declared elsewhere - if not, that's your first problem. Try this out.

    Code:
    if PQR_SpellAvailable(20473) or Spell == "Holy Light" or Spell == "Flash of Light" or Spell == "Divine Light" then
    	return false
    end
    
    if PQR_CustomTargetHP < 96 and PQR_IsMoving(0.1) == false then 
    	CastSpellByID(635,PQR_CustomTarget)
    	return true
    end
    Untested, but using PQR's function to see if Holy Shock is ready, and changing Holy Shock to Holy Light in the Spell cast checks, as well as doing a direct CastSpellByID in case you have the spell set to only target yourself/your target (make sure you set this to Custom anyway though) should fix it.

    P.S. Man, is that some really old bubba code or what? :P
    I wanna say it is but its from cokx'z holy pvp and pve profiles.Just trying to get them to work again .Since they are quicker.
    And i got the same result again from holy light . Just stuck at trying to cast it over and over again.

  10. #700
    Deva's Avatar Master Sergeant
    Reputation
    17
    Join Date
    Oct 2011
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by saga3180 View Post
    I wanna say it is but its from cokx'z holy pvp and pve profiles.Just trying to get them to work again .Since they are quicker.
    And i got the same result again from holy light . Just stuck at trying to cast it over and over again.
    Well, cokx built off of bubba's old Holy Paladin profile, so yes, plus I started learning by digging around bubba's profiles, so I remember that old stuff, haha.

    I just got your PM, I'll check it out in a bit and see what I can find out. I'll probably end up cleaning up a bit too (well, at least replacing those cooldown checks with PQR_SpellAvailable).

    It'll be a little bit, I want to finish out one section of this library I'm building, but I will load up what you sent me and start looking through it once that's finished. It might be a while if raid time ends up sneaking up on me, but I'll PM you back with any changes/updates.
    Deva == a9058727

  11. #701
    saga3180's Avatar Knight-Lieutenant
    Reputation
    6
    Join Date
    Sep 2011
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Deva View Post
    Well, cokx built off of bubba's old Holy Paladin profile, so yes, plus I started learning by digging around bubba's profiles, so I remember that old stuff, haha.

    I just got your PM, I'll check it out in a bit and see what I can find out. I'll probably end up cleaning up a bit too (well, at least replacing those cooldown checks with PQR_SpellAvailable).

    It'll be a little bit, I want to finish out one section of this library I'm building, but I will load up what you sent me and start looking through it once that's finished. It might be a while if raid time ends up sneaking up on me, but I'll PM you back with any changes/updates.
    Take all of the time you want
    and thanks for helping out

  12. #702
    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)
    I just put up the latest offsets for MOP. You must be on 2.1.6 for these offsets to work.
    Last edited by Xelper; 06-02-2012 at 06:02 PM.

  13. #703
    SilverRider's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi guys, I've been searching around HARD looking for a really good PVP Resto shaman profile, but havent had any luck finding any. Was wondering what it would take to have one created? Depending on the skill level of the profile, I would definitely donate.

  14. #704
    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)
    If you wanted a profile, I would suggest you write down a list of what things you want it to do / rotation / modifiers for certain things. At least I think it would be easier to code with that knowledge.

  15. #705
    Techz's Avatar Member
    Reputation
    2
    Join Date
    Aug 2009
    Posts
    160
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Im so bored with wow atm you would not believe never really been into pvp much but can anyone tell me the best pvp profile out there i can use to have some fun with as im so bored

    Many Thanks

    Techz

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 10:28 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