PQR - Rotation Bot menu

User Tag List

Page 717 of 779 FirstFirst ... 217617667713714715716717718719720721767 ... LastLast
Results 10,741 to 10,755 of 11681
  1. #10741
    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)
    Originally Posted by markbro View Post
    I've made a few of my own profiles with random level characters. I decided to start a leveling profile for the Warrior from level 1. I'm already having issues. I can't seem to get anything going where I can Auto Attack to build rage for Heroic Strike.
    I've tried making an Ability for Auto Attack (spell id 6603) and even for the Warrior's Attack (spell id 88163) but neither of them seem to do anything. It just sits there because enough rage isn't built up for Heroic Strike.
    Any help getting an Auto Attack script would be greatly appreciated.

    I am trying to make it available to where you just click an enemy and it attacks (unchecked requires combat)
    Havent tested but cant you just do RunMacroText("/startattack")
    Looking for exploiters and botters to Elder Scrolls Online.

    PQR - Rotation Bot
  2. #10742
    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 markbro View Post
    I've made a few of my own profiles with random level characters. I decided to start a leveling profile for the Warrior from level 1. I'm already having issues. I can't seem to get anything going where I can Auto Attack to build rage for Heroic Strike.
    I've tried making an Ability for Auto Attack (spell id 6603) and even for the Warrior's Attack (spell id 88163) but neither of them seem to do anything. It just sits there because enough rage isn't built up for Heroic Strike.
    Any help getting an Auto Attack script would be greatly appreciated.

    I am trying to make it available to where you just click an enemy and it attacks (unchecked requires combat)
    the simplest way to do that would be to have RunMacroText("/startattack") at the top of your profile.
    another way to do it without the need for RunMacroText would be the following:
    PHP Code:
    if not PQ_AttackAction then
        
    for 1,72 do
            if 
    IsAttackAction(ithen
                PQ_AttackAction 
    i
            end
        end
    end
    if PQ_AttackAction then
        
    if not IsCurrentAction(PQ_AttackActionthen
            UseAction
    (PQ_AttackAction)
        
    end
    else
        
    AttackTarget("target")
    end 
    the above code is taken from API AttackTarget - WoWWiki - Your guide to the World of Warcraft and requiers you to have your auto atack spell somewhere on your bars. the benefit of then over the RunMacroText is that it is not client language specific but rather requires you to have a spell on your bar.

    hope this helps out some, btw the wow wiki code i have not tested just took it out of their macro script at the bottom of posted page.

    edit: looks like Gabbz beat me to the RunMacroText =D

    Alpha Profiles: - All profiles with PQInterface support!
    Alpha Interrupt: https://goo.gl/OLhGi - Ignore List, Random Percentage, Time Delays, & much More!
    Alpha Utilities: https://goo.gl/rt7WA - Farming, Prospecting, Disenchanting, Milling, & Questing
    Alpha Moonkin: https://goo.gl/gjxw0 - Optimized DPS Rotation for PvE, Mashup of 3 Profiles
    Avery's Ret: https://goo.gl/GhurM - My take on Avery's outstanding Ret profile with PQI

  3. #10743
    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 kickmydog View Post
    That reminds me, any ideas on a fix for this.

    PHP Code:
    local InParty GetNumGroupMembers()
    if 
    InParty and UnitInRaid("player"then
      
    for 1InPartydo
      
    local member "party"..tostring(i)
      if 
    UnitGroupRolesAssigned(member) == "TANK"
      
    and UnitThreatSituation(member,"target") ~= 3
      then CastSpellByName
    (GetSpellInfo(34477),member)
      
    end
    end 
    It is for an auto misdirect to the tank when threat is low.
    looks like you forgot a "end" also it does not take into account raid vs party, this should work:
    PHP Code:
    local InParty GetNumGroupMembers()
    if 
    InParty 0 then
        local groupType 
    IsInRaid() and "raid" or "party" 
        
    for i=1InParty do
            
    local member groupType..i
            
    if UnitGroupRolesAssigned(member) == "TANK" 
            
    and UnitThreatSituation(member,"target") ~= 3 then
                CastSpellByName
    (GetSpellInfo(34477),member)
            
    end
        end
    end 

    Alpha Profiles: - All profiles with PQInterface support!
    Alpha Interrupt: https://goo.gl/OLhGi - Ignore List, Random Percentage, Time Delays, & much More!
    Alpha Utilities: https://goo.gl/rt7WA - Farming, Prospecting, Disenchanting, Milling, & Questing
    Alpha Moonkin: https://goo.gl/gjxw0 - Optimized DPS Rotation for PvE, Mashup of 3 Profiles
    Avery's Ret: https://goo.gl/GhurM - My take on Avery's outstanding Ret profile with PQI

  4. #10744
    botirk's Avatar Master Sergeant
    Reputation
    14
    Join Date
    May 2013
    Posts
    118
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So IsNotBehindTarget seems work for me again.

    But I decided to use CastSpellByID and it gives stuck... I cant use ANY ability!

  5. #10745
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by botirk View Post
    So IsNotBehindTarget seems work for me again.

    But I decided to use CastSpellByID and it gives stuck... I cant use ANY ability!
    thats due to the morphing of spellids you need to use 'CastSpellByName(GetSpellInfo(id), [Unitid or nil])' does the same thing as CastSpellbyID,

    Please if someone helped you donate rep to them.

  6. #10746
    botirk's Avatar Master Sergeant
    Reputation
    14
    Join Date
    May 2013
    Posts
    118
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @crystal_tech

    CastSpellByName(GetSpellInfo(id)) IS NOT GOOD SOLUTION!!! There are good amount of spells with same name in localized client (Russian one for example).

    Please give me good solution to solve morphing.

  7. #10747
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by botirk View Post
    @crystal_tech

    CastSpellByName(GetSpellInfo(id)) IS NOT GOOD SOLUTION!!! There are good amount of spells with same name in localized client (Russian one for example).

    Please give me good solution to solve morphing.
    i don't follow, with CastSpellByName(GetSpellInfo(id)) it takes the ID of the spell and converts it to localized spellname.

    eg:

    CastSpellByName(GetSpellInfo(3044)) is the same as

    CastSpellByName("Arcane Shot")

    but if your using a non English client it would be in your clients language.

    it is using the id to cast just that its converting the id you input in to it to a spellname before hand.

    Please if someone helped you donate rep to them.

  8. #10748
    botirk's Avatar Master Sergeant
    Reputation
    14
    Join Date
    May 2013
    Posts
    118
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    There are good amount of spells with same name
    it takes the ID of the spell and converts it to localized spellname

  9. #10749
    chumii's Avatar Master Sergeant
    Reputation
    7
    Join Date
    Aug 2011
    Posts
    104
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    does anyone have offsets for ptr ? or is there any thread about it i cant find?

  10. #10750
    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 chumii View Post
    does anyone have offsets for ptr ? or is there any thread about it i cant find?
    They used to be maintained but not anymore, mainly because of how often they are changed and the lack of build dumps released for them.

  11. #10751
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by botirk View Post
    it takes the ID of the spell and converts it to localized spellname
    another way to get around it is to use the root spellid of the morphed spell but you'll still have lock ups till you move your toon.

    what spell is giving you trouble that shares the same name.

    Please if someone helped you donate rep to them.

  12. #10752
    florian70's Avatar Private
    Reputation
    1
    Join Date
    Jul 2013
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    bonjour il y as t il des risque que wow détecte pqrotation ?svp

  13. #10753
    kuukuu's Avatar Contributor
    Reputation
    269
    Join Date
    Jul 2012
    Posts
    619
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by florian70 View Post
    bonjour il y as t il des risque que wow détecte pqrotation ?svp
    There's always a risk of a bot being detected but the chance with PQR is pretty low. Not aware of anyone being banned specifically due to it personally.
    Former PQR Developer

  14. #10754
    florian70's Avatar Private
    Reputation
    1
    Join Date
    Jul 2013
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kuukuu View Post
    There's always a risk of a bot being detected but the chance with PQR is pretty low. Not aware of anyone being banned specifically due to it personally.
    ok car je mes suis fait bannir alors que j avait wrobot et pqrotation en même temps donc je ne sait pas lequel a été détecter

  15. #10755
    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)
    Updated

    KMD_All_Hunter_Rotations_v25.zip

    This includes a BM Cleave rotation for when you just want to keep beastcleave up but do single target damage on the main target.

    Also I've included an auto misdirection when solo it goes on pet when in a group or raid it goes to the tank. Enjoy (paintpauller thanks for your assistance)
    Last edited by kickmydog; 07-05-2013 at 03:31 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

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:03 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