PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 407 of 779 FirstFirst ... 307357403404405406407408409410411457507 ... LastLast
Results 6,091 to 6,105 of 11681
  1. #6091
    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)
    Originally Posted by mentally View Post
    @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
    Thanks for the update, amazing how you just jump into stuff like this! Would you happen to have an idea as to why my wow is crashing after looting the egg?

    So my only thought is that its trying to interact with the item in my bag instead of the one on the ground... Bagged Onyx Egg itemID is 89155 but the one on the ground according to WoW head Object ID is 214945
    Last edited by Nerder; 11-17-2012 at 05:29 PM.

    PQR - Rotation Bot
  2. #6092
    DragoHorse's Avatar Contributor
    Reputation
    153
    Join Date
    May 2009
    Posts
    223
    Thanks G/R
    10/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have a weird problem on my ret paladin.
    I use Xelper ret rotation, it always worked really well and had some nice dps.
    But around a week ago a problem started not using my spells properly.
    It is not using crusader and judgement anymore. It only used exorcism. I dont know what I did wrong.
    I tryed to use a clean PQR and profile rotation. I also deleted my wow cache and WTF folder.
    Nothing worked. Is there anything I did wrong?
    What could I try to make it work.

  3. #6093
    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)
    @Nerder: I think it's because InteractUnit() requires a UnitID and if you're not close to the object, it'll cause an infinite loop and overload World of Warcraft's allocated memory, which in turn will cause the client to crash. Just speculation though. Besides that, it's very easy to get into making profiles to PQR. Just requires some trial and error, along with patience.

  4. #6094
    googlebee's Avatar Contributor PQR Profile Developer CoreCoins Purchaser
    Reputation
    235
    Join Date
    Oct 2007
    Posts
    478
    Thanks G/R
    0/0
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Trying to figure out how to alter Firepongs code, and add Boss (when friendly) to list of targets to heal - Specifically for the Tsulong Encounter. (Think of it as a cross between Elagon and Dreamwalker [ICC].

    Tsulong is either Hostile or Friendly.

    Tsulong does seem to have 2 NPC Id's however.

    During Night Phase Tsulong is Hostile and attack-able. (NPC ID = 62442)
    During Day Phase Tsulong is Friendly and needs to be healed. (NPC ID = 63025? Could be he uses the above one always though)

    It should be noted that healing Tsulong by any class that can, should be done when players have the buff: Bathed in Light

    This buff is obtained after any players are hit with his Sun Breath (Frontal cone) during Day Phase.

    here is Firepongs code:

    Code:
    --Variables
    local inBG = PQR_Battleground()
    --Misc Buffs/Debuffs/CD's
    local playerHP1 = 100 * UnitHealth("Player") / UnitHealthMax("Player")
    local psBuff = UnitBuffID("Player",69369)
    local nsBuff = UnitBuffID("Player",132158)
    
    if psBuff or nsBuff then
        if members[1].HP < playerHP1 then
            PQR_CustomTarget = members[1].Unit
            CastSpellByName(tostring(GetSpellInfo(5185)),PQR_CustomTarget)
        else
            CastSpellByName(tostring(GetSpellInfo(5185)),"Player")
        end
    end
    Here is the Data File Functions relevant to the above code. This would probably need to be altered as well.

    Code:
     function CanHeal(t)
      if UnitInRange(t) and UnitCanCooperate("player",t) and not UnitIsEnemy("player",t) 
      and not UnitIsCharmed(t) and not UnitIsDeadOrGhost(t) and not PQR_IsOutOfSight(t) 
      then return true end 
    end
    
    function GroupInfo()
      members, group = { { Unit = "player", HP = CalculateHP("player") } }, { low = 0, tanks = { } } 
      group.type = IsInRaid() and "raid" or "party" 
      group.number = GetNumGroupMembers()
      for i=1,group.number do if CanHeal(group.type..i) then 
    local unit, hp = group.type..i, CalculateHP(group.type..i) 
    table.insert( members,{ Unit = unit, HP = hp } ) 
    if hp < 90 then group.low = group.low + 1 end 
    if UnitGroupRolesAssigned(unit) == "TANK" then table.insert(group.tanks,unit) end 
      end end 
      if group.type == "raid" and #members > 1 then table.remove(members,1) end 
      table.sort(members, function(x,y) return x.HP < y.HP end)
      local customtarget = CanHeal("target") and "target" -- or CanHeal("mouseover") and GetMouseFocus() ~= WorldFrame and "mouseover" 
      if customtarget then table.sort(members, function(x) return UnitIsUnit(customtarget,x.Unit) end) end 
    end


    Feral cats will have a HUGE advantage with this as healing up Tsulong during Day Phase is key to defeating the encounter. The Raid literally only gets 2 Day Phases before Berserk.

    Granted the easiest way to do this would to simply use Heart of the Wild talent and spam healing Touches on the second day phase. However, the dps loss and overall healing would be considerably less than using Dream of Cenarius.

    I have never dealt with boss targets paired with my moderate knowledge of LUA, I really have no idea where to start.

    thanks.
    Last edited by googlebee; 11-17-2012 at 09:44 PM. Reason: Adding NPC Id's/Bathed in Light ID

  5. #6095
    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)
    @team nova

    your monk profile seem stop working when fighting certain boss. anyway to fix that?

  6. #6096
    sickgnome's Avatar Private CoreCoins Purchaser
    Reputation
    9
    Join Date
    Oct 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Sheuron

    I am using the rogue profile for dungeons and lfr, almost all fights it works great, however on fights like Garalon it stops working, none of the rotations works.

    Thanks

  7. #6097
    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: I've got no clue why it does that. It's Buba's profile of expertise. =P

    Anyhow, I've given my Fire Mage profile a lot of thought, thinking about the best possible way to have PQR and the rotation use Alter Time and Combustion depends a lot on your chosen Tier 1 talent. If I get it working the way I want it to, I'll release the profile tomorrow. We'll see how I handle it, I guess. ;_;

  8. #6098
    googlebee's Avatar Contributor PQR Profile Developer CoreCoins Purchaser
    Reputation
    235
    Join Date
    Oct 2007
    Posts
    478
    Thanks G/R
    0/0
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sickgnome View Post
    @Sheuron

    I am using the rogue profile for dungeons and lfr, almost all fights it works great, however on fights like Garalon it stops working, none of the rotations works.

    Thanks

    Try opening the LUA editor, dropdown to the XM data file you have. In the local mob (English) add: Garalon's Leg
    Last edited by googlebee; 11-17-2012 at 11:29 PM.

  9. #6099
    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)
    @Googlebee: I've looked over the code you posted above. While it does parse through all raid/party members, it also checks if your target can be healed. You're checking the wrong target!
    If I'm reading it correctly, simply changing members[1].HP to members[customtarget].HP should do the trick.

  10. #6100
    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)
    How would i go upon writing a code that Uses holy prism(114165) on boss/mob if Player is under 90% if we are in range
    Last edited by saga3180; 11-18-2012 at 01:01 AM.

  11. #6101
    saintsrlfc's Avatar Member
    Reputation
    1
    Join Date
    Jan 2011
    Posts
    59
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    SVN UPDATE fail

    Originally Posted by mentally View Post
    @Googlebee: I've looked over the code you posted above. While it does parse through all raid/party members, it also checks if your target can be healed. You're checking the wrong target!
    If I'm reading it correctly, simply changing members[1].HP to members[customtarget].HP should do the trick.
    Hey i keep getting errors when trying to update via SVN....Is there problems atm?

  12. #6102
    piratepetey's Avatar Sergeant
    Reputation
    4
    Join Date
    Apr 2012
    Posts
    63
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by saintsrlfc View Post
    Hey i keep getting errors when trying to update via SVN....Is there problems atm?
    There does appear to be a problem - http://bubba-pqr-profiles.googlecode.com/svn/trunk/ doesn't exist anymore!

    Mentally - did a code check-in fail along the road somewhere?

  13. #6103
    leetspeaker's Avatar Member
    Reputation
    3
    Join Date
    Feb 2009
    Posts
    70
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    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.
    not working for me

  14. #6104
    MACH9 WoW Services's Avatar Member CoreCoins Purchaser
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    219
    Thanks G/R
    1/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @kinkeh in heart of fear.. Message: [string "if PQR_Addon_Loaded == nil then..."]:1451: GetSpellBookItemName(): Invalid spell slot
    Time: 11/18/12 21:06:09
    Count: 34
    Stack: [C]: in function `GetSpellBookItemName'
    [string "if PQR_Addon_Loaded == nil then..."]:1451: in function `PQR_GetSpellID'
    [string "if PQR_Addon_Loaded == nil then..."]:1437: in function <[string "if PQR_Addon_Loaded == nil then..."]:1435>
    [C]: in function `CastSpellByName'
    [string "if PQR_RotationStarted == true then ..."]:17: in function `?'
    [string "if PQR_Addon_Loaded == nil then..."]:760: in function `PQR_NextAbility'
    [string "if PQR_Addon_Loaded == nil then..."]:533: in function `PQR_ExecuteRotation'
    [string "if PQR_Addon_Loaded == nil then..."]:289: in function <[string "if PQR_Addon_Loaded == nil then..."]:214>

    Locals: (*temporary) = 215
    (*temporary) = "spell"

  15. #6105
    snowhawk's Avatar Contributor
    Reputation
    147
    Join Date
    Aug 2008
    Posts
    239
    Thanks G/R
    42/130
    Trade Feedback
    0 (0%)
    Mentioned
    14 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by piratepetey View Post
    There does appear to be a problem - http://bubba-pqr-profiles.googlecode.com/svn/trunk/ doesn't exist anymore!

    Mentally - did a code check-in fail along the road somewhere?
    Moved over to Assembla (but Mentally hasn't updated her signature yet )

    Originally Posted by mentally View Post
    @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 11:45 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