[PE][Legion] Fury Warrior menu

User Tag List

Page 2 of 2 FirstFirst 12
Results 16 to 18 of 18
  1. #16
    sldfjfsd's Avatar Member
    Reputation
    1
    Join Date
    Oct 2016
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by glalizas View Post
    Charge and Heroic Leap working for you?
    working but not without issues. sometimes it skips it, so i do it manually

    [PE][Legion] Fury Warrior
  2. #17
    BassGhost's Avatar Active Member
    Reputation
    21
    Join Date
    Sep 2012
    Posts
    116
    Thanks G/R
    8/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey guys, long time no update. I've made a few adjustments to the profile to incorporate the following:
    • Added check for Fuijeda's Fury legendary
    • Made some tweaks to the AoE rotation and Odyn's Fury should go off with Multitarget modification correctly
    • Changed modification key for Heroic Leap to Left Alt, verified it's working correctly. Please be aware this only works if you are in combat


    Will continue to make modifications when 7.1.5 comes out since there might be some better talent options

    Dropbox: Dropbox - fury.lua

    Code:
    Code:
    -- SPEC ID 72
    ProbablyEngine.rotation.register_custom(72, "Fury Test", {
    
      --------------------
      -- Start Rotation --
      --------------------
      
    	--Leap to your target with Alt!
    	{ "Heroic Leap", "modifier.lalt", "ground"},
      
    	--Interrupts
    	{ "Pummel", {"target.interruptsAt(40)", "modifier.interrupts" }},
    	
    	--Snare if target is a player
    	--{ "Piercing Howl", { "!target.debuff(Piercing Howl)", "modifier.player"	}},
    	
    	--Cooldowns
    	{ "Avatar", { "talent(3, 3)", "modifier.cooldowns", "player.buff(1719)" }}, --Avatar if Battle Cry
    	--{ "Bloodbath", "modifier.cooldowns" },
    	{ "Blood Fury", { "modifier.cooldowns", "player.buff(1719)" }}, --Blood Fury if Battle Cry
    	{ "Battle Cry", { 
    			"modifier.cooldowns", 
    			"player.spell(205545).cooldown = 0", 
    			"player.spell(23881).cooldown = 0", 
    			"target.range <= 5" 
    	}}, --Battle Cry if Odyn's Fury off CD
    	{ "Enraged Regeneration", "player.health <= 65" },
    	
    	--Multitarget
    	{ "Dragon Roar", { 
    			"talent(7, 3)", 
    			"modifier.multitarget", 
    			"player.spell(205545).cooldown = 0", 
    			"target.range <= 5",
    	}},
    	{ "Dragon Roar", { 
    			"talent(7, 3)", 
    			"modifier.multitarget", 
    			"!player.spell(205545).cooldown < 3",
    			"target.range <= 5",	
    	}},
    	{ "Whirlwind", {
    			"modifier.multitarget", 
    			"!player.buff(85739)",
    			"target.range <= 8",
    	}}, --Whirlwind if no Meat Cleaver
    	{ "184367", { "!player.buff(184362)", "modifier.multitarget", "player.rage >= 90" }}, --Rampge if no Enrage
    	{ "Bloodthirst", "!player.buff(184362)"}, --Bloodthirst if no Enrage
    	{ "205545", { "modifier.cooldowns", "player.buff(Battle Cry)", "player.buff(184362)" }}, --Odyn's Fury
    	{ "Raging Blow", "modifier.shift" }, --Hold Shift if less than 4 targets
    	{ "184367", { "player.buff(85739)", "!player.buff(184362)", "modifier.multitarget", "player.rage >= 90" }}, --Rampage if no Enrage and Meat Cleaver buff is up
    	{ "Bloodthirst", { "player.buff(85739)", "modifier.multitarget" }}, --Bloodthirst if Meat Cleaver buff is up
    	{ "Whirlwind", {
    			"modifier.multitarget", 
    			"target.range <= 8" 
    	}},
    	
    	--Rotation
    	{ "Bloodthirst", "player.buff(207775).duration <2" }, --Fujiedas Fury Check
    	{ "Execute", "player.buff(201009).duration < 2" }, --Juggernaut check < 2 seconds
    	{ "184367", {"player.buff(206316)", "player.buff(184362).duration < 1" }}, --Rampage if Massacre procs and < 1 sec on Enrage
    	{ "184367", { "target.health > 20", "player.rage = 100" }}, --Rampage if Rage is 100 and not execute phase
    	{ "Dragon Roar", { 
    			"talent(7, 3)", 
    			"!modifier.multitarget", 
    			"target.range <= 5", 
    			"player.spell(205545).cooldown = 0" 
    	}}, --Odyn's Fury CD check - off CD
    	{ "Dragon Roar", { 
    			"talent(7, 3)", 
    			"!modifier.multitarget", 
    			"target.range <= 5", 
    			"!player.spell(205545).cooldown < 3" 
    	}}, --Odyn's Fury CD check < 3 secs
    	{ "205545", { "modifier.cooldowns", "player.buff(Battle Cry)", "player.buff(184362)" }}, --Odyn's Fury
    	{ "184367", { "!player.buff(184362)", "!player.buff(201009)" }}, --Rampage if Enrage and Juggernaut down
    	{ "Raging Blow", { "player.buff(184362)", "!player.buff(201009)" }}, --Raging Blow if Enrage up and Juggernaut down
    	{ "Whirlwind", { "player.buff(215570)", "player.buff(184362)"}},
    	{ "Execute", "!modifier.multitarget" },
    	{ "Bloodthirst", { "!player.buff(184362)", "!modifier.multitarget" }}, --Bloodthirst if Enrage down
    	{ "Raging Blow", { "!player.buff(184362)", "!modifier.multitarget" }}, --Raging Blow if Enrage down
    	{ "Raging Blow", "!modifier.multitarget" },
    	{ "Bloodthirst", "!modifier.multitarget" },
    	{ "Furious Slash", "!modifier.multarget" },
    
    
      
      ------------------
      -- End Rotation --
      ------------------
    
    },
    {
    })

  3. #18
    n00bsteam's Avatar Member
    Reputation
    2
    Join Date
    Sep 2012
    Posts
    5
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    BassGhost, can u say, it must be used with unlocker? If so, what unlocker u recommend?

    P.s. lost 4 acc, sbr and hb since legion is up..

Page 2 of 2 FirstFirst 12

Similar Threads

  1. [Selling] Offer me ¦ wow account with legion ¦ budget fury warrior ilevel 660!
    By Conador64 in forum WoW-EU Account Buy Sell Trade
    Replies: 0
    Last Post: 03-28-2016, 03:18 PM
  2. [PvP] PATCH 6.2.3[Pre-Legion] INSANE*ONE SHOT* FURY WARRIOR -HOW TO-
    By C4extremeUSA in forum World of Warcraft Guides
    Replies: 8
    Last Post: 01-20-2016, 05:56 PM
  3. Fury Warrior Spec
    By orcishmailbox in forum WoW UI, Macros and Talent Specs
    Replies: 5
    Last Post: 02-06-2008, 08:05 PM
  4. For the fury warriors who reached the threatcap.
    By Kayh in forum World of Warcraft Exploits
    Replies: 7
    Last Post: 12-28-2007, 12:20 AM
  5. Free Enrage for Fury warriors.
    By Pappe2 in forum World of Warcraft Exploits
    Replies: 11
    Last Post: 10-17-2007, 01:52 PM
All times are GMT -5. The time now is 11:52 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search