PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 241 of 779 FirstFirst ... 141191237238239240241242243244245291341741 ... LastLast
Results 3,601 to 3,615 of 11681
  1. #3601
    Wopak's Avatar Active Member
    Reputation
    59
    Join Date
    Jul 2008
    Posts
    96
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Update on IsSpellInRange 'bug'

    It's now conclusive that passing spels name or spell ID will bug IsSpellInRange and cause it to return nil no matter what.

    But the simple solution is passing the spells index, then it's all good, go figure...

    I guess rewanping the Talent system was more than the <15years experienced programmers @ Blizzard could handle. That or there's a good reason why it works like this, a reason they're just not sharing with thte public ^^

    PQR - Rotation Bot
  2. #3602
    buntcake72's Avatar Banned
    Reputation
    1
    Join Date
    Feb 2010
    Posts
    57
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    With thanks to Knightnova1 I have incorporated traps into my rotations.

    KMD_All_Hunter_Rotations_v2.zip

    Again BM/MM/SV

    - Left Alt will fire off Explosive Trap, followed by Ice Trap, followed finally by Snake Trap
    - Right Alt will fire off Freezing Trap

    For most rotations, check the rotation notes for more information.

    Hold down Right Shift for Rapid Fire.
    Hold down Left Shift for Focus building.
    Hold down Left Control for mouseover Serpent Sting
    Hold down Left ALT for Explosive Trap, Ice Trap, Snake Trap in order.
    Hold down Right ALT for Freezing Trap

    Please note that I haven't fully tested all the profiles merely the new abilities added.
    One more thing on the BM profile for Single Target. It will lock up on the Kill Command and not fire any shots if the pet isn't in range/etc. Just an FYI, again, not too versed in code but I'm thinking it's saying the pet is too far away to cast it. Not sure if something can be added to nullify that and return it to the normal shot sequence when the pet is out of range. Happened to me last night on Beth'tillac for sure.

  3. #3603
    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 buntcake72 View Post
    One more thing on the BM profile for Single Target. It will lock up on the Kill Command and not fire any shots if the pet isn't in range/etc. Just an FYI, again, not too versed in code but I'm thinking it's saying the pet is too far away to cast it. Not sure if something can be added to nullify that and return it to the normal shot sequence when the pet is out of range. Happened to me last night on Beth'tillac for sure.
    At the moment the range check for this doesn't work with PQR. Nothing I can do about it atm. For fights like this, ultraxion, madness, spine, ragnoros I recommend using a different spec.
    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

  4. #3604
    Pearl4611's Avatar Private
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice to see a new and clean post, hope this makes easier to find profiles

  5. #3605
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by LazyLazy View Post
    Update on IsSpellInRange 'bug'

    It's now conclusive that passing spels name or spell ID will bug IsSpellInRange and cause it to return nil no matter what.

    But the simple solution is passing the spells index, then it's all good, go figure...

    I guess rewanping the Talent system was more than the <15years experienced programmers @ Blizzard could handle. That or there's a good reason why it works like this, a reason they're just not sharing with thte public ^^
    just did a small test of my own.....

    PHP Code:
    /dump IsSpellInRange(GetSpellInfo(585), "target")           returned 1
    /dump IsSpellInRange("Smite""target")              returned 1
    /dump IsSpellInRange(GetSpellInfo(14914), "target")         returned 1
    /dump IsSpellInRange("Holy Fire" "target")            returned 1 
    seems to be working fine for me in my tests :-/

    I know I use a range check on my Warlock as well, and it works for whatever spell I used there
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  6. #3606
    Wopak's Avatar Active Member
    Reputation
    59
    Join Date
    Jul 2008
    Posts
    96
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    just did a small test of my own.....

    PHP Code:
    /dump IsSpellInRange(GetSpellInfo(585), "target")           returned 1
    /dump IsSpellInRange("Smite""target")              returned 1
    /dump IsSpellInRange(GetSpellInfo(14914), "target")         returned 1
    /dump IsSpellInRange("Holy Fire" "target")            returned 1 
    seems to be working fine for me in my tests :-/

    I know I use a range check on my Warlock as well, and it works for whatever spell I used there
    Hi bu_ba_911

    As i stated some posts ago, this seems mostly affect spell you gain thru talents or spells thats modified', like Devastate "replaces" Sunder Armor (This wasn't tested by me tho,)

    Now if you want to check my allegation, you can do with the 2 spell i've personally tested, thaye are Mage-"Living Bomb" & Death Knight-"Frost Strike"

    Other spells i've been told fails is:
    Distract
    Envenom
    Cobra Shot
    Immolate
    Incinerate
    Impending Victory

    But as i said, passing spell index to IsSpellInRange seems to sort it for some reason.

  7. #3607
    buntcake72's Avatar Banned
    Reputation
    1
    Join Date
    Feb 2010
    Posts
    57
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bubba, your DK Blood Profiles also stop working randomly as well. Seems to happen on any sustained fights for longer than 1 minute. Not sure what you need from me to provide beyond what I'm seeing but I'll be glad to help.

  8. #3608
    buntcake72's Avatar Banned
    Reputation
    1
    Join Date
    Feb 2010
    Posts
    57
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    At the moment the range check for this doesn't work with PQR. Nothing I can do about it atm. For fights like this, ultraxion, madness, spine, ragnoros I recommend using a different spec.
    Considering BM is the top DPS spec, that's just not a valid reason. I tried the SV profile and it literally was 6k less and my gear is iLVL 408. Sad that Blizz nerfed it so bad as I love SV. But I understand the issue, just hope something gets fixed soon enough. Sucks that you guys have this issue.

  9. #3609
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by LazyLazy View Post
    Hi bu_ba_911

    As i stated some posts ago, this seems mostly affect spell you gain thru talents or spells thats modified', like Devastate "replaces" Sunder Armor (This wasn't tested by me tho,)

    Now if you want to check my allegation, you can do with the 2 spell i've personally tested, thaye are Mage-"Living Bomb" & Death Knight-"Frost Strike"

    Other spells i've been told fails is:
    Distract
    Envenom
    Cobra Shot
    Immolate
    Incinerate
    Impending Victory

    But as i said, passing spell index to IsSpellInRange seems to sort it for some reason.
    will do

    *edit*
    just pass the original spell id that it was morphed from.... or a spell that has equal range >.>

    Originally Posted by buntcake72 View Post
    Bubba, your DK Blood Profiles also stop working randomly as well. Seems to happen on any sustained fights for longer than 1 minute. Not sure what you need from me to provide beyond what I'm seeing but I'll be glad to help.
    are u sure you are on the most up to date Data File and Blood DK file?
    Last edited by bu_ba_911; 09-06-2012 at 08:53 AM.
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  10. #3610
    rovillien's Avatar Sergeant
    Reputation
    17
    Join Date
    May 2011
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Oke im offering €10 via paypal or moneybookers for working offsets of 4.0.6 13623

  11. #3611
    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 rovillien View Post
    Oke im offering €10 via paypal or moneybookers for working offsets of 4.0.6 13623
    sorry pqr was released after that patch hit so xepler never made offsets for it. now what you can do is ask really nicely and see if xelper will get you the offsets, you'll need to do this for him to get it.

    1: he'll need the client exe from that patch
    2: you'll prob have to use the old 1.1.1 version of pqr
    3: you'll need to code your own profiles ( this will be hard because I think wowhead is purging/merging old info.

    good luck.

    Please if someone helped you donate rep to them.

  12. #3612
    buntcake72's Avatar Banned
    Reputation
    1
    Join Date
    Feb 2010
    Posts
    57
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post

    are u sure you are on the most up to date Data File and Blood DK file?
    I did, still freezes up with the new data file from 9/6 and the profiles from 9/5.

  13. #3613
    blacknightlll's Avatar Member
    Reputation
    4
    Join Date
    Mar 2009
    Posts
    154
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Used your dk profile for about 3 hours last night and I didn't get any freezing issues but it was throwing a error in game about the same time hes talking about. About a min in. Don't remember what it was ATM. I'll retry it when I get home tonight.

  14. #3614
    sheuron's Avatar Knight-Champion
    Reputation
    319
    Join Date
    Aug 2011
    Posts
    504
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by LazyLazy View Post
    I don't know if this affects PQR, since i'm not using this, but another private program.

    IsSpellInRange seems to be bugged on some spells, this is what i have so far:
    Living Bomb
    Frost Strike
    Distract
    Envenom
    Cobra Shot
    Immolate
    Incinerate
    Impending Victory

    Also a user on the US froms reported this: [Bug] Paladin: Fist of Justice vs. WoW API - Forums - World of Warcraft
    The game use alias to refer some spells. IsSpellInRange is not working with some spells because all information is parsed on root spell.

    By example. If you want to know the range on "Impending Victory", you will need to do IsSpellInRange on his root spell "Victory Rush"
    [ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
    If you like this piece of code feel free to invite me a beer making a donation.
    My paypal account: [email protected]

  15. #3615
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by buntcake72 View Post
    I did, still freezes up with the new data file from 9/6 and the profiles from 9/5.
    Originally Posted by blacknightlll View Post
    Used your dk profile for about 3 hours last night and I didn't get any freezing issues but it was throwing a error in game about the same time hes talking about. About a min in. Don't remember what it was ATM. I'll retry it when I get home tonight.
    found the error, updated a quick fix
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

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 06:30 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