PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 406 of 779 FirstFirst ... 306356402403404405406407408409410456506 ... LastLast
Results 6,076 to 6,090 of 11681
  1. #6076
    Taran32's Avatar Knight-Lieutenant
    Reputation
    9
    Join Date
    Feb 2012
    Posts
    369
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    if IsRightShiftKeyDown() then
    if not UnitDebuffID("target", 102546) then
    CastSpellByName("GetSpellInfo(5211), "target")
    return true
    end
    end

    spellid 0
    Tried using this and got a string of LUA errors :/. Is there a simple way to code the alternative I listed? The same ability used only if the stun from Pounce isn't active?

    PQR - Rotation Bot
  2. #6077
    Gabbz's Avatar Contributor
    Reputation
    184
    Join Date
    Dec 2011
    Posts
    451
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    was a wrong in typing try this
    PHP Code:
    if IsRightShiftKeyDown() then
    if not UnitDebuffID("target"102546then
    CastSpellByName
    (GetSpellInfo(5211), "target")
    return 
    true
    end
    end 
    Looking for exploiters and botters to Elder Scrolls Online.

  3. #6078
    MadBarber's Avatar Member
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Можно ли как-то проверить скорость каста спелла в данный момент (например выстрел кобры)?
    Is there any way to check the speed of casting spells at the moment (such as Cobra Shot)?

  4. #6079
    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 Taran32 View Post
    Tried using this and got a string of LUA errors :/. Is there a simple way to code the alternative I listed? The same ability used only if the stun from Pounce isn't active?
    opps, what i get for typing when tired,

    remove the " before the GetSpellInfo(5211) to make it look like CastSpellByName(GetSpellInfo(5211), "target")

    Please if someone helped you donate rep to them.

  5. #6080
    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 MadBarber View Post
    Можно ли как-то проверить скорость каста спелла в данный момент (например выстрел кобры)?
    Is there any way to check the speed of casting spells at the moment (such as Cobra Shot)?
    local casttime = select(7, GetSpellInfo(77767)) --pretty sure thats cobra shot

    Please if someone helped you donate rep to them.

  6. #6081
    joneskull's Avatar Member
    Reputation
    1
    Join Date
    Jun 2007
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How do you target people in your RBG group is it
    Code:
    IsSpellInRange("blahh", "party9")
    or
    Code:
    IsSpellInRange("blahhh", "raid9")
    or something totally different.

  7. #6082
    MadBarber's Avatar Member
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thank you 11

  8. #6083
    daveyboyuk's Avatar Active Member
    Reputation
    31
    Join Date
    May 2009
    Posts
    201
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Subversor View Post
    Thanks Kinkeh!

    One more thing, could anyone help me to manually request spells on the gcd to be part of the PQR rotation?
    For example, pressing pestilence in-game would pause the rotation until pestilence is cast successfully...
    I'm almost sure it's possible but couldn't find anything on the wiki.

    If not I'll just pause the rotation like darksahde, thanks again in advance all.

    this is what i use for kinkehs profile for pestilence just add it into ---functions---

    -- Pestilence on Left Shift.
    if IsLeftShiftKeyDown() then
    SpellCancelQueuedSpell()
    CastSpellByName(GetSpellInfo(50842),nil)
    if SpellIsTargeting() then CameraOrSelectOrMoveStart() CameraOrSelectOrMoveStop() end
    return true
    end

  9. #6084
    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)
    @Darksahde: If you wanna check for only Magic or Enrage buffs, you have to do something like this.
    Code:
    for i=1,40 do
    	local Aura_,_,_,AuraType = UnitAura("target",i)
    	
    	if Aura and (AuraType == "Magic" or AuraType == "Enrage") then
    		CastSpellByName(GetSpellInfo(19801),"target")
    		return true
    	end
    end
    @Everyone: Fire Mage profile is done. I'm currently testing it out in LFR and stuff just to double-check it (on a different computer), so check back soon!

  10. #6085
    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 mentally View Post
    @Everyone: Fire Mage profile is done. I'm currently testing it out in LFR and stuff just to double-check it (on a different computer), so check back soon!
    Leveling a mage now!
    Last edited by Kinkeh; 11-17-2012 at 01:35 PM.

  11. #6086
    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)
    Per request here is my updated "Boss Special" ability. Should work with Amber Shaper now. I still havent been able to test that portion, but I was able to find a similiar vehicle type mechanic to test out the casting and ability use functionality. My only question now is if I need to change the reshapeLife check to be player or vehicle.... For now I check both, so it will work either way.

    Name: Boss Special
    Spell ID: 0
    Code: http://pastebin.com/raw.php?i=6VMdBkxY

    Place at the top of the rotation.
    Last edited by Xelper; 11-17-2012 at 01:57 PM.

  12. #6087
    darksahde's Avatar Master Sergeant
    Reputation
    12
    Join Date
    Jan 2012
    Posts
    76
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mentally View Post
    @Darksahde: If you wanna check for only Magic or Enrage buffs, you have to do something like this.
    Code:
    for i=1,40 do
    	local Aura_,_,_,AuraType = UnitAura("target",i)
    	
    	if Aura and (AuraType == "Magic" or AuraType == "Enrage") then
    		CastSpellByName(GetSpellInfo(19801),"target")
    		return true
    	end
    end
    @Everyone: Fire Mage profile is done. I'm currently testing it out in LFR and stuff just to double-check it (on a different computer), so check back soon!
    what does "i=1,40" does?

    and on the local part, why do we have to check the aura name?

    why its auratype and not debufftype @.@/

  13. #6088
    Ralphiuss's Avatar Active Member
    Reputation
    44
    Join Date
    Sep 2011
    Posts
    230
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @mentally:

    Is there something wrong with the SVN?

  14. #6089
    Nerder's Avatar Contributor
    Reputation
    117
    Join Date
    Aug 2012
    Posts
    263
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Question, and hopefully someone can help... So I'm trying to add a code for collecting items, and in this instance its the Onyx Egg, the issue is though as if I do not have the item in my bag then it'll work fine but if I have already looted the item and its in the bags then WoW will crash.

    This is what I'm using now
    Code:
    local item = { "Onyx Egg" }
    
    for i=1,#item do InteractUnit(item[i])
    end
    The reason why I have it in a table right now is I wanted to add a few more to the list but just testing with that now...

    Also @mentally, where are your profiles at now? I normally use the repository but since thats being worked on where would I get like the mage one you made?
    Last edited by Nerder; 11-17-2012 at 04:35 PM.

  15. #6090
    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)
    @darksahde: There's a limit of 40 Buff/Debuff types on a player, categorized from 1 through 40. I'm checking spesifically on UnitAura instead of UnitBuffID / UnitDebuffID because I know that the auraType will return either "Magic, Poison, Enrage, Curse" etc. and I werent sure if UnitBuff and UnitDebuff does the same. I'll check later when I'm done making dinner.

    @Ralphiuss, @Nerder: The SVN at Google Code is being changed to Assembla to give everyone better overview of what's happening, a better ticket system and will overall pretty much accelerate development of profiles and such for us. Still working on importing everything again, restructuring and updating the Wiki, but give me a day or so and it'll all be back, better than what it used to be. ^^ Nova Project @ Assembla

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 01:26 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