PQR - Rotation Bot menu

User Tag List

Page 254 of 779 FirstFirst ... 154204250251252253254255256257258304354754 ... LastLast
Results 3,796 to 3,810 of 11681
  1. #3796
    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)
    Originally Posted by firepong View Post
    Because PQR_UnitInfor(var1) returns 5 Values or more, can't remember in a Table:
    Value 1: X position
    Value 2: Y position
    Value 3: Z position
    Value 4: Faction ID?
    Value 5: Cant remember I know most of the time, for me, it return's 0 lol
    X, Y, Z, Rotation, Type (3 or 4, NPC or Player, I believe) and TargetGUID
    Last edited by Xelper; 09-09-2012 at 04:59 PM.

    PQR - Rotation Bot
  2. #3797
    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 Xelper View Post
    X, Y, Z, Rotation, Type (3 or 4, NPC or Player, I believe) and TargetGUID
    Any possibility of PQR_CustomTarget to work with everything, NPC and Player, instead of just Player? This way, you can do PQR_CustomTarget with PQR_UnitInfo() and input all the data into a table. Then, use that table with yours or my UnitDistance code and for every Unit that's within so many units, say Melee == 5 yards, that could be a switch for AE. Just call the table with everyone within range of the player and have it return a number value of how many entries are in the table.

    I know this could possibly cause FPS issues/high processor usage because the table will constantly be updated with data.

  3. #3798
    Daganjaman's Avatar Member
    Reputation
    2
    Join Date
    Aug 2012
    Posts
    60
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Attachment 10085
    Can someone help me here around this ability? Im trying to make Focus polymorph etc. pls help if you know where i did wrong cuz its not working.

  4. #3799
    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)
    Ganjaman you have to upload it to another site like imgur and link it

  5. #3800
    imdasandman's Avatar Contributor
    Reputation
    206
    Join Date
    Feb 2011
    Posts
    965
    Thanks G/R
    9/4
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sheron, your arcane mage profile on madness in lfr locks up and all the debugger spits out is a continuous loop of "offensive spells". The issue was on some of deathwings arms and the big tentcles. It seems most likely an error with your range check you use in your offensive spells ability

    Sent from my SAMSUNG-SGH-I717 using Tapatalk 2
    My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
    https://imdasandmandeathknight.googl...com/svn/trunk/
    Originally Posted by Valma View Post
    Oh sure. (: Plz,lord,rewrite my profile without "re-inventing a wheel".I'm really interested how would you do so.I even ready to eat my pants if yours will perform better in raids than mine

  6. #3801
    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)
    I noticed while looking through Shueron's feral profile he made some interesting usage locals.

    local SpellID = PQR_UnitFacing("target", "player") and 33876 or 5221

    if IsUsableSpell(SpellID) then
    CastSpellByName(GetSpellInfo(SpellID),nil)
    return true
    end
    So I was thinking that for hunters we have three talents that would need to be on cooldown when using readiness. I was trying to figure out ways to do this, since you may only have one active at a time. Here is my idea, it doesn't work but I was wondering if anyone can spot and fix my errors.

    local huntertal = 0
    IsSpellKnown(130392) then huntertal = 130392 -- blink strike
    IsSpellKnown(131894) then huntertal = 131894 -- murder of crows
    IsSpellKnown(120697) then huntertal = 120697 -- lynx rush

    if select(2,GetSpellCooldown(3045)) > 120 --rapid fire
    and select(2,GetSpellCooldown(19574)) > 2 -- bestial wrath
    and select(2,GetSpellCooldown(120679)) > 2 -- dire beast
    and select(2,GetSpellCooldown(huntertal)) > 4 -- talent
    then return true end
    Last edited by kickmydog; 09-09-2012 at 08:42 PM.
    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

  7. #3802
    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 kickmydog View Post
    I noticed while looking through Shueron's feral profile he made some interesting usage locals.



    So I was thinking that for hunters we have three talents that would need to be on cooldown when using readiness. I was trying to figure out ways to do this, since you may only have one active at a time. Here is my idea, it doesn't work but I was wondering if anyone can spot and fix my errors.
    Do if IsSpellKnown() then for the first one and elseif for the other 2 then ad an end to it

    Sent from my Desire HD using Tapatalk 2

  8. #3803
    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
    Do if IsSpellKnown() then for the first one and elseif for the other 2 then ad an end to it

    Sent from my Desire HD using Tapatalk 2
    Thanks very much, works a charm now.
    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

  9. #3804
    PrimoPie's Avatar Contributor CoreCoins Purchaser
    Reputation
    83
    Join Date
    Jul 2007
    Posts
    410
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does anybody have Offsets for current Beta 16048... or could you tell me how to get it to work. I tried replacing the numbers in the xml file and had no luck.

  10. #3805
    Battler624's Avatar Member
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    64
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    kinks? you dont post when you update your profile?

  11. #3806
    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 Battler624 View Post
    kinks? you dont post when you update your profile?
    Nope I usually don't, one less post to this thread never hurts :P.

  12. #3807
    JohnnyPunani's Avatar Member CoreCoins Purchaser
    Reputation
    2
    Join Date
    Mar 2012
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey Kinkeh, I tried to send you a PM but it says your inbox is full.

  13. #3808
    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 JohnnyPunani View Post
    Hey Kinkeh, I tried to send you a PM but it says your inbox is full.
    My bad, all cleared .

  14. #3809
    JohnnyPunani's Avatar Member CoreCoins Purchaser
    Reputation
    2
    Join Date
    Mar 2012
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kinkeh View Post
    My bad, all cleared .
    No problem. Message sent.

  15. #3810
    Leo467's Avatar Private
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thing is that PQR help so much with extra boring things... like leveling, daily quests, LFR... and even boring parts of raiding. Thanks once again to everyone who contribute.

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 11:59 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