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

User Tag List

Page 223 of 731 FirstFirst ... 123173219220221222223224225226227273323723 ... LastLast
Results 3,331 to 3,345 of 10955
  1. #3331
    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)
    @jadethread1: I will take a quick look at the 3.3.5a client. If it is possible for me to do this I will let you know.

    Can you verify the build number for 3.3.5a... is it 12340?
    Last edited by Xelper; 12-20-2011 at 08:34 PM.

    [BETA] PQRotation - an automated ability priority queue.
  2. #3332
    ticklets's Avatar Member
    Reputation
    51
    Join Date
    Jun 2009
    Posts
    88
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I don't know if you should waste your time xelper. Even if you get the program to work, the profiles will then need to be adjusted for 3.3.5a considering there was a massive talent overhaul during 4.0.

    Unless he is willing to do that himself.

  3. #3333
    imdasandman's Avatar Contributor
    Reputation
    206
    Join Date
    Feb 2011
    Posts
    965
    Thanks G/R
    9/4
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ticklets View Post
    I don't know if you should waste your time xelper. Even if you get the program to work, the profiles will then need to be adjusted for 3.3.5a considering there was a massive talent overhaul during 4.0.

    Unless he is willing to do that himself.
    jade said "Yes, I will rewrite profiles to match 3.3.5a I just need the offsets for 3.3.5a as I don't know how to get them. Still wondering if its possible to get them :/"

  4. #3334
    fmagretto's Avatar Active Member
    Reputation
    16
    Join Date
    Oct 2011
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Ret Pally Event Profile

    Ok after spending all day and the last few days doing this I'm finally done rewriting my Retribution Paladin profile to use events to check for procs/buffs/debuffs/holy power/AOE-switch. I have the code there to be used for a PVP Trinket or Racial, PQ_HasLossOfControl is a boolean that will be TRUE if you are in combat and you lose control of your toon. So if you want to add the ability for pvp trinket or Every Man For Himself just put this in as the LUA code:

    Code:
    If PQ_HasLossOfControl then return true end
    simple as that since PQ_HasLossOfControl is set by the event PLAYER_CONTROL_LOST. I use events to set the Single Target/AOE switch so once you load the profile you can press LEFT CTRL to switch between AOE/Single and a message will display in chat saying which you are currently on and you can switch it out of combat and even after you switch profiles.

    Right now this is basically the same profile as before but with the event handling the checks, I wanted to get it out there for people to test/use. There are still changes I want to make to it like a change to when GoAK is used and maybe some optimization if possible. I believe I've reached either the limit of PQR speed-wise or just the limit regarding my cooldowns for my pally. There are still times when the rotation pauses but in this version it seems to only be after holy wrath which would mean i'm on cooldown but it can run for minutes at a time with a steady stream of abilities all overlaping each other as visible in PQRinterface. Eventually I might add a GUI frame to display some info and I want to make a pvp profile but either I need to learn how to ret pally pvp or find someone who is good at it (anyone?). Right now I'm going to shift gears and apply this same event princaple to bubu's frost DK profile (well DK in general, I want to use the events to handle the rune cooldowns)

    Note: Don't trust the word of glory or flash of light abilities in the list, they are not in the one rotation i provided and i only tested the abilities in that rotation.

    Here are the values/functions that you might need when adding or changing abilities in this profile.

    PQ_Buffs[PQ_DivinePurpose].hasBuff
    PQ_Buffs[PQ_AvengingWrath].hasBuff
    PQ_Buffs[PQ_ArtOfWar].hasBuff
    PQ_Buffs[PQ_SealOfTruth].hasBuff
    PQ_Buffs[PQ_SealOfRight].hasBuff
    PQ_Buffs[PQ_Inquisition].hasBuff


    PQ_GetTimeLeftBuff(buff) Pass in the buff you want to check in PQ_ format, ie PQ_GetTimeLeftBuff(PQ_Inquisition) and will return time left in seconds
    PQ_GetTargetHP() Returns targets health as a percentage
    PQ_GetPlayerUP() Returns player's mana as a percentage
    PQ_GetPlayerHP() Returns players HEALTH (not holy power) as a percentage
    PQ_AOESwitchState True if AOE mode nil if single target
    PQ_HolyPower Number of holy power you have 0,1,2 or 3


    If you're a profile writer take a look at ---Loader--- (the pally handling code) and ---Event Loader--- (the event handling code) if anyone wants i'll post the two lua files that i developed them in (made it much easier to write and test). If you try using events or large functions i would advise getting the addon Wowlua and Event Tracker to test the code in game.

    In case it's the first time using it the modifiers are

    Left Ctrl : Tap to switch AOE/Single Target
    Shift : Hold to pause
    Left Alt : Press (might need to hold till casts) Hammer of Justice (Stun) on mouseover

    Download the new profile here:
    MEGAUPLOAD - The leading online storage and file delivery service
    Last edited by fmagretto; 12-20-2011 at 10:42 PM.

  5. #3335
    Pwnzor187's Avatar Master Sergeant
    Reputation
    23
    Join Date
    Jan 2011
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is their a way to change the ret rotation to work better with 2 piece tier 13?

  6. #3336
    averykey's Avatar Contributor
    Reputation
    158
    Join Date
    Dec 2011
    Posts
    448
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by fmagretto View Post
    Ok after spending all day and the last few days doing this I'm finally done rewriting my Retribution Paladin profile to use events to check for procs/buffs/debuffs/holy power/AOE-switch. I have the code there to be used for a PVP Trinket or Racial, PQ_HasLossOfControl is a boolean that will be TRUE if you are in combat and you lose control of your toon. So if you want to add the ability for pvp trinket or Every Man For Himself just put this in as the LUA code:

    Code:
    If PQ_HasLossOfControl then return true end
    simple as that since PQ_HasLossOfControl is set by the event PLAYER_CONTROL_LOST. I use events to set the Single Target/AOE switch so once you load the profile you can press LEFT CTRL to switch between AOE/Single and a message will display in chat saying which you are currently on and you can switch it out of combat and even after you switch profiles.

    Right now this is basically the same profile as before but with the event handling the checks, I wanted to get it out there for people to test/use. There are still changes I want to make to it like a change to when GoAK is used and maybe some optimization if possible. I believe I've reached either the limit of PQR speed-wise or just the limit regarding my cooldowns for my pally. There are still times when the rotation pauses but in this version it seems to only be after holy wrath which would mean i'm on cooldown but it can run for minutes at a time with a steady stream of abilities all overlaping each other as visible in PQRinterface. Eventually I might add a GUI frame to display some info and I want to make a pvp profile but either I need to learn how to ret pally pvp or find someone who is good at it (anyone?). Right now I'm going to shift gears and apply this same event princaple to bubu's frost DK profile (well DK in general, I want to use the events to handle the rune cooldowns)

    Note: Don't trust the word of glory or flash of light abilities in the list, they are not in the one rotation i provided and i only tested the abilities in that rotation.

    Here are the values/functions that you might need when adding or changing abilities in this profile.

    PQ_Buffs[PQ_DivinePurpose].hasBuff
    PQ_Buffs[PQ_AvengingWrath].hasBuff
    PQ_Buffs[PQ_ArtOfWar].hasBuff
    PQ_Buffs[PQ_SealOfTruth].hasBuff
    PQ_Buffs[PQ_SealOfRight].hasBuff
    PQ_Buffs[PQ_Inquisition].hasBuff


    PQ_GetTimeLeftBuff(buff) Pass in the buff you want to check in PQ_ format, ie PQ_GetTimeLeftBuff(PQ_Inquisition) and will return time left in seconds
    PQ_GetTargetHP() Returns targets health as a percentage
    PQ_GetPlayerUP() Returns player's mana as a percentage
    PQ_GetPlayerHP() Returns players HEALTH (not holy power) as a percentage
    PQ_AOESwitchState True if AOE mode nil if single target
    PQ_HolyPower Number of holy power you have 0,1,2 or 3


    If you're a profile writer take a look at ---Loader--- (the pally handling code) and ---Event Loader--- (the event handling code) if anyone wants i'll post the two lua files that i developed them in (made it much easier to write and test). If you try using events or large functions i would advise getting the addon Wowlua and Event Tracker to test the code in game.

    In case it's the first time using it the modifiers are

    Left Ctrl : Tap to switch AOE/Single Target
    Shift : Hold to pause
    Left Alt : Press (might need to hold till casts) Hammer of Justice (Stun) on mouseover

    Download the new profile here:
    MEGAUPLOAD - The leading online storage and file delivery service
    I was testing on a dummy and with the even driven system, i think it would be better dps if exorcism or hammer of wrath was higher above crusader strike unless you had 2 holy power, and can you also make a 2p t13 edit so judgement is right after crusader if 1 hp unless exorcism or hammer of wrath.

    edit: i have also noticed inquisition falls off quite a bit maybe have it start looking to refresh if at 5 secs or if 5 and a half seconds is possible. Having to refresh after it falls off is a dps loss.

  7. #3337
    fmagretto's Avatar Active Member
    Reputation
    16
    Join Date
    Oct 2011
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by averykey View Post
    I was testing on a dummy and with the even driven system, i think it would be better dps if exorcism or hammer of wrath was higher above crusader strike unless you had 2 holy power, and can you also make a 2p t13 edit so judgement is right after crusader if 1 hp unless exorcism or hammer of wrath.

    edit: i have also noticed inquisition falls off quite a bit maybe have it start looking to refresh if at 5 secs or if 5 and a half seconds is possible. Having to refresh after it falls off is a dps loss.
    For some reason every time you post it annoys me.....but thats not here or there....

    First to respond to you and Pwnzor187: I will not craft a rotation around 2pc armor bonus at this point in time, it's improbable to assume everyone using it has the two piece a few weeks after 4.3 came out and I want the profile to be used by as many people as possible. Once i'm happy with the profile then maybe i'll make a copy of it with the tweaks for the 2pc tier13 bonus which brings me to my next point....

    If you read my whole post this release is suppose to be a different version of the SAME rotation and SAME logic that i had release previously just with the buff/proc/debuff checks being handled by events and not polling API calls. The purpose of me releasing it now was to make sure the events are doing their just as well or better then the previous version. I released this version to make sure that it still WORKS for everyone still not to get a wishlist from them. As for the Inquisition comment I'll look into it but it should drop off at the same rate as the last one did since it uses the same logic....

    Also don't judge something off 10 minutes on a training dummy...I quote EJ in saying
    What you do on a training dummy is irrelevant, not only is your sample data far too small to rule out RNG, you're also missing lots of buffs/target debuffs that will change the way certain talents perform.

  8. #3338
    Zemnexx's Avatar Active Member CoreCoins Purchaser
    Reputation
    31
    Join Date
    Aug 2011
    Posts
    141
    Thanks G/R
    1/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by fmagretto View Post
    Ok after spending all day and the last few days doing this I'm finally done rewriting my Retribution Paladin profile to use events to check for procs/buffs/debuffs/holy power/AOE-switch. I have the code there to be used for a PVP Trinket or Racial, PQ_HasLossOfControl is a boolean that will be TRUE if you are in combat and you lose control of your toon. So if you want to add the ability for pvp trinket or Every Man For Himself just put this in as the LUA code:

    Code:
    If PQ_HasLossOfControl then return true end
    simple as that since PQ_HasLossOfControl is set by the event PLAYER_CONTROL_LOST. I use events to set the Single Target/AOE switch so once you load the profile you can press LEFT CTRL to switch between AOE/Single and a message will display in chat saying which you are currently on and you can switch it out of combat and even after you switch profiles.

    Right now this is basically the same profile as before but with the event handling the checks, I wanted to get it out there for people to test/use. There are still changes I want to make to it like a change to when GoAK is used and maybe some optimization if possible. I believe I've reached either the limit of PQR speed-wise or just the limit regarding my cooldowns for my pally. There are still times when the rotation pauses but in this version it seems to only be after holy wrath which would mean i'm on cooldown but it can run for minutes at a time with a steady stream of abilities all overlaping each other as visible in PQRinterface. Eventually I might add a GUI frame to display some info and I want to make a pvp profile but either I need to learn how to ret pally pvp or find someone who is good at it (anyone?). Right now I'm going to shift gears and apply this same event princaple to bubu's frost DK profile (well DK in general, I want to use the events to handle the rune cooldowns)

    Note: Don't trust the word of glory or flash of light abilities in the list, they are not in the one rotation i provided and i only tested the abilities in that rotation.

    Here are the values/functions that you might need when adding or changing abilities in this profile.

    PQ_Buffs[PQ_DivinePurpose].hasBuff
    PQ_Buffs[PQ_AvengingWrath].hasBuff
    PQ_Buffs[PQ_ArtOfWar].hasBuff
    PQ_Buffs[PQ_SealOfTruth].hasBuff
    PQ_Buffs[PQ_SealOfRight].hasBuff
    PQ_Buffs[PQ_Inquisition].hasBuff


    PQ_GetTimeLeftBuff(buff) Pass in the buff you want to check in PQ_ format, ie PQ_GetTimeLeftBuff(PQ_Inquisition) and will return time left in seconds
    PQ_GetTargetHP() Returns targets health as a percentage
    PQ_GetPlayerUP() Returns player's mana as a percentage
    PQ_GetPlayerHP() Returns players HEALTH (not holy power) as a percentage
    PQ_AOESwitchState True if AOE mode nil if single target
    PQ_HolyPower Number of holy power you have 0,1,2 or 3


    If you're a profile writer take a look at ---Loader--- (the pally handling code) and ---Event Loader--- (the event handling code) if anyone wants i'll post the two lua files that i developed them in (made it much easier to write and test). If you try using events or large functions i would advise getting the addon Wowlua and Event Tracker to test the code in game.

    In case it's the first time using it the modifiers are

    Left Ctrl : Tap to switch AOE/Single Target
    Shift : Hold to pause
    Left Alt : Press (might need to hold till casts) Hammer of Justice (Stun) on mouseover

    Download the new profile here:
    MEGAUPLOAD - The leading online storage and file delivery service
    Looks like we got a legit LUA coder up in this piece. Let me shamelessly steal your code!

  9. #3339
    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)
    Originally Posted by fmagretto View Post
    Ok after spending all day and the last few days doing this I'm finally done rewriting my Retribution Paladin profile to use events to check for procs/buffs/debuffs/holy power/AOE-switch. I have the code there to be used for a PVP Trinket or Racial, PQ_HasLossOfControl is a boolean that will be TRUE if you are in combat and you lose control of your toon. So if you want to add the ability for pvp trinket or Every Man For Himself just put this in as the LUA code:

    Code:
    If PQ_HasLossOfControl then return true end
    simple as that since PQ_HasLossOfControl is set by the event PLAYER_CONTROL_LOST. I use events to set the Single Target/AOE switch so once you load the profile you can press LEFT CTRL to switch between AOE/Single and a message will display in chat saying which you are currently on and you can switch it out of combat and even after you switch profiles.

    Right now this is basically the same profile as before but with the event handling the checks, I wanted to get it out there for people to test/use. There are still changes I want to make to it like a change to when GoAK is used and maybe some optimization if possible. I believe I've reached either the limit of PQR speed-wise or just the limit regarding my cooldowns for my pally. There are still times when the rotation pauses but in this version it seems to only be after holy wrath which would mean i'm on cooldown but it can run for minutes at a time with a steady stream of abilities all overlaping each other as visible in PQRinterface. Eventually I might add a GUI frame to display some info and I want to make a pvp profile but either I need to learn how to ret pally pvp or find someone who is good at it (anyone?). Right now I'm going to shift gears and apply this same event princaple to bubu's frost DK profile (well DK in general, I want to use the events to handle the rune cooldowns)

    Note: Don't trust the word of glory or flash of light abilities in the list, they are not in the one rotation i provided and i only tested the abilities in that rotation.

    Here are the values/functions that you might need when adding or changing abilities in this profile.

    PQ_Buffs[PQ_DivinePurpose].hasBuff
    PQ_Buffs[PQ_AvengingWrath].hasBuff
    PQ_Buffs[PQ_ArtOfWar].hasBuff
    PQ_Buffs[PQ_SealOfTruth].hasBuff
    PQ_Buffs[PQ_SealOfRight].hasBuff
    PQ_Buffs[PQ_Inquisition].hasBuff


    PQ_GetTimeLeftBuff(buff) Pass in the buff you want to check in PQ_ format, ie PQ_GetTimeLeftBuff(PQ_Inquisition) and will return time left in seconds
    PQ_GetTargetHP() Returns targets health as a percentage
    PQ_GetPlayerUP() Returns player's mana as a percentage
    PQ_GetPlayerHP() Returns players HEALTH (not holy power) as a percentage
    PQ_AOESwitchState True if AOE mode nil if single target
    PQ_HolyPower Number of holy power you have 0,1,2 or 3


    If you're a profile writer take a look at ---Loader--- (the pally handling code) and ---Event Loader--- (the event handling code) if anyone wants i'll post the two lua files that i developed them in (made it much easier to write and test). If you try using events or large functions i would advise getting the addon Wowlua and Event Tracker to test the code in game.

    In case it's the first time using it the modifiers are

    Left Ctrl : Tap to switch AOE/Single Target
    Shift : Hold to pause
    Left Alt : Press (might need to hold till casts) Hammer of Justice (Stun) on mouseover

    Download the new profile here:
    MEGAUPLOAD - The leading online storage and file delivery service

    Now that's legit shit man
    Love you for this! <3

  10. #3340
    expunge's Avatar Knight-Lieutenant
    Reputation
    17
    Join Date
    Nov 2011
    Posts
    226
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by fmagretto View Post
    Are you saying that none of the rotations work? Are you a level 85 ret-specced pally? If you are not 85 the profile will not work since i did not add checks to see if you have learned the spells before trying to cast. You should be choosing 'Ret Raid' as the profile and the combat setting to 'Rotation Designated'. Are you using PQRInterface addon? if not (or if you are turn it off) and click 'Show Settings' in PQRotation and check the 'Debug Mode' option in the bottom left hand corner and it will show what spells it's trying to cast in your chat frame. Let me know what it's getting stuck on. Also if your client is not the enUS client there may be localization issues, if that's the case let me know and i'll make sure it's more universal in version i'm releasing today or tomorrow.
    He is probably running into what I ran into. When you start the rotation it gets to GoAK and stops. I'm only level 82 but removing goak from the list made it work perfectly. Tanks are pissed at my threat output in dungeons.
    Last edited by expunge; 12-21-2011 at 03:06 AM. Reason: herp'd the reason.

  11. #3341
    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)
    Think this came from Bubba's Holy Pally profile. Was wondering if someone could add fear to this cleansing code.

    local greencauldron = UnitDebuffID(PQR_CustomTarget, 9632
    local bluecauldron = UnitDebuffID(PQR_CustomTarget, 96325)
    local redcauldron = UnitDebuffID(PQR_CustomTarget, 96326)
    local blackout10 = UnitDebuffID(PQR_CustomTarget, 92876)
    local blackout25 = UnitDebuffID(PQR_CustomTarget, 9287
    local unstableaf = UnitDebuffID(PQR_CustomTarget, 3010
    local VT = UnitDebuffID(PQR_CustomTarget, 34941)

    if greencauldron or bluecauldron or redcauldron or blackout10 or blackout25 or unstableaf or VT then
    return false
    else
    for i=1,40 do
    local _,_,_,count,ismagic,duration = UnitDebuff(PQR_CustomTarget,i)
    if ismagic == "Magic" or ismagic == "Disease" or ismagic == "Poison" then
    if duration > 6 and count ~= 1 then
    return true
    end
    end
    end
    end

  12. #3342
    ace99ro's Avatar Sergeant Major
    Reputation
    9
    Join Date
    Dec 2011
    Posts
    173
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    very nice stuff guys , just tested this , it works great but with a few tweaks ...

    im talking about Bubba's DK FROST rotation .... what i have changed is that i edited the Frost Strike runic power detection , be default it was set > 60 RP and that was a waste of 1 x FS maybe 2 in some cases and some down time too ... i just edited that to > 32 RP ( the cost of a FS ) , and moved the last Howling Blast up BEFORE the last Frost Strike , so 1 extra HB along the way

    all in all great job , thank you a lot

  13. #3343
    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)
    Playing around with the Holy Paladin profile to try and improve it (Mana drain on Spine and madness of deathwing is crazy, no not LFR)

    The profile currently does not use Light of Dawn

    Does anyone have the code that will work for this?

    *EDIT*

    Would it be something like this

    Code:
      <Ability>
        <Name>Light of Dawn</Name>
        <Default>false</Default>
        <SpellID>85222</SpellID>
        <Lua>
    
          local myHolyPower = UnitPower(&amp;quot;player&amp;quot;, 9)
          local myMana = 100 * UnitPower(&amp;quot;player&amp;quot;) / UnitPowerMax(&amp;quot;player&amp;quot;)
    
          if lowhpmembers &amp;gt;= 3 and myMana &amp;gt;10 and myHolyPower == 2 then 
            return true
          end
    
        </Lua>
        <RecastDelay>100</RecastDelay>
        <Target>Player</Target>
      </Ability>
    Last edited by Lofty; 12-21-2011 at 08:20 AM.

  14. #3344
    Master34's Avatar Master Sergeant
    Reputation
    2
    Join Date
    Nov 2011
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    since last 2 days, pqr keep disconnect me, anyone has the same issue?

  15. #3345
    ace99ro's Avatar Sergeant Major
    Reputation
    9
    Join Date
    Dec 2011
    Posts
    173
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yeah i have the same problem with DC ... but it seems to be blizzards fault ... lots of people getting random DC

    ---------- Post added at 06:41 PM ---------- Previous post was at 05:00 PM ----------

    im gonna revise that ... the DC's are caused by this program ... i got 13-14 DCs during 4 LFR bosses ... on DW i closed it after a wipe during witch i got 4 DCs ... used Lazybot Rotator ... and no DC's ... so pls dev's fix it ... it does an awesome job

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 03:25 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