SPQR - The passive DPS rotation menu

User Tag List

Page 31 of 39 FirstFirst ... 272829303132333435 ... LastLast
Results 451 to 465 of 585
  1. #451
    Koha's Avatar Member
    Reputation
    11
    Join Date
    Jun 2008
    Posts
    55
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Aroia View Post
    Hello guys,

    just need a bit help in writing a DK profile.

    Want to do a rune check, with this line

    if (MySPQR.Internals.ObjectManager.WoWLocalPlayer.GetReadyRuneCountByType(MySPQR.Pa tchables.Enums.WoWRuneType.DEATH) > 1)

    when is this returning true, as soon as one rune is completlz full and the second one is starting recharging (so i have 1.1 runes ready more or less) or at the moment when the second rune is off cooldown and i have 2 runes ready?
    And second question:
    is this function also checking runes from other slots, for example an unholy rune which is da death rune at that moment?

    thanks for your help!
    I believe from my testing when the rune has finished recharging. The rune checking seems to be slow and doesn't check properly.

    Sent from my GT-N7105 using Tapatalk

    SPQR - The passive DPS rotation
  2. #452
    Aroia's Avatar Sergeant
    Reputation
    7
    Join Date
    Nov 2012
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Koha View Post
    I believe from my testing when the rune has finished recharging. The rune checking seems to be slow and doesn't check properly.

    Sent from my GT-N7105 using Tapatalk
    Thanks for that, seems to be right that it just answeres as soon as rune is completly refilled.

    Following problem i have as well:

    Unholy i need to check if i have over 1 unholy rune to execute a spell.

    If i now blood tap and one of the unholy runes recharge as death rune, it still counts as unholy. Anybody any idea how i can fix that, so that is still not saying >1 unholy rune.

    Thanks guys.

    Regards,

  3. #453
    NicodemusAtNIMH's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    48
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Why is this not working right!

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using SPQR;
    using MySPQR;

    namespace SPQR.Engine
    {
    class Rogue : Engine.FightModule
    {
    public override string DisplayName
    {
    get {return "BA_Rogue_test"; } //This is the name displayed in SPQR's Class selection DropdownList
    }

    internal enum Spells : int //This is a convenient list of all spells used by our combat routine
    { //you can have search on Wowhead: Friendship is magic! for spell name, and get the id in the URL
    Ambush = 8676, //http://www.wowhead.com/spell=8676/ambush
    CombatReadiness = 74001, //http://www.wowhead.com/spell=74001/combat-readiness
    DeadlyPoison = 2823, //http://www.wowhead.com/spell=2823/deadly-poison
    Envenom = 32645, //http://www.wowhead.com/spell=32645/envenom
    Eviscerate = 2098, //http://www.wowhead.com/spell=2098/eviscerate
    ExposeArmor = 8647, //http://www.wowhead.com/spell=8647/expose-armor
    FanofKnives = 51723, //http://www.wowhead.com/spell=51723/fan-of-knives
    FindWeakness = 91023, //http://www.wowhead.com/spell=91023/find-weakness
    Hemorrhage = 16511, //http://www.wowhead.com/spell=16511/hemorrhage
    Kick = 1766, //http://www.wowhead.com/spell=1766/kick
    KidneyShot = 408, //http://www.wowhead.com/spell=408/kidney-shot
    LeechingPoison = 108211, //http://www.wowhead.com/spell=leeching-poison
    Mutilate = 1329, //http://www.wowhead.com/spell=1329/mutilate
    RevealingStrike = 84617, //http://www.wowhead.com/spell=84617/revealing-strike
    Recuperate = 73651, //http://www.wowhead.com/spell=73651/recuperate
    Redirect = 73981, //http://www.wowhead.com/spell=73981/redirect
    Rupture = 1943, //http://www.wowhead.com/spell=1943/rupture
    SanguinaryVein = 79147, //http://www.wowhead.com/spell=79147/sanguinary-veins
    ShadowBlades = 121471, //http://www.wowhead.com/spell=121471/shadow-blades
    ShadowDance = 51713, //http://www.wowhead.com/spell=51713/shadow-dance
    Shadowstep = 36554, //http://www.wowhead.com/spell=36554/shadowstep
    SinsterStrike = 1752, //http://www.wowhead.com/spell=1752/sinister-strike
    SliceandDice = 5171, //http://www.wowhead.com/spell=5171/slice-and-dice
    Stealth = 1784, //http://www.wowhead.com/spell=1748/stealth
    SwiftbladesCunning = 113742, //http://www.wowhead.com/spell=113742/swift-blades-cunning
    TricksoftheTrade = 57934, //http://www.wowhead.com/spell=57934/tricks-of-the-trade
    Vendetta = 79140, //http://www.wowhead.com/spell=79140/vendetta

    }

    internal enum Auras : int
    {
    SanguinaryVein = 79147,
    Stealth = 1784,
    DeadlyPoison = 2823,
    LeechingPoison = 108211,
    ExposeArmor = 8647,
    WeakendArmor = 113746,

    }

    public override void CombatLogic()
    {
    var TARGET = MySPQR.Internals.ObjectManager.Target;
    var ME = MySPQR.Internals.ObjectManager.WoWLocalPlayer;


    if (TARGET.IsCasting) //Check if the target is casting to interup
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Kick);

    if (TARGET.HasAurabyId((int)Auras.ExposeArmor));
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.ExposeArmor);

    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Hemorrhage);

    if (!ME.HasAurabyId((int)Auras.SanguinaryVein));
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.SanguinaryVein);

    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Hemorrhage);

    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Rupture);

    if (ME.ComboPoints < 4)
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Hemorrhage);

    if (TARGET.HealthPercent > 90 && ME.HealthPercent < 90)
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.CombatReadiness);

    if (ME.ComboPoints > 4)
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Rupture);

    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Eviscerate);

    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.KidneyShot);

    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Recuperate);
    }

    public override void OnLoad() //This is called when the Customclass is loaded in SPQR
    {

    }

    public override void OnClose() //This is called when the Customclass is unloaded in SPQR
    {

    }

    public override void OnStart() //This is called once, when you hit CTRL+X to start SPQR combat routine
    {

    }

    public override void OnStop() //This is called once, when you hit CTRL+X to stop SPQR combat routine
    {

    }
    }
    }

  4. #454
    Koha's Avatar Member
    Reputation
    11
    Join Date
    Jun 2008
    Posts
    55
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by NicodemusAtNIMH View Post
    Why is this not working right!

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using SPQR;
    using MySPQR;

    namespace SPQR.Engine
    {
    class Rogue : Engine.FightModule
    {
    public override string DisplayName
    {
    get {return "BA_Rogue_test"; } //This is the name displayed in SPQR's Class selection DropdownList
    }

    internal enum Spells : int //This is a convenient list of all spells used by our combat routine
    { //you can have search on Wowhead: Friendship is magic! for spell name, and get the id in the URL
    Ambush = 8676, //http://www.wowhead.com/spell=8676/ambush
    CombatReadiness = 74001, //http://www.wowhead.com/spell=74001/combat-readiness
    DeadlyPoison = 2823, //http://www.wowhead.com/spell=2823/deadly-poison
    Envenom = 32645, //http://www.wowhead.com/spell=32645/envenom
    Eviscerate = 2098, //http://www.wowhead.com/spell=2098/eviscerate
    ExposeArmor = 8647, //http://www.wowhead.com/spell=8647/expose-armor
    FanofKnives = 51723, //http://www.wowhead.com/spell=51723/fan-of-knives
    FindWeakness = 91023, //http://www.wowhead.com/spell=91023/find-weakness
    Hemorrhage = 16511, //http://www.wowhead.com/spell=16511/hemorrhage
    Kick = 1766, //http://www.wowhead.com/spell=1766/kick
    KidneyShot = 408, //http://www.wowhead.com/spell=408/kidney-shot
    LeechingPoison = 108211, //http://www.wowhead.com/spell=leeching-poison
    Mutilate = 1329, //http://www.wowhead.com/spell=1329/mutilate
    RevealingStrike = 84617, //http://www.wowhead.com/spell=84617/revealing-strike
    Recuperate = 73651, //http://www.wowhead.com/spell=73651/recuperate
    Redirect = 73981, //http://www.wowhead.com/spell=73981/redirect
    Rupture = 1943, //http://www.wowhead.com/spell=1943/rupture
    SanguinaryVein = 79147, //http://www.wowhead.com/spell=79147/sanguinary-veins
    ShadowBlades = 121471, //http://www.wowhead.com/spell=121471/shadow-blades
    ShadowDance = 51713, //http://www.wowhead.com/spell=51713/shadow-dance
    Shadowstep = 36554, //http://www.wowhead.com/spell=36554/shadowstep
    SinsterStrike = 1752, //http://www.wowhead.com/spell=1752/sinister-strike
    SliceandDice = 5171, //http://www.wowhead.com/spell=5171/slice-and-dice
    Stealth = 1784, //http://www.wowhead.com/spell=1748/stealth
    SwiftbladesCunning = 113742, //http://www.wowhead.com/spell=113742/swift-blades-cunning
    TricksoftheTrade = 57934, //http://www.wowhead.com/spell=57934/tricks-of-the-trade
    Vendetta = 79140, //http://www.wowhead.com/spell=79140/vendetta

    }

    internal enum Auras : int
    {
    SanguinaryVein = 79147,
    Stealth = 1784,
    DeadlyPoison = 2823,
    LeechingPoison = 108211,
    ExposeArmor = 8647,
    WeakendArmor = 113746,

    }

    public override void CombatLogic()
    {
    var TARGET = MySPQR.Internals.ObjectManager.Target;
    var ME = MySPQR.Internals.ObjectManager.WoWLocalPlayer;


    if (TARGET.IsCasting) //Check if the target is casting to interup
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Kick);

    if (TARGET.HasAurabyId((int)Auras.ExposeArmor));
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.ExposeArmor);

    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Hemorrhage);

    if (!ME.HasAurabyId((int)Auras.SanguinaryVein));
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.SanguinaryVein);

    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Hemorrhage);

    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Rupture);

    if (ME.ComboPoints < 4)
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Hemorrhage);

    if (TARGET.HealthPercent > 90 && ME.HealthPercent < 90)
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.CombatReadiness);

    if (ME.ComboPoints > 4)
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Rupture);

    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Eviscerate);

    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.KidneyShot);

    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Recuperate);
    }

    public override void OnLoad() //This is called when the Customclass is loaded in SPQR
    {

    }

    public override void OnClose() //This is called when the Customclass is unloaded in SPQR
    {

    }

    public override void OnStart() //This is called once, when you hit CTRL+X to start SPQR combat routine
    {

    }

    public override void OnStop() //This is called once, when you hit CTRL+X to stop SPQR combat routine
    {

    }
    }
    }
    it works like a priority so the higher up the code the sooner it will activate. I'm taking it it will just spam hemmo till you have no energy? try this

    Code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using SPQR;
    using MySPQR;
    
    namespace SPQR.Engine
    {
    class Rogue : Engine.FightModule
    {
    public override string DisplayName
    {
    get {return "BA_Rogue_test"; } //This is the name displayed in SPQR's Class selection DropdownList
    }
    
    internal enum Spells : int	 //This is a convenient list of all spells used by our combat routine
    { //you can have search on Wowhead: Friendship is magic! for spell name, and get the id in the URL
    Ambush = 8676,	 //http://www.wowhead.com/spell=8676/ambush
    CombatReadiness = 74001,	 //http://www.wowhead.com/spell=74001/combat-readiness
    DeadlyPoison = 2823,	 //http://www.wowhead.com/spell=2823/deadly-poison
    Envenom = 32645,	 //http://www.wowhead.com/spell=32645/envenom
    Eviscerate = 2098,	 //http://www.wowhead.com/spell=2098/eviscerate
    ExposeArmor = 8647,	 //http://www.wowhead.com/spell=8647/expose-armor
    FanofKnives = 51723,	 //http://www.wowhead.com/spell=51723/fan-of-knives
    FindWeakness = 91023,	 //http://www.wowhead.com/spell=91023/find-weakness
    Hemorrhage = 16511, //http://www.wowhead.com/spell=16511/hemorrhage
    Kick = 1766,	 //http://www.wowhead.com/spell=1766/kick
    KidneyShot = 408,	 //http://www.wowhead.com/spell=408/kidney-shot
    LeechingPoison = 108211,	 //http://www.wowhead.com/spell=leeching-poison
    Mutilate = 1329,	 //http://www.wowhead.com/spell=1329/mutilate
    RevealingStrike = 84617,	 //http://www.wowhead.com/spell=84617/revealing-strike
    Recuperate = 73651,	 //http://www.wowhead.com/spell=73651/recuperate
    Redirect = 73981,	 //http://www.wowhead.com/spell=73981/redirect
    Rupture = 1943,	 //http://www.wowhead.com/spell=1943/rupture
    SanguinaryVein = 79147,	 //http://www.wowhead.com/spell=79147/sanguinary-veins
    ShadowBlades = 121471,	 //http://www.wowhead.com/spell=121471/shadow-blades
    ShadowDance = 51713,	 //http://www.wowhead.com/spell=51713/shadow-dance
    Shadowstep = 36554,	 //http://www.wowhead.com/spell=36554/shadowstep
    SinsterStrike = 1752,	 //http://www.wowhead.com/spell=1752/sinister-strike
    SliceandDice = 5171,	 //http://www.wowhead.com/spell=5171/slice-and-dice
    Stealth = 1784,	 //http://www.wowhead.com/spell=1748/stealth
    SwiftbladesCunning = 113742,	 //http://www.wowhead.com/spell=113742/swift-blades-cunning
    TricksoftheTrade = 57934,	 //http://www.wowhead.com/spell=57934/tricks-of-the-trade
    Vendetta = 79140,	 //http://www.wowhead.com/spell=79140/vendetta
    
    }
    
    internal enum Auras : int
    {
    SanguinaryVein = 79147,
    Stealth = 1784,
    DeadlyPoison = 2823,
    LeechingPoison = 108211,
    ExposeArmor = 8647,
    WeakendArmor = 113746,
    
    }
    
    public override void CombatLogic()
    {
    var TARGET = MySPQR.Internals.ObjectManager.Target;
    var ME = MySPQR.Internals.ObjectManager.WoWLocalPlayer;
    
    
    if	(ME.ComboPoints > 4)
    {
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Rupture);
    
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Eviscerate);
    
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.KidneyShot);
    
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Recuperate);
    }
    
    if (TARGET.IsCasting) //Check if the target is casting to interup
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Kick);
    
    if	(!TARGET.HasAurabyId((int)Auras.ExposeArmor));
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.ExposeArmor);
    
    if	(!ME.HasAurabyId((int)Auras.SanguinaryVein));
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.SanguinaryVein);
    
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Rupture);
    
    if	(TARGET.HealthPercent > 90 && ME.HealthPercent < 90)
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.CombatReadiness);
    
    if	(ME.ComboPoints < 4)
    MySPQR.Internals.ActionBar.CastSpellById((int)Spells.Hemorrhage);
    
    }
    
    public override void OnLoad() //This is called when the Customclass is loaded in SPQR
    {
    
    }
    
    public override void OnClose() //This is called when the Customclass is unloaded in SPQR
    {
    
    }
    
    public override void OnStart() //This is called once, when you hit CTRL+X to start SPQR combat routine
    {
    
    }
    
    public override void OnStop() //This is called once, when you hit CTRL+X to stop SPQR combat routine
    {
    
    }
    }
    }

  5. #455
    Jaylock's Avatar Member
    Reputation
    13
    Join Date
    Apr 2009
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great work, I havent tried it out myself, but its always nice to see people contributing to the botting community

  6. #456
    KarmaRus's Avatar Private
    Reputation
    1
    Join Date
    Dec 2013
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can't download from Mega, can somebody upload SPQR somewhere else ?

  7. #457
    Aroia's Avatar Sergeant
    Reputation
    7
    Join Date
    Nov 2012
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    [QUOTE=KarmaRus;3045592]Can't download from Mega, can somebody upload SPQR somewhere else ?[/QUOTE

    File-Upload.net - SPQR.exe
    File-Upload.net - MySPQR.dll

  8. #458
    wowmacro's Avatar Member
    Reputation
    7
    Join Date
    Oct 2013
    Posts
    93
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Nonowmana

    I found that if I put spells on bar 4 or 5 or 6
    Spqr will not cast it ! why...

  9. #459
    KarmaRus's Avatar Private
    Reputation
    1
    Join Date
    Dec 2013
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Aroia thx, can you upload folder CustomClasses too, plz

  10. #460
    Nonowmana's Avatar Contributor
    Reputation
    125
    Join Date
    Apr 2009
    Posts
    259
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by wowmacro View Post
    @Nonowmana

    I found that if I put spells on bar 4 or 5 or 6
    Spqr will not cast it ! why...
    Check you can switch from bar 1 to 6 with you keyboard (usually Shift+bar_number).
    If you can't, somehow you had deleted your keybind for thoses actions, you can rebind them in the WoW binding UI
    Anthraxbot & SPQR Creator / Administrator

  11. #461
    wowmacro's Avatar Member
    Reputation
    7
    Join Date
    Oct 2013
    Posts
    93
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nonowmana View Post
    Check you can switch from bar 1 to 6 with you keyboard (usually Shift+bar_number).
    If you can't, somehow you had deleted your keybind for thoses actions, you can rebind them in the WoW binding UI
    For example, I put Mortal Strike on Q and I have a Shift+Q for Safeguard, then SPQR will never cast MS.
    dont know why.

  12. #462
    wanted77's Avatar Member
    Reputation
    2
    Join Date
    Jan 2013
    Posts
    60
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    After a few weeks of running SPQR within the pve environment, would love to try some pvp action. However, I dont really have any pvp scripts, does anyone out there have some pvp scripts for ranged classes? I enjoy mage/hunter/shammy etc.

    regards

  13. #463
    Nonowmana's Avatar Contributor
    Reputation
    125
    Join Date
    Apr 2009
    Posts
    259
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by wowmacro View Post
    For example, I put Mortal Strike on Q and I have a Shift+Q for Safeguard, then SPQR will never cast MS.
    dont know why.
    You must have more standard key bind to use SPQR

    Also use the debug window to show what is detected, make a crennshot and share on the thread.
    Anthraxbot & SPQR Creator / Administrator

  14. #464
    wowmacro's Avatar Member
    Reputation
    7
    Join Date
    Oct 2013
    Posts
    93
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nonowmana View Post
    You must have more standard key bind to use SPQR

    Also use the debug window to show what is detected, make a crennshot and share on the thread.
    is this same with ur new bot antrax ?

  15. #465
    rail3r85's Avatar Member
    Reputation
    2
    Join Date
    Jan 2014
    Posts
    30
    Thanks G/R
    0/1
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It would be nice to see dot strenght tracking in SPQR, feral kittys take huge hit without it specially with Rune of Re-Origination

Page 31 of 39 FirstFirst ... 272829303132333435 ... LastLast

Similar Threads

  1. WOW Macro Library (DPS Rotations, Healing, Tanking, etc)
    By Viral Fly-by in forum WoW UI, Macros and Talent Specs
    Replies: 463
    Last Post: 07-05-2014, 09:31 AM
  2. DPSCycle - DPS Rotation helper addon
    By Vasar in forum WoW UI, Macros and Talent Specs
    Replies: 5
    Last Post: 11-07-2009, 06:23 PM
  3. [Guide] DPS Rotation for ALL CLASSES!
    By [AfterBurner] in forum World of Warcraft Guides
    Replies: 46
    Last Post: 10-23-2009, 04:45 AM
  4. DK dps rotation macro(blood/unholy)
    By Shakenbaken2 in forum WoW UI, Macros and Talent Specs
    Replies: 7
    Last Post: 08-05-2009, 11:10 AM
  5. Whats the best dps class?
    By Fragz1lla in forum World of Warcraft General
    Replies: 5
    Last Post: 01-28-2009, 06:43 PM
All times are GMT -5. The time now is 10:54 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