[BETA] PQRotation - an automated ability priority queue. menu

Shout-Out

User Tag List

Page 585 of 731 FirstFirst ... 85485535581582583584585586587588589635685 ... LastLast
Results 8,761 to 8,775 of 10955
  1. #8761
    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)
    Does anyone know who's the author of the druid-profile under the name "PVE_Druid" ? Its a bear-only profile and I've been using it with great success, but Im curious to see if its still being updated and who to give the +rep to! It helped me tank all the BH bosses on my 369ilvl bear with no problem

    [BETA] PQRotation - an automated ability priority queue.
  2. #8762
    bloat's Avatar Private
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    My account got banned yesterday. Haven't used a gathering bot for a 5 days. Only used this 2 days ago. Not sure if it's because of this that I'm banned.
    Just giving you guys a heads up.

  3. #8763
    momo1029's Avatar Sergeant
    Reputation
    2
    Join Date
    Feb 2009
    Posts
    69
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bloat View Post
    My account got banned yesterday. Haven't used a gathering bot for a 5 days. Only used this 2 days ago. Not sure if it's because of this that I'm banned.
    Just giving you guys a heads up.
    did you receive an email from blizz and the reason that stated in the mail that you are banned for ?

  4. #8764
    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)
    Rewrote the healing engine

    This must be on top of your rotation
    Abilty name: Healing engine
    Spell ID: 0

    Code:
    if not CanHeal then
      function CalculateHP(t)
        incomingheals = UnitGetIncomingHeals(t) and UnitGetIncomingHeals(t) or 0
        return 100 * ( UnitHealth(t) + incomingheals ) / UnitHealthMax(t)
      end
      function CanHeal(t)
        if UnitInRange(t) and UnitCanCooperate("player",t) 
        and not UnitIsCharmed(t) and not UnitIsDeadOrGhost(t) and not PQR_IsOutOfSight(t) 
        then return true end 
      end
    end
    
    lowhpmembers = 0
    members = { { Unit = "player", HP = CalculateHP("player") } } 
    if GetNumRaidMembers() > 0 then 
      for i = 1, GetNumRaidMembers() do if CanHeal("raid"..i) then table.insert( members,{ Unit = "raid"..i, HP = CalculateHP("raid"..i) } ) end end 
      table.remove(members,1) 
    elseif GetNumPartyMembers() > 0 then
      for i = 1, GetNumPartyMembers() do if CanHeal("party"..i) then table.insert( members,{ Unit = "party"..i, HP = CalculateHP("party"..i) } ) end end 
    end
    table.sort(members, function(x,y) return x.HP < y.HP end)
    for i=1,#members do if members[i].HP < 95 then lowhpmembers = lowhpmembers + 1 end end 
    if CanHeal("mouseover") and GetMouseFocus() ~= WorldFrame then members[1] = { Unit = "mouseover", HP = CalculateHP("mouseover") } end 
    if CanHeal("target") then members[1] = { Unit = "target", HP = CalculateHP("target") } end
    Example Healing Spell
    Abilty: Your healing spell
    Spell ID: You healing spell ID
    Target: Custom

    Code:
    if members[1].HP < 90 
    and not PQR_IsMoving(1) 
    then
      PQR_CustomTarget = members[1].Unit
      return true
    end

  5. #8765
    maleth's Avatar Banned
    Reputation
    8
    Join Date
    Feb 2012
    Posts
    131
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Sheuron - is that something i have to add myself into your druid profile?

    Also, whats the possibility of you working on an Arms profile? Can't seem to find a more recent one than Bossqwerty's, and you're a great profile developer.

  6. #8766
    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 maleth View Post
    @Sheuron - is that something i have to add myself into your druid profile?

    Also, whats the possibility of you working on an Arms profile? Can't seem to find a more recent one than Bossqwerty's, and you're a great profile developer.
    No, is a piece of code to use if you want to start a new healer profile. I ll release the new druid profile as soon testing is finished.
    [ 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]

  7. #8767
    bloat's Avatar Private
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by momo1029 View Post
    did you receive an email from blizz and the reason that stated in the mail that you are banned for ?
    Got this one on the mail:

    Reason for Closure: Terms of Use Violation -- Exploitative Activity: Unauthorized Cheat Programs ("Hacks")

    This account was closed because one or more characters were identified using an unauthorized cheat program, also known as a "hack." These programs provide character benefits normally not achievable in the World of Warcraft. Such benefits include, but are not limited to, increased speed, teleportation, or running through walls/boundaries. Use of these unauthorized programs harms the game environment because they offer an unfair advantage over other players and supersede the intended limits of the game.

    -------------------------------

    Might not have something to do with this program. But this one was the recent one I used.

  8. #8768
    maleth's Avatar Banned
    Reputation
    8
    Join Date
    Feb 2012
    Posts
    131
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bloat View Post
    Got this one on the mail:

    Reason for Closure: Terms of Use Violation -- Exploitative Activity: Unauthorized Cheat Programs ("Hacks")

    This account was closed because one or more characters were identified using an unauthorized cheat program, also known as a "hack." These programs provide character benefits normally not achievable in the World of Warcraft. Such benefits include, but are not limited to, increased speed, teleportation, or running through walls/boundaries. Use of these unauthorized programs harms the game environment because they offer an unfair advantage over other players and supersede the intended limits of the game.

    -------------------------------

    Might not have something to do with this program. But this one was the recent one I used.
    Well, none the less thats slightly worrying.

  9. #8769
    momo1029's Avatar Sergeant
    Reputation
    2
    Join Date
    Feb 2009
    Posts
    69
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Valma View Post
    OK,I'm back from the vacation and got the fixes you are all awaiting for.

    http://code.google.com/p/valma-pqr-p...03-29-2012.rar

    CARE it is not fully tested,coz I as always don't have enought time to do full tests.PM me your feedback.

    P.S. I've decided to post links to my further downloads in public messages here on ownedcore.This will help people to find newest versions(if they don't use svn).

    Ups,forgot to mention,that I did a kind of "rewrite" so I've wiped svn to revision 0.And as you can see now code is more clean and got rid of unneded loops and some other cool stuff.
    Thank you for the awsome warlock profile Valma
    not sure if it's me , the demo rotation would just kept all dots up .
    then repeatly spam incinerate and immolate 1 by 1 even if its just casted immolate a second ago

  10. #8770
    shuklu's Avatar Member
    Reputation
    6
    Join Date
    May 2009
    Posts
    64
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Gabbz View Post
    It does cast Pyroblast but it waits for a fireball crit first. Cause you will get more rolling ignites that way.



    taken from 4.3.3 Fire Mage Compendium - Elitist Jerks

    The script is based on a HC DS geared mage in raids.

    If you want to change that you need to remove the bolded text

    Code:
    local start, duration, enabled = GetSpellCooldown(11129);
    
    if not UnitChannelInfo("player") and FireballCrit == 1 then
    	if 	duration > 8 
    		or duration < 1 then
      			CastSpellByName(tostring(GetSpellInfo(92315)))
     			 --print("Mage Functions FireBall CRITTED. " ..Fireballdamage)
     			 return true
     	 end
     end
     
     --Duration =  if combustion is 8 secs to off CD i hold pyroblast so i can cast it to help big ignite
     -- Im also waiting for a crit on Fireball to get more chances to get rolling ignite and big ignite


    Thanks for enlightening me Just my mage who has to low crit % and therefore the profile didn't cast pyroblast!

  11. #8771
    shuklu's Avatar Member
    Reputation
    6
    Join Date
    May 2009
    Posts
    64
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Also, does it exist a pve sub profile? Or a pve combat profile? The only combat profile I've found is xrn's profile and it seem to be bugged. Only spam 1 sinister strike then 1 eviscerate, then repeat.

  12. #8772
    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)
    Originally Posted by shuklu View Post
    Also, does it exist a pve sub profile? Or a pve combat profile? The only combat profile I've found is xrn's profile and it seem to be bugged. Only spam 1 sinister strike then 1 eviscerate, then repeat.
    Search for Blinded's profiles

  13. #8773
    Pumpurum's Avatar Private
    Reputation
    1
    Join Date
    Sep 2011
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    Rewrote the healing engine
    Tested your new heling engine. Everything works, but the disc priest (atonement talents) does not use Smite and holy fire. and that I should add the code to work Dispel \ don `t dispel? Part of your old code:
    Code:
      function DontDispel(t)
        local buff  = { 106200, 104599 } 
        for _,v in ipairs(buff) do if UnitDebuffID(t,v) then return true end end
      end
    
      function DangerousMagic(t)
        local buff = { 106199,  }
        for _,v in ipairs(buff) do if UnitDebuffID(t,v) then return true end end
      end

  14. #8774
    shuklu's Avatar Member
    Reputation
    6
    Join Date
    May 2009
    Posts
    64
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ninjaderp View Post
    Search for Blinded's profiles
    Thanks! Exactly what I was looking for
    .

  15. #8775
    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)
    Profile updates, package includes:
    Mage (Frost PvP, Fire PvE, Fire PvP, Arcane PvE)
    Priest (Holy PvE, Discipline PvP)
    Hunter (MM PvE, Survival PvE)
    Warrior (Protection PvE, Fury PvE)
    Rogue (Combat PvE, Subtlely PvP)
    Death Knight (Frost PvP)
    Shaman (Elemental PvE)
    Druid (Feral Tank PvE, Resto PvE)
    Also included 2 text files with code necesary to auto gather herbs and archaelogy fragments

    http://goo.gl/rseZ0

    + PRIEST, DEATHKNIGHT, SHAMAN and MAGE (Fire only) profiles also works on all european languages
    + Priest profile uses new healing engine and handle better the chakra states

    I ll make all profiles compatible with all languages. Feedback about bugs or game experiencies are welcome.
    If you like this roitations feel free to donate, Paypal account: [email protected]
    Last edited by sheuron; 04-01-2012 at 10:46 PM.
    [ 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]

Similar Threads

  1. [Buying] Planetside 2 Priority Beta Key
    By isit123 in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 07-21-2012, 06:34 AM
  2. [Selling] PLANETSIDE 2 Priority/Early Access Beta Account
    By Kabraxiss in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 07-18-2012, 10:20 AM
  3. [Selling] Planetside 2 Priority/Early access Beta Keys
    By mrsluf in forum General MMO Buy Sell Trade
    Replies: 3
    Last Post: 07-17-2012, 04:45 AM
  4. [Selling] Planetside 2 Priority Access beta key codes
    By fatalefout in forum General MMO Buy Sell Trade
    Replies: 1
    Last Post: 06-26-2012, 04:08 PM
  5. [Bot] Automated dungeon queue / Justice Point leecher(Auto-it source)
    By s_e_a_n_66 in forum World of Warcraft Bots and Programs
    Replies: 36
    Last Post: 01-17-2011, 11:50 AM
All times are GMT -5. The time now is 11:47 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search