[PE] TeamPhoenix menu

Shout-Out

User Tag List

Page 7 of 18 FirstFirst ... 34567891011 ... LastLast
Results 91 to 105 of 270
  1. #91
    akeon1's Avatar Contributor
    Reputation
    103
    Join Date
    Sep 2011
    Posts
    265
    Thanks G/R
    3/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Elemental Mastery update to Ele shaman.

    for all you shammies out there tossing up over what talent to go with... read this:
    Elemental Talent's and you!

    [PE] TeamPhoenix
  2. #92
    akeon1's Avatar Contributor
    Reputation
    103
    Join Date
    Sep 2011
    Posts
    265
    Thanks G/R
    3/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Another ele update, this time doing stuff resulting in a dps gain.

    will burn lava burst charges before using ascendance.

  3. #93
    nightwish2's Avatar Member
    Reputation
    5
    Join Date
    Nov 2013
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    There's a pretty significant loss in arcane dps due to how supernova is currently working. It is now being cast at cooldown whenever Incanter's Flow is at 4-5 stacks. The problem is that supernova is casted even when the Prismatic Crystal is off cooldown (or close to being off cooldown) resulting in supernova being on cooldown while Prismatic Crystal is up. The PC+SN combo is the whole reason for taking Supernova.

    The logic should look something like this:
    if PC exists and IF >=4, cast Supernova
    else If incanters flow >= 4 AND PC cooldown timer > 50s, cast all charges of Supernova
    else If incanters flow >= 4 AND PC cooldown timer > 25s, cast one charge of Supernova

    The idea here is to allow Supernova charges to always be available when the Prismatic Crystal is casted.

    Thanks

  4. #94
    akeon1's Avatar Contributor
    Reputation
    103
    Join Date
    Sep 2011
    Posts
    265
    Thanks G/R
    3/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nightwish2 View Post
    There's a pretty significant loss in arcane dps due to how supernova is currently working. It is now being cast at cooldown whenever Incanter's Flow is at 4-5 stacks. The problem is that supernova is casted even when the Prismatic Crystal is off cooldown (or close to being off cooldown) resulting in supernova being on cooldown while Prismatic Crystal is up. The PC+SN combo is the whole reason for taking Supernova.

    The logic should look something like this:
    if PC exists and IF >=4, cast Supernova
    else If incanters flow >= 4 AND PC cooldown timer > 50s, cast all charges of Supernova
    else If incanters flow >= 4 AND PC cooldown timer > 25s, cast one charge of Supernova

    The idea here is to allow Supernova charges to always be available when the Prismatic Crystal is casted.

    Thanks
    i think i get what you mean,

    cause was actually because i screwed up a bit of code.

    just trying to work out a cleaner way to write it than i currently have. stand by.

  5. #95
    akeon1's Avatar Contributor
    Reputation
    103
    Join Date
    Sep 2011
    Posts
    265
    Thanks G/R
    3/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nightwish2 View Post
    There's a pretty significant loss in arcane dps due to how supernova is currently working. It is now being cast at cooldown whenever Incanter's Flow is at 4-5 stacks. The problem is that supernova is casted even when the Prismatic Crystal is off cooldown (or close to being off cooldown) resulting in supernova being on cooldown while Prismatic Crystal is up. The PC+SN combo is the whole reason for taking Supernova.

    The logic should look something like this:
    if PC exists and IF >=4, cast Supernova
    else If incanters flow >= 4 AND PC cooldown timer > 50s, cast all charges of Supernova
    else If incanters flow >= 4 AND PC cooldown timer > 25s, cast one charge of Supernova

    The idea here is to allow Supernova charges to always be available when the Prismatic Crystal is casted.

    Thanks
    OK so here is my proposed solution

    It looks like a dogs breakfast but that is more to cater for people who dont pick both talents together (Flow and Prismatic).

    -- Special SupaNova logics
    {{ --PrismaticNovaFlow
    { "Supernova", { "player.totem(Prismatic Crystal)" } },
    { "Supernova", { "player.spell(Prismatic Crystal).cooldown > 50", "player.spell(Supernova).charges >= 1" } },
    { "Supernova", { "player.spell(Prismatic Crystal).cooldown > 25", "player.spell(Supernova).charges > 1" } }
    }, { "player.debuff(Arcane Charge).count = 4", "player.buff(Incanter's Flow).count >= 4", "talent(7, 2)" } },
    {{ --PrismaticNova
    { "Supernova", { "player.totem(Prismatic Crystal)" } },
    { "Supernova", { "player.spell(Prismatic Crystal).cooldown > 50", "player.spell(Supernova).charges >= 1" } },
    { "Supernova", { "player.spell(Prismatic Crystal).cooldown > 25", "player.spell(Supernova).charges > 1" } }
    }, { "player.debuff(Arcane Charge).count = 4", "!talent(6, 3)", "talent(7, 2)" } },
    --NovaFlow
    { "Supernova", { "player.debuff(Arcane Charge).count = 4", "player.buff(Incanter's Flow).count >= 4", "!talent(7, 2)", "talent(6, 3)" } },
    --Nova
    { "Supernova", { "player.debuff(Arcane Charge).count = 4", "!talent(7, 2)", "!talent(6, 3)" } },

    I have NOT uploaded this yet as i have a new SmartAE function to test on all rotations first - but wanted you to have a look and see if that matched what you were expecting.
    Last edited by akeon1; 04-07-2015 at 02:23 AM.

  6. #96
    nightwish2's Avatar Member
    Reputation
    5
    Join Date
    Nov 2013
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Checked the code and it looks good

  7. #97
    akeon1's Avatar Contributor
    Reputation
    103
    Join Date
    Sep 2011
    Posts
    265
    Thanks G/R
    3/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nightwish2 View Post
    Checked the code and it looks good
    *All rotations and specs updated to fix SmartAE in raids. (Many thanks to StinkyTwitch)
    Fix supernova in arcane rotation
    Fix chain lightning distance in ele rotation

    This is a mandatory update for everyone and is now live.


    *Reminder, this is a PE issue and the "fix" is really a workaround.

  8. #98
    nightwish2's Avatar Member
    Reputation
    5
    Join Date
    Nov 2013
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great work. Tested it out and works well.

    Another problem (Sorry lol) I noticed when fighting Kromog is that Prismatic Crystal does not work. The mage is apparently trying to place the crystal on the boss instead of in front of it, which results in the rotation being stuck in an infinite loop since it is never going to be able to place the crystal on the boss.

    Can a special case be made for kromog where the crystal is placed in front of him rather than on him?
    Last edited by nightwish2; 04-07-2015 at 07:35 AM.

  9. #99
    StinkyTwitch's Avatar Active Member
    Reputation
    40
    Join Date
    Nov 2014
    Posts
    172
    Thanks G/R
    19/13
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have a fix for that nightwish2. I'll hook Akeon up with it.
    "Shootings easy, Aimings hard!" Stinky

  10. #100
    akeon1's Avatar Contributor
    Reputation
    103
    Join Date
    Sep 2011
    Posts
    265
    Thanks G/R
    3/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nightwish2 View Post
    Great work. Tested it out and works well.

    Another problem (Sorry lol) I noticed when fighting Kromog is that Prismatic Crystal does not work. The mage is apparently trying to place the crystal on the boss instead of in front of it, which results in the rotation being stuck in an infinite loop since it is never going to be able to place the crystal on the boss.

    Can a special case be made for kromog where the crystal is placed in front of him rather than on him?
    Don't apologise for suggesting improvements
    I take an iterative approach to these rotations - normally in waves depending on what I am currently playing.
    If I don't play it, then I rely on you guys to suggest improvements.


    Will hopefully have an update for you soon.
    Last edited by akeon1; 04-07-2015 at 08:24 PM.

  11. #101
    akeon1's Avatar Contributor
    Reputation
    103
    Join Date
    Sep 2011
    Posts
    265
    Thanks G/R
    3/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nightwish2 View Post
    Great work. Tested it out and works well.

    Another problem (Sorry lol) I noticed when fighting Kromog is that Prismatic Crystal does not work. The mage is apparently trying to place the crystal on the boss instead of in front of it, which results in the rotation being stuck in an infinite loop since it is never going to be able to place the crystal on the boss.

    Can a special case be made for kromog where the crystal is placed in front of him rather than on him?
    Should be fixed now.

    Please update and confirm

  12. #102
    nightwish2's Avatar Member
    Reputation
    5
    Join Date
    Nov 2013
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks, haven't tested on Kromog yet but did test it on Oregorger where I was facing a similar issue. Will be testing on Kromog soon.

  13. #103
    bauwoo's Avatar Master Sergeant
    Reputation
    5
    Join Date
    Feb 2012
    Posts
    95
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey Akeon,

    Your new Smart AOE doesn't seem to be working for me. AOE doesn't activate at all. Multiswitch is on and on a fresh install of PE and your rotation. WTF cleared. PE r16. There are no LUA errors this time though. Weird.

    Another bug I see is that maintaining sacred shield in the rotation doesn't happen. It activates when you're in combat and are out of range of melee attacks but once you get back in it doesn't refresh again. Again, no LUA errors to report.

  14. #104
    akeon1's Avatar Contributor
    Reputation
    103
    Join Date
    Sep 2011
    Posts
    265
    Thanks G/R
    3/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bauwoo View Post
    Hey Akeon,

    Your new Smart AOE doesn't seem to be working for me. AOE doesn't activate at all. Multiswitch is on and on a fresh install of PE and your rotation. WTF cleared. PE r16. There are no LUA errors this time though. Weird.

    Another bug I see is that maintaining sacred shield in the rotation doesn't happen. It activates when you're in combat and are out of range of melee attacks but once you get back in it doesn't refresh again. Again, no LUA errors to report.
    Fixed sacred shield.

    As for Smart AE i was using it last night. What lua unlock are you using

  15. #105
    bauwoo's Avatar Master Sergeant
    Reputation
    5
    Join Date
    Feb 2012
    Posts
    95
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by akeon1 View Post
    Fixed sacred shield.

    As for Smart AE i was using it last night. What lua unlock are you using
    I'm using Firehack. What one are you using?
    Last edited by bauwoo; 04-09-2015 at 06:36 PM.

Page 7 of 18 FirstFirst ... 34567891011 ... LastLast
All times are GMT -5. The time now is 12:34 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