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

Shout-Out

User Tag List

Page 32 of 731 FirstFirst ... 28293031323334353682132532 ... LastLast
Results 466 to 480 of 10955
  1. #466
    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 me28791 View Post
    dont you have to do a zip or soemthing and upload it to a offsite account?
    /smack head on keyboard

    here ya go.
    http://tinyurl.com/3gcydcs

    ---------- Post added at 10:42 AM ---------- Previous post was at 10:39 AM ----------

    Originally Posted by Amiyumi View Post
    I do not work profile hunter BM, MM, paladin all works fine, but on ohotneke that does not want, + when you start falling FPS
    Client WoW (ruRu) Russian
    You'll need to change the Name of the spells to the Russian spelling in the Locals and it should work.

    ---------- Post added at 10:46 AM ---------- Previous post was at 10:42 AM ----------

    Originally Posted by teariki View Post
    how do i add necrotic strike to the already existing 4.2 frost dk?
    Spell name: Necrotic Strike
    Spell ID: 73975

    basic code no checks, just cast it every time it can

    Code:
    return true
    not much but I don't have a dk to test rotations.

    ---------- Post added at 11:07 AM ---------- Previous post was at 10:46 AM ----------

    Originally Posted by EnTaroAdun View Post
    Is this possible to cast healing wave to party1-5 without actually targeting them?
    eh doubtful atm. unless xelper programs in some group/raid awareness. if he did that healers could track debuffs that can be disspelled (much like the interrupt mode) and better hp tracking for the groups.

    example: healing mode, when active a new profile list comes up with thresholds for different hp levels. say 90% would be a hot, 50% would be a heal, if more than 3 peps are at 50% aoe heal. That way one can put the right spell for the right job. but have an alternate spell in place of the main for mana issues.

    its a rough idea fill free to improve apon it and lets see if xelper will code it.

    [BETA] PQRotation - an automated ability priority queue.
  2. #467
    R0w4n's Avatar Retired Model Editor :3
    Reputation
    349
    Join Date
    Apr 2007
    Posts
    1,084
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by n1bl3r View Post
    OK i have fixed a few problems with the Arcane rotation. Still think there can be some improvements. During Burn phase i can peak at about 25k dps the that drops to 15k in conserve phase, this is with 359 gear and only self buffs 3 t-11 pieces. The rotation has been fixed to cast an Arcane Missile before it casts Evocation, and to only cast Arcane Power if on a boss and Mirror Image is available to cast next. Also Got Arcane Missile to only cast is atleast two Arcane Blasts have been cast. No more AM casting from and AM proc.

    I have also renamed a few abilities to hopefully make it a little more clearer.

    MAGE_Abilities
    [spoiler]
    Code:
    <?xml version="1.0" encoding="utf-8"  ?><MAGE><Ability><Name>B - Arcane  Missile</Name><Default>false</Default><SpellID>5143</SpellID><Actions>/startattack</Actions><Lua>local  AM = UnitBuff(&amp;quot;player&amp;quot;, &amp;quot;Arcane  Missiles!&amp;quot;)
    local manapercent = 100 * UnitPower(&amp;quot;player&amp;quot;) / UnitPowerMax(&amp;quot;player&amp;quot;)
    if manapercent &amp;lt;= 36 then
     return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Buff  - Arcane  Power</Name><Default>false</Default><SpellID>12042</SpellID><Actions></Actions><Lua>local  MirrorImageStart, MirrorImageDuration = GetSpellCooldown(12051)
    local MirrorImageCooldown = (MirrorImageStart + MirrorImageDuration - GetTime())
    if MirrorImageCooldown &amp;gt;= 3 then
     return false
    else
     return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Player</Target></Ability><Ability><Name>Use  - Mana  Gem</Name><Default>false</Default><SpellID>0</SpellID><Actions>/use  Mana Gem</Actions><Lua>local manapercent = 100 *  UnitPower(&amp;quot;player&amp;quot;) /  UnitPowerMax(&amp;quot;player&amp;quot;)
    local ManaGemStart, ManaGemDuration = GetItemCooldown(36799)
    local ManaGemCooldown = (ManaGemStart + ManaGemDuration - GetTime())
    if ManaGemCooldown &amp;lt; 3 then
     if manapercent &amp;lt; 95 then
      return true
     end
    end</Lua><RecastDelay>0</RecastDelay><Target>Player</Target></Ability><Ability><Name>Flame   Orb</Name><Default>false</Default><SpellID>82731</SpellID><Actions>/startattack</Actions><Lua>return   true</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Mirror   Image</Name><Default>false</Default><SpellID>55342</SpellID><Actions></Actions><Lua>local  levelCheck = UnitLevel(&amp;quot;target&amp;quot;)
    if levelCheck ~= -1 then
     return false
    else
     return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Player</Target></Ability><Ability><Name>Make  - Mana  Gem</Name><Default>false</Default><SpellID>759</SpellID><Actions></Actions><Lua>local  gemcount = GetItemCount(&amp;quot;Mana Gem&amp;quot;)
    if gemcount &amp;lt; 1 then
     return true
    end</Lua><RecastDelay>12000</RecastDelay><Target>Player</Target></Ability><Ability><Name>Evocation</Name><Default>false</Default><SpellID>12051</SpellID><Actions></Actions><Lua>local  manapercent = 100 * UnitPower(&amp;quot;player&amp;quot;) /  UnitPowerMax(&amp;quot;player&amp;quot;)
    if manapercent &amp;lt; 35 then
     return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Player</Target></Ability><Ability><Name>B  - Arcane  Blast</Name><Default>false</Default><SpellID>30451</SpellID><Actions>/startattack|/use  10|/use 13|/use 14</Actions><Lua>local manapercent = 100 *  UnitPower(&amp;quot;player&amp;quot;) /  UnitPowerMax(&amp;quot;player&amp;quot;)
    local EvocationStart, EvocationDuration = GetSpellCooldown(12051)
    local EvocationCooldown = (EvocationStart + EvocationDuration - GetTime())
    if EvocationCooldown &amp;lt; 3 then
     --evocation will be off CD within 3 seconds or is off CD. 
                    if manapercent &amp;gt; 35 then
      return true
     end
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Buff  - Arcane  Brilliance</Name><Default>false</Default><SpellID>1459</SpellID><Actions></Actions><Lua>sABr  = UnitBuffID(&amp;quot;player&amp;quot;, 1459) 
      
    if sABr == nil then
     return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>T  - Arcane Blast  Filler</Name><Default>false</Default><SpellID>30451</SpellID><Actions>/startattack</Actions><Lua>local  _,_,_,AB = UnitDebuff(&amp;quot;player&amp;quot;,  &amp;quot;Arcane Blast&amp;quot;)
    if AB == nil then
     return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>C  - Arcane  Blast</Name><Default>false</Default><SpellID>30451</SpellID><Actions>/startattack</Actions><Lua>local  _,_,_,AB = UnitDebuff(&amp;quot;player&amp;quot;,  &amp;quot;Arcane Blast&amp;quot;)
    local EvocationStart, EvocationDuration = GetSpellCooldown(12051)
    local EvocationCooldown = (EvocationStart + EvocationDuration - GetTime())
    if EvocationCooldown &amp;gt; 3 then
     if AB &amp;gt;= 2 then
      return false
     else
      return true
     end
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>T  - Arcane  Missile</Name><Default>false</Default><SpellID>5143</SpellID><Actions></Actions><Lua>local  AM = UnitBuff(&amp;quot;player&amp;quot;, &amp;quot;Arcane  Missiles!&amp;quot;)
    local _,_,_,AB = UnitDebuff(&amp;quot;player&amp;quot;, &amp;quot;Arcane Blast&amp;quot;)
    if AB &amp;gt;= 2 then
     if AM ~= nil then
      return true
     end
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>C  - Arcane  Missile</Name><Default>false</Default><SpellID>5143</SpellID><Actions>/startattack</Actions><Lua>local  AM = UnitBuff(&amp;quot;player&amp;quot;, &amp;quot;Arcane  Missiles!&amp;quot;)
    local _,_,_,AB = UnitDebuff(&amp;quot;player&amp;quot;, &amp;quot;Arcane Blast&amp;quot;)
    local EvocationStart, EvocationDuration = GetSpellCooldown(12051)
    local EvocationCooldown = (EvocationStart + EvocationDuration - GetTime())
    if EvocationCooldown &amp;gt; 3 then
     if AB &amp;gt;= 2 then
      if AM ~= nil then
       return true
      end
     end
    end</Lua><RecastDelay>14000</RecastDelay><Target>Target</Target></Ability><Ability><Name>T  - Arcane  Barrage</Name><Default>false</Default><SpellID>44425</SpellID><Actions>/startattack</Actions><Lua>local  _,_,_,AB = UnitDebuff(&amp;quot;player&amp;quot;,  &amp;quot;Arcane Blast&amp;quot;)
    local AM = UnitBuff(&amp;quot;player&amp;quot;, &amp;quot;Arcane Missiles!&amp;quot;)
    if AB == nil then
     if AM == nil then
      return true
     end
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>C  - Arcane  Barrage</Name><Default>false</Default><SpellID>44425</SpellID><Actions>/startattack</Actions><Lua>local  _,_,_,AB = UnitDebuff(&amp;quot;player&amp;quot;,  &amp;quot;Arcane Blast&amp;quot;)
    local AM = UnitBuff(&amp;quot;player&amp;quot;, &amp;quot;Arcane Missiles!&amp;quot;)
    local EvocationStart, EvocationDuration = GetSpellCooldown(12051)
    local EvocationCooldown = (EvocationStart + EvocationDuration - GetTime())
    if EvocationCooldown &amp;gt; 3 then
     if AB &amp;gt;= 3 then
      if AM == nil then
       return true
      end
     end
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>C  - Arcane Blast -  Filler</Name><Default>false</Default><SpellID>30451</SpellID><Actions>/startattack</Actions><Lua>local  _,_,_,AB = UnitDebuff(&amp;quot;player&amp;quot;,  &amp;quot;Arcane Blast&amp;quot;)
    local EvocationStart, EvocationDuration = GetSpellCooldown(12051)
    local EvocationCooldown = (EvocationStart + EvocationDuration - GetTime())
    if EvocationCooldown &amp;gt; 3 then
     if AB == nil then
      return true
     end
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>T  - Arcane  Blast</Name><Default>false</Default><SpellID>30451</SpellID><Actions></Actions><Lua>local  _,_,_,AB = UnitDebuff(&amp;quot;player&amp;quot;,  &amp;quot;Arcane Blast&amp;quot;)
    local AM = UnitBuff(&amp;quot;player&amp;quot;, &amp;quot;Arcane Missiles!&amp;quot;)
    if AB &amp;lt;= 1 then
     return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Buff  - Mage  Armor</Name><Default>false</Default><SpellID>6117</SpellID><Actions></Actions><Lua>sMA  = UnitBuffID(&amp;quot;player&amp;quot;, 6117) 
      
    if sMA == nil then
     return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Player</Target></Ability></MAGE>
    [/spoiler]

    MAGE_Rotations
    [spoiler]
    Code:
    <?xml version="1.0" encoding="utf-8"  ?><MAGE><Rotation><RotationName>Arcane</RotationName><RotationDefault>false</RotationDefault><RotationList>Make  - Mana Gem|Buff - Mage Armor|Buff - Arcane Brilliance|Flame Orb|Buff -  Arcane Power|Mirror Image|Use - Mana Gem|B - Arcane Blast|B - Arcane  Missile|Evocation|C - Arcane Blast - Filler|C - Arcane Blast|C - Arcane  Barrage|C - Arcane  Missile</RotationList></Rotation><Rotation><RotationName>Arcane  -  Trash</RotationName><RotationDefault>false</RotationDefault><RotationList>T  - Arcane Blast Filler|T - Arcane Blast|T - Arcane Barrage|T - Arcane  Missile</RotationList></Rotation></MAGE>
    [/spoiler]
    Please let me know how this works and what can be done to make better.
    This updated code is pretty good, but still got a few things you might take into considerration

    1. When starting the bot it start of by poping mana gem, when on 100% mana :S Maybe you could make it burn a little and pop Mana gem at 80% like you normally do
    2. In conserve phase the bot can easly do 5 - 6 Arcane Blasts before Arcane Missile dump. When watching MageManaBar the bot always have overflow of mana by 4 - 5k mana and when in raid you gotta take into considerration more mana regen.
    3. You can easly make the bot pop Arcane Power in conserve phase, sure it wont be as affective but since the cooldown is 1½ mins and Mirror Image is 3 mins you can use AP 2 times before Mirror Images is ready again.
    4. Why does the bot when popping the last mana gem start crafting a new gem? Its a waste of spell power buff to be crafting while buff is up :P
    5. Last thing; could you look into making the bot pop trinkets such as Moonwell Chalice together with Mana Gem?

    Thanks for making an awesom script :P and kudos to Xelper for making the bot ;D


  3. #468
    lostwalker's Avatar Member
    Reputation
    2
    Join Date
    Sep 2008
    Posts
    103
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I tried out the new hunter profile for mark and it worked really well for me. I'm only at 357 ilvl but doing 16-18k on za and zg.

  4. #469
    Amiyumi's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    15
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    You'll need to change the Name of the spells to the Russian spelling in the Locals and it should work.
    So while there name spells? If there are ID spell, except as Serpent Sting is not what is not a caste. On the paladin, not what is not changed and works. Maybe there is something left out?


    http://tinyurl.com/3gcydcs
    poprobyval these profiles on MM as a unmade does not work ...
    Last edited by Amiyumi; 08-07-2011 at 04:16 PM.

  5. #470
    R4g4t0kk's Avatar Member
    Reputation
    1
    Join Date
    Nov 2010
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Im really just a noob at this stuff, so I really need help with programing exicute. I want a few conditions

    When enemy is less then 20% HP and I have less then 5 stacks of executioner

    When I have 5 stacks of executioner and the enemy has less then 20% hp and it is less then 2 sec til executioner runs out

    Can be in one or in two abilitys, does not matter.
    Other then that I have pretty much covered the rest for the perfect fury rotation.

    executioner buff is 90806 (fairly sure aka Executioner - Spell - World of Warcraft)
    and execute is 5308

  6. #471
    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 R4g4t0kk View Post
    Im really just a noob at this stuff, so I really need help with programing exicute. I want a few conditions

    When enemy is less then 20% HP and I have less then 5 stacks of executioner

    When I have 5 stacks of executioner and the enemy has less then 20% hp and it is less then 2 sec til executioner runs out

    Can be in one or in two abilitys, does not matter.
    Other then that I have pretty much covered the rest for the perfect fury rotation.

    executioner buff is 90806 (fairly sure aka Executioner - Spell - World of Warcraft)
    and execute is 5308
    Code:
    local unithealth = 100 * UnitHealth("target") / UnitHealthMax("target")
    local hasExecutioner = UnitAura("player", "90806")
    local duration = GetSpellCooldown("90806")
    local timeleft = (duration - GetTime())
    
    if unithealth <= 20 and hasExecutioner <= 4 then
         return true
    end
    
    if unithealth <= 20 and hasExecutioner == 5 and timeleft <= 2 then
        return true
    end
    this should get you going for now.
    Last edited by crystal_tech; 08-07-2011 at 09:47 PM.

  7. #472
    R4g4t0kk's Avatar Member
    Reputation
    1
    Join Date
    Nov 2010
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    That does not solve my problem, cose I lose the 5 stacks with that, and wasting 5 gcds over and over to get the stacks up really sucks dude, but thanks for trying ^^

    Ps: it was about as far as I came, I tryed to use some coding used in other ablilitys, aka shadowpriest dots etc to get a propper timer, but I failed mabe you know what to do?

  8. #473
    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 Amiyumi View Post
    So while there name spells? If there are ID spell, except as Serpent Sting is not what is not a caste. On the paladin, not what is not changed and works. Maybe there is something left out?


    http://tinyurl.com/3gcydcs
    poprobyval these profiles on MM as a unmade does not work ...
    I'm having a hard time understanding what your trying to ask me.

    MM doesn't work for your undead hunter?
    if you could give me the russian spelling of these I'll update it for you to try.

    hunter's mark :
    Serpent Sting:
    The Beast Within:
    Chimera Shot:
    Lock and Load:

    ---------- Post added at 09:38 PM ---------- Previous post was at 09:32 PM ----------

    Originally Posted by R0w4n View Post
    This updated code is pretty good, but still got a few things you might take into considerration

    1. When starting the bot it start of by poping mana gem, when on 100% mana :S Maybe you could make it burn a little and pop Mana gem at 80% like you normally do
    2. In conserve phase the bot can easly do 5 - 6 Arcane Blasts before Arcane Missile dump. When watching MageManaBar the bot always have overflow of mana by 4 - 5k mana and when in raid you gotta take into considerration more mana regen.
    3. You can easly make the bot pop Arcane Power in conserve phase, sure it wont be as affective but since the cooldown is 1½ mins and Mirror Image is 3 mins you can use AP 2 times before Mirror Images is ready again.
    4. Why does the bot when popping the last mana gem start crafting a new gem? Its a waste of spell power buff to be crafting while buff is up :P
    5. Last thing; could you look into making the bot pop trinkets such as Moonwell Chalice together with Mana Gem?

    Thanks for making an awesom script :P and kudos to Xelper for making the bot ;D
    For trinkets, just add /use 13 and /use 14 to the ability Action box you can also do /use Mana Gem.

  9. #474
    amustrami's Avatar Member
    Reputation
    1
    Join Date
    Oct 2006
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    would it be possible to add victory rush to the warrior profiles?
    Last edited by amustrami; 08-08-2011 at 02:19 AM.

  10. #475
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks crystal, working on the latest release still. One way or another it will be out within the next couple days since I will need to update for 4.2.0a which Blizzard is going to push out Monday or Tuesday. I've been working on the 'smart hotkey' mode but its requiring some significant rewriting due to Lua tainting issues and how I currently have it all working, that probably wont be ready if 4.2.0a is pushed by Tuesday.
    Last edited by Xelper; 08-07-2011 at 11:26 PM.

  11. #476
    Amiyumi's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    15
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    I'm having a hard time understanding what your trying to ask me.

    MM doesn't work for your undead hunter?
    if you could give me the russian spelling of these I'll update it for you to try.

    hunter's mark :
    Serpent Sting:
    The Beast Within:
    Chimera Shot:
    Lock and Load:
    hunter's mark: Метка охотника
    Serpent Sting: Укус змеи
    The Beast Within: Зверь внутри
    Chimera Shot: Выстрел химеры
    Lock and Load: На изготовку!


    Here's the video:
    Video...

    Only has 3 spells:
    Serpent Sting: Укус змеи
    Steady Shot: Верный выстрел
    Rapid Fire: Быстрая стрельба

    Removed from the rotation:
    Hunter's mark: Метка охотника
    Apply indefinitely.

    PS: Google translator ^.^

  12. #477
    andryshka's Avatar Corporal
    Reputation
    11
    Join Date
    May 2011
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    client has been updated right now and bot does not detect proccess

  13. #478
    Subgraf's Avatar Member
    Reputation
    1
    Join Date
    Sep 2007
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Having the same issue.

  14. #479
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I will have an update out tonight for this, it only detects processes with the proper client version.

  15. #480
    R4g4t0kk's Avatar Member
    Reputation
    1
    Join Date
    Nov 2010
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What should I do in order to manually change what wow process it looks for? as wow just got updated.

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