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

User Tag List

Page 374 of 731 FirstFirst ... 274324370371372373374375376377378424474 ... LastLast
Results 5,596 to 5,610 of 10955
  1. #5596
    ecafkcid's Avatar Member
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi it seems it wont find my wow. dont get eny options in dropdown

    [BETA] PQRotation - an automated ability priority queue.
  2. #5597
    Andy8888's Avatar Private
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Dunno what you saw, I edited my last post a few times! I'll come up with a solution for you tonight when I get home from work.
    Last edited by Andy8888; 02-09-2012 at 08:40 PM.

  3. #5598
    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)
    forget got it to work
    Last edited by saga3180; 02-09-2012 at 10:14 PM.

  4. #5599
    PureLife's Avatar Corporal
    Reputation
    1
    Join Date
    Dec 2011
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sorry guys, given my very poor knowledge on lua.

    How do I add a wait timer in terms of (milliseconds) within our LUA code? I'm refining a set of Enchanting / Milling / Prospecting codes to give it a more efficient and time saving process.

  5. #5600
    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)
    just change the delay timer? that works in ms

    second option is grab current GetTime() at the cast of the profession, then run a check against that time until 2 seconds have past (2000 miliseconds) or w/e ur wait time is
    ^0^Team Nova's PQR NCC ^0^

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

  6. #5601
    Meatglue's Avatar Active Member
    Reputation
    16
    Join Date
    Aug 2011
    Posts
    248
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone with a mage able to come up with a decurse ability? Tried using the Pally cleanse one and editing it down but the CheckMagic does not work apparently.

  7. #5602
    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 Meatglue View Post
    Anyone with a mage able to come up with a decurse ability? Tried using the Pally cleanse one and editing it down but the CheckMagic does not work apparently.
    lol give me a second.... ill actually make it work for you

    Code:
    function CheckCurse(unitid)
      local i = 1
      local buff,_,_,count,bufftype,duration = UnitDebuff(unitid, i)
      while buff do
        if bufftype == "Curse"  then return true end
        i = i + 1;
        buff,_,_,count,bufftype,duration = UnitDebuff(unitid, i)
      end
    
    end
    
    local group = "party"
    local members = GetNumPartyMembers()
    
    if GetNumRaidMembers() > 0 then
      group = "raid"
      members = GetNumRaidMembers()
    end
    
    for i = 1, members, 1 do
      local member = group..tostring(i)
      if UnitInRange(member) 
      and UnitIsCharmed(member) == nil
      and UnitIsDeadOrGhost(member) == nil 
      and PQR_IsOutOfSight(member) == false then
        if CheckCurse(member) then PQR_CustomTarget = member end
      end
    end
    
    if CheckCurse(PQR_CustomTarget) and UnitDebuffID(PQR_CustomTarget,30108) == nil and UnitDebuffID(PQR_CustomTarget,34941) == nil then return true end
    if CheckCurse("player") and UnitDebuffID("player", 30108) == nil and UnitDebuffID("player", 34941) == nil then PQR_CustomTarget = "player" return true end
    that may work, not tested but the quick scan seems like syntax is working right

    dont forget to make target = Custom
    Last edited by bu_ba_911; 02-09-2012 at 11:02 PM.
    ^0^Team Nova's PQR NCC ^0^

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

  8. #5603
    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)
    Anyone know why these wont start ???
    http://www.mediafire.com/?61nc2c9k5s3tvwq
    Last edited by saga3180; 02-09-2012 at 11:19 PM.

  9. #5604
    Meatglue's Avatar Active Member
    Reputation
    16
    Join Date
    Aug 2011
    Posts
    248
    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
    lol give me a second.... ill actually make it work for you

    Code:
    function CheckCurse(unitid)
      local i = 1
      local buff,_,_,count,bufftype,duration = UnitDebuff(unitid, i)
      while buff do
        if bufftype == "Curse"  then return true end
        i = i + 1;
        buff,_,_,count,bufftype,duration = UnitDebuff(unitid, i)
      end
    
    end
    
    local group = "party"
    local members = GetNumPartyMembers()
    
    if GetNumRaidMembers() > 0 then
      group = "raid"
      members = GetNumRaidMembers()
    end
    
    for i = 1, members, 1 do
      local member = group..tostring(i)
      if UnitInRange(member) 
      and UnitIsCharmed(member) == nil
      and UnitIsDeadOrGhost(member) == nil 
      and PQR_IsOutOfSight(member) == false then
        if CheckCurse(member) then PQR_CustomTarget = member end
      end
    end
    
    if CheckCurse(PQR_CustomTarget) and UnitDebuffID(PQR_CustomTarget,30108) == nil and UnitDebuffID(PQR_CustomTarget,34941) == nil then return true end
    if CheckCurse("player") and UnitDebuffID("player", 30108) == nil and UnitDebuffID("player", 34941) == nil then PQR_CustomTarget = "player" return true end
    that may work, not tested but the quick scan seems like syntax is working right

    dont forget to make target = Custom
    You the man!

  10. #5605
    travis2861's Avatar Contributor
    Reputation
    99
    Join Date
    Aug 2007
    Posts
    227
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Bossqwerty i was amazed to see your TG profile and logged on asap but sadly i got this .
    Code:
    Message: [string " function pqrFunc0() local rage = UnitPower..."]:150: attempt to compare nil with numberTime: 02/10/12 00:16:27
    Count: 53
    Stack: [string " function pqrFunc0() local rage = UnitPower..."]:150: in function `?'
    [string "..."]:267: in function `PQR_NextAbility'
    [string "..."]:161: in function `PQR_CastNext'
    [string "..."]:150: in function `PQR_ExecuteBot'
    [string "..."]:40: in function <[string "..."]:23>
    
    
    Locals: cs = 0
    csx = 0
    cscd = -5688.864
    unithealth = 100
    slam = nil
    rage = 34
    applejack = nil
    cs = 0
    csx = 0
    cscd = -5688.864
    BT = nil
    exec = nil
    csDebuff = nil
    csDebuffR = nil
    CSTime = nil
    _ = nil
    _ = nil
    _ = nil
    _ = nil
    _ = nil
    CSExpireTime = nil
    DW = nil
    EN = nil
    UF = nil
    BR = nil
    enrage = 0
    global_cats2 = nil
    var = nil
    rainbowcheck = nil
    FL = <table> {
     1 = 105925
     2 = 109075
     3 = 110068
     4 = 110069
     5 = 110070
     6 = 110078
     7 = 110079
     8 = 110080
    }
    HoTcast = nil
    _ = nil
    _ = nil
    _ = nil
    _ = nil
    endtime = nil
    HoT = <table> {
     1 = 109415
     2 = 106371
     3 = 109416
     4 = 109415
     5 = 109417
    }
    _ = nil
    _ = nil
    _ = nil
    _ = nil
    _ = nil
    _ = nil
    shrapnel = nil
    (*temporary) = nil
    (*temporary) = ""
    (*temporary) = "attempt to compare nil with number"




  11. #5606
    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)
    Hey guys, I noticed a flaw in my own design when I was more extensively testing my profile last night.
    Mind Blast not being cast while under Archangel, which was the cause to a major DPS loss.

    Thanks to bu_ba_911 for letting me stay on his Google Code page and such.
    Updated Shadow Priest Profile
    You can now also find it constantly updated on Bu_ba_911's SVN! (Thank you again)

  12. #5607
    PureLife's Avatar Corporal
    Reputation
    1
    Join Date
    Dec 2011
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks Bu_Ba for the help. Regarding my delay timer question.

    I've done a daily profile consolidation on the thread for about a month or 2. You can get all of sheuron's, bu_ba's, boss, Ash (druid), mentally's profiles in there updated to the latest one up there.

    Consolidated Profiles

    I'm using dropbox for sharing public profiles.

    If any creator or user of PQR profile uses dropbox, may want to work something out with me like sharing folders on dropbox to create a updated profile list even while I'm not around or such. I update all my profiles on a daily basis and depends on which creator has updates.

    It would be great if anyone working with me will work together a guide on using the existing PQR profiles. EG: Whose profile uses what keypress for what functions etc. Or updated logs of profiles. And also help me publish new consolidated profiles here in ownedcore forums if I should go MIA or anything.

    I know a lot of people have put in efforts to consolidate profiles and publish online etc etc, like GRB who did a great job back then, and there was a site release by someone, can't find the post anymore. But I believe working in a team is more efficient and effective than working alone. You get more things done this way.

    If anyone is interested, let me know.

    PS: Use at your own discretion. I play Pally(Holy/Ret), Shaman(Ele/Resto), Druid (Feral), Rogue(Combat), Hunter(MM), Priest (Holy). If any of the other profiles should not work, consult here with the original creator, not me. When he posts something up and new, I'll get it downloaded, compiled and share again. Benefits to all!
    Last edited by PureLife; 02-10-2012 at 04:35 AM.

  13. #5608
    stec2012's Avatar Corporal
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Tried searching for a version of Ash's resto druid profile that has been tweaked a little to be more mana efficient, ive had a look at the code but basically i dont know anything about it to be able to pick out what to change.

    I'm trying GRB's now but finding im at 99% mana for the whole fight while there are targets still to be healed, so would like to push some more healing out.

    If anyone could help would be greatly appreciative.

  14. #5609
    Valma's Avatar Contributor
    Reputation
    152
    Join Date
    Nov 2011
    Posts
    209
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    As you requested,guys.
    Download link for my profile (if you don't use SVN,remember that download packs are not as up-to-date as SVN is)
    ValmaDestro_02-10-2012.rar - valma-pqr-profiles - STANDART rotation FULLY working - Advanced PQR profiles - Google Project Hosting

    If I will not got rep for this code of awesomeness - I'll bite you all

    P.S. Auto switch priorities,rotations and skills(as far as skill targets) to boss fight is not in yet(same as burn npc IDs not full),but it will come really soon after some testing,got all tables and functions needed for this already in code.

    As for now - I'm working on debug damp frame for faster and easier debugging.
    Last edited by Valma; 02-10-2012 at 05:02 AM.
    MEDVED+VODKA+BALALAYKA

  15. #5610
    Lofty's Avatar Banned
    Reputation
    37
    Join Date
    Feb 2008
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Valma View Post
    As you requested,guys.
    Download link for my profile (if you don't use SVN,remember that download packs are not as up-to-date as SVN is)
    ValmaDestro_02-10-2012.rar - valma-pqr-profiles - STANDART rotation FULLY working - Advanced PQR profiles - Google Project Hosting

    If I will not got rep for this code of awesomeness - I'll bite you all

    P.S. Auto switch priorities,rotations and skills(as far as skill targets) to boss fight is not in yet(same as burn npc IDs not full),but it will come really soon after some testing,got all tables and functions needed for this already in code.

    As for now - I'm working on debug damp frame for faster and easier debugging.
    Just been having a look at you're SVN. Looks amazing

    Make a holy pala and ill REP you (Or just say you will and ill REP you anyway lol)

    Reason i ask for a pally is id love to see what you could come up with

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 02:55 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