[PE] NerdPack menu

User Tag List

Page 5 of 12 FirstFirst 123456789 ... LastLast
Results 61 to 75 of 173
  1. #61
    Lightbrand's Avatar Member
    Reputation
    3
    Join Date
    Oct 2008
    Posts
    55
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Your prot warrior rotation has a typo in regards to handling shield barrier.
    You have
    Code:
      	{ "Shield Barrier", { 
      		"!player.buff(Shield Barrier)",
      		(function() return NeP.Core.dynamicEval("player.rage <= " .. NeP.Core.PeFetch('NePConfigWarrProt', 'ShieldBarrier')) end)
      	}},
    Which makes no sense because it means use Shield barrier when rage is LESS or Equal to setting. It should be >=. To indicate when rage is MORE than say 80. THEN use Barrier.
    Most likely from sloppy copypasta job because all the previous survival cd uses health, which you would use less than/equal to pop a CD.

    [PE] NerdPack
  2. #62
    MrTheSoulz's Avatar Contributor
    Reputation
    143
    Join Date
    Nov 2013
    Posts
    192
    Thanks G/R
    19/32
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Lightbrand View Post
    Your prot warrior rotation has a typo in regards to handling shield barrier.
    You have
    Code:
      	{ "Shield Barrier", { 
      		"!player.buff(Shield Barrier)",
      		(function() return NeP.Core.dynamicEval("player.rage <= " .. NeP.Core.PeFetch('NePConfigWarrProt', 'ShieldBarrier')) end)
      	}},
    Which makes no sense because it means use Shield barrier when rage is LESS or Equal to setting. It should be >=. To indicate when rage is MORE than say 80. THEN use Barrier.
    Most likely from sloppy copypasta job because all the previous survival cd uses health, which you would use less than/equal to pop a CD.
    Thanks, will change that.
    Those who would give up essential Liberty, to purchase a little temporary Safety, deserve neither Liberty nor Safety.

  3. #63
    Morl0ck's Avatar Member
    Reputation
    2
    Join Date
    Mar 2013
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any news on if you're gonna make a Warrior Arms rotation?

  4. #64
    MrTheSoulz's Avatar Contributor
    Reputation
    143
    Join Date
    Nov 2013
    Posts
    192
    Thanks G/R
    19/32
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Morl0ck View Post
    Any news on if you're gonna make a Warrior Arms rotation?
    Would be hard considering i dont currently have a account :P
    I can build some "bone work" on the dark, and if someone is insterested in commiting to it.

    PS: I'm around even tho im not actively pushing commits, pull requests are accepted.
    Those who would give up essential Liberty, to purchase a little temporary Safety, deserve neither Liberty nor Safety.

  5. #65
    Kladdkakan's Avatar Member
    Reputation
    12
    Join Date
    Oct 2008
    Posts
    65
    Thanks G/R
    1/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've been trying to toy around improving the warrior prot gladiator part by consulting Gladiator Warrior DPS Rotation, Cooldowns, and Abilities (WoD 6.2.2) - Icy Veins

    This is what I've come up with so far, does this make any sense? Can it be improved upon? I have no experience in coding and I'm pretty much just using the documentation and looking at other code trying to piece something together

    I'm trying to incorporate Unyielding Strikes as well (as you can see in my code snippet), one thing I can think off on top of my head is making Devastate the top prio if Unyielding Strikes count is less then 6 and it's the last global cooldown before they run out but I have no idea how to do that.

    Code:
    local inCombat_Gladiator = {
    	{ "Heroic Strike", "player.buff(Unyielding Strikes).count >= 4" },
    	{ "Shield Charge", "!player.buff(Shield Charge)" },
    	{ "Shield Charge", "spell(Shield Charge).charges >= 2" },
    	{ "Heroic Strike", "player.buff(Shield Charge)" },
    	{ "Heroic Strike", "player.rage >= 95" },
    	{ "Devastate", "player.buff(Unyielding Strikes).count <= 5" },
    	{ "Shield Slam", "player.buff(Shield Charge)" }, --is this redundant?
    	{ "Revenge", "player.buff(Shield Charge)" },
    	{ "Devastate", "player.buff(Shield Charge)" },
    	{ "Shield Slam" },
    	{ "Revenge" },
    	{ "Execute" },
    	{ "Devastate" }
    
    }
    Last edited by Kladdkakan; 09-19-2015 at 11:53 AM. Reason: fixed Heroic Strike and Devastate Unyielding Strike count

  6. #66
    MrTheSoulz's Avatar Contributor
    Reputation
    143
    Join Date
    Nov 2013
    Posts
    192
    Thanks G/R
    19/32
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kladdkakan View Post
    I've been trying to toy around improving the warrior prot gladiator part by consulting Gladiator Warrior DPS Rotation, Cooldowns, and Abilities (WoD 6.2.2) - Icy Veins

    This is what I've come up with so far, does this make any sense? Can it be improved upon? I have no experience in coding and I'm pretty much just using the documentation and looking at other code trying to piece something together

    I'm trying to incorporate Unyielding Strikes as well (as you can see in my code snippet), one thing I can think off on top of my head is making Devastate the top prio if Unyielding Strikes count is less then 6 and it's the last global cooldown before they run out but I have no idea how to do that.

    Code:
    local inCombat_Gladiator = {
    	{ "Heroic Strike", "player.buff(Unyielding Strikes).count >= 4" },
    	{ "Shield Charge", "!player.buff(Shield Charge)" },
    	{ "Shield Charge", "spell(Shield Charge).charges >= 2" },
    	{ "Heroic Strike", "player.buff(Shield Charge)" },
    	{ "Heroic Strike", "player.rage >= 95" },
    	{ "Devastate", "player.buff(Unyielding Strikes).count <= 5" },
    	{ "Shield Slam", "player.buff(Shield Charge)" }, --is this redundant?
    	{ "Revenge", "player.buff(Shield Charge)" },
    	{ "Devastate", "player.buff(Shield Charge)" },
    	{ "Shield Slam" },
    	{ "Revenge" },
    	{ "Execute" },
    	{ "Devastate" }
    
    }
    No, that Shield Slam is not redudant.
    Notice it gives priority to Shield Slam instead of Revenge or Devastate if you have the shiled charge buff.
    Those who would give up essential Liberty, to purchase a little temporary Safety, deserve neither Liberty nor Safety.

  7. #67
    Kladdkakan's Avatar Member
    Reputation
    12
    Join Date
    Oct 2008
    Posts
    65
    Thanks G/R
    1/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MrTheSoulz View Post
    No, that Shield Slam is not redudant.
    Notice it gives priority to Shield Slam instead of Revenge or Devastate if you have the shiled charge buff.
    Aight, do you have any other suggestions on how to improve it or maybe include the suggested Devastate change? Thanks for all your hard work!

  8. #68
    MrTheSoulz's Avatar Contributor
    Reputation
    143
    Join Date
    Nov 2013
    Posts
    192
    Thanks G/R
    19/32
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kladdkakan View Post
    Aight, do you have any other suggestions on how to improve it or maybe include the suggested Devastate change? Thanks for all your hard work!
    i cant help much without in-game acess but...

    "one thing I can think off on top of my head is making Devastate the top prio if Unyielding Strikes count is less then 6 and it's the last global cooldown"

    {{-- wait for spells
    { "Devastate", "player.buff(Unyielding Strikes).count < 6" }
    }, {
    -- Insert all spells to wait for here.
    "player.spell(#ID).cooldown <= #", -- 1st cooldown
    "player.spell(#ID).cooldown <= #", -- 2st cooldown
    "player.spell(#ID).cooldown <= #", -- 3st cooldown
    } },
    Those who would give up essential Liberty, to purchase a little temporary Safety, deserve neither Liberty nor Safety.

  9. #69
    Kladdkakan's Avatar Member
    Reputation
    12
    Join Date
    Oct 2008
    Posts
    65
    Thanks G/R
    1/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MrTheSoulz View Post
    i cant help much without in-game acess but...

    "one thing I can think off on top of my head is making Devastate the top prio if Unyielding Strikes count is less then 6 and it's the last global cooldown"

    {{-- wait for spells
    { "Devastate", "player.buff(Unyielding Strikes).count < 6" }
    }, {
    -- Insert all spells to wait for here.
    "player.spell(#ID).cooldown <= #", -- 1st cooldown
    "player.spell(#ID).cooldown <= #", -- 2st cooldown
    "player.spell(#ID).cooldown <= #", -- 3st cooldown
    } },
    I'll play around some and see if I can put something together. Appears the spellid for global cooldown is 61304 in case anyone else wants to toy around with GCD

  10. #70
    tork35's Avatar Member
    Reputation
    1
    Join Date
    Sep 2015
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I do all from "how to instal". When i login and put char (Paladin Retr) it downlod routing but after 'No unlock found, now in FaceRoll mod. Help pls

  11. #71
    MrTheSoulz's Avatar Contributor
    Reputation
    143
    Join Date
    Nov 2013
    Posts
    192
    Thanks G/R
    19/32
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by tork35 View Post
    I do all from "how to instal". When i login and put char (Paladin Retr) it downlod routing but after 'No unlock found, now in FaceRoll mod. Help pls
    You require a lua unlocker,
    Free: EWT or oLua

    Paid: FireHack (Recommended (Not sure if i can post a link for it here, but you can easly find it in google))
    Those who would give up essential Liberty, to purchase a little temporary Safety, deserve neither Liberty nor Safety.

  12. #72
    mikedarling905's Avatar Member
    Reputation
    2
    Join Date
    May 2009
    Posts
    17
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    do you need a month subscription mrthesoulz? i can get you one if you want.

  13. Thanks MrTheSoulz (1 members gave Thanks to mikedarling905 for this useful post)
  14. #73
    MrTheSoulz's Avatar Contributor
    Reputation
    143
    Join Date
    Nov 2013
    Posts
    192
    Thanks G/R
    19/32
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mikedarling905 View Post
    do you need a month subscription mrthesoulz? i can get you one if you want.
    I could use it on a alt account if your willing to
    Those who would give up essential Liberty, to purchase a little temporary Safety, deserve neither Liberty nor Safety.

  15. Thanks svs (1 members gave Thanks to MrTheSoulz for this useful post)
  16. #74
    Lightbrand's Avatar Member
    Reputation
    3
    Join Date
    Oct 2008
    Posts
    55
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Rogues no longer have instant poison, so the code should be
    Code:
    	-- Poison's
    		-- Letal
    		{"Deadly Poison", {
    			"!lastcast(Deadly Poison)",
    			"!player.buff(Deadly Poison)"
    		}},
    		
    		-- Non-Letal
    		{"Crippling Poison", {
    			"!lastcast(Crippling Poison)",
    			"!player.buff(Crippling Poison)"
    		}},
    }
    Or wound, or if there should be a toggle.

  17. #75
    Luciferozzy's Avatar Member
    Reputation
    2
    Join Date
    Apr 2011
    Posts
    81
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi i just installed the latest version of your rotations -- wich are great and ty

    But when i try to enter the disc priest class setting it say : Sorry this spec does not have a GUI yet

Page 5 of 12 FirstFirst 123456789 ... LastLast

Similar Threads

  1. [Tool] NerdPack
    By MrTheSoulz in forum World of Warcraft Bots and Programs
    Replies: 233
    Last Post: 09-19-2017, 02:15 AM
All times are GMT -5. The time now is 09:25 AM. 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