找回密码
 立即注册

手机短信,快捷登录

搜索

FeralAuras

[复制链接]
 楼主| 发表于 2023-6-12 09:46:13 | 显示全部楼层 |阅读模式
WeakAura for feral DPS druids

- Combo points. Lighting up when you have 5 points (shown in cat form only)
- Energy bar with energy tick (shown in cat form only)
- Rage bar (shown in bear form only)
- Health bar (shown in caster form, in place of the rage/energy bar)
- Mana bar with mana tick and mp5 delay
- MCP tracker. Tracks number of MCP charges in your bag, and on your current equipped weapon. Also shows you the icon for current equipped weapon and the cooldown on the weapon. This is replaced by MCP haste buff when that is active
- Faerie fire timer

Final component is optimal DPS rotation display. It shows the optimal next spell to cast, using the rotation rules provided by Shedo in his youtube guide. It checks your current energy level, whether you have clearcasting, how much mana you have (for powershifting),how many combo points you have and whether you are autoattacking

function()
    local next_spell;
    local autoattacking = IsCurrentSpell(6603);
    local cur_energy = UnitPower("player", 3);
    local cur_mana = UnitPower("player", 0);
    local combo_pts = GetComboPoints("player", "target");
    local clearcasting = false;
    for i = 1, 40 do
        local _, _, _, _, _, _, _, _, _, spellId = UnitBuff("player", i)
        if spellId == nil then
            break;
        elseif spellId == 16870 then
            clearcasting = true;
            break;
        end;
    end;
   
   
    if clearcasting then
        next_spell = 136170; -- Clearcasting
    elseif (not autoattacking and cur_energy == 100) then
        next_spell = 132242; -- Tigers Fury
    elseif (combo_pts == 5 and cur_energy < 15) then
        next_spell = 132115; -- Cat Form
    elseif (combo_pts == 5 and cur_energy < 63) then
        next_spell = 132127; -- Ferocious Bite
    elseif (cur_energy < 28 and cur_mana > 479) then
        next_spell = 132115; -- Cat Form
    else
        next_spell = 136231; -- Shred
    end;
    return next_spell;
end;
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|魔兽世界玩家社区APP官网 ( 鄂ICP备20007009号-6 )

GMT+8, 2025-7-10 22:12 , Processed in 0.178047 second(s), 6 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表