[PE] NerdPack menu

User Tag List

Page 10 of 12 FirstFirst ... 6789101112 LastLast
Results 136 to 150 of 173
  1. #136
    Rubim's Avatar Contributor
    Reputation
    247
    Join Date
    Mar 2010
    Posts
    267
    Thanks G/R
    4/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Untouchablekill View Post
    Class settings are still failing to show up with the update of NeP, only addons are PE and NeP, cache was cleared and WTF was renamed

    Correction: Seems to be only DK having issues.
    Yep.

    Anyway, i'm using your "framework" and it is amazing MrTheSoul.

    Blood and Frost are okayish, i ported my rotations to yours and i was able to rank top 10 on my server. Well done.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/385569-pqr-death-knight-monk-tank-dps-profiles.html#post2582063

    [PE] NerdPack
  2. Thanks MrTheSoulz (1 members gave Thanks to Rubim for this useful post)
  3. #137
    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)
    Dear Rubim
    I know u have made some really good DK rotations in the past and I was thinking if you where sharing your rotations for pe?

  4. #138
    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 Untouchablekill View Post
    Class settings are still failing to show up with the update of NeP, only addons are PE and NeP, cache was cleared and WTF was renamed

    Correction: Seems to be only DK having issues.
    I assume you'r talking about DK-Frost (Should be the only one spec).
    The reason GUI was not showing up is beacuse it didnt have any :P

    I have to spend some time to review and tweak all DK specs.
    Those who would give up essential Liberty, to purchase a little temporary Safety, deserve neither Liberty nor Safety.

  5. #139
    Untouchablekill's Avatar Member
    Reputation
    1
    Join Date
    Sep 2011
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MrTheSoulz View Post
    I assume you'r talking about DK-Frost (Should be the only one spec).
    The reason GUI was not showing up is beacuse it didnt have any :P

    I have to spend some time to review and tweak all DK specs.
    Ahh, that makes sense. Also it seems WW monk doesn't really want to work at all.

    Edit: Turns out I didn't unlock LUA nvm, works perfectly
    Last edited by Untouchablekill; 12-09-2015 at 12:43 AM.

  6. #140
    huntedbyblizzard's Avatar Member
    Reputation
    1
    Join Date
    Oct 2013
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Regarding Discipline Priest...

    I appreciate the cleanup you just pushed. Much appreciated. But I wanted to ask you or the group about this:


    Code:
    local _Attonement = {
    	{ "14914", "player.mana > 20", "target" }, -- Holy Fire
    	{ "47540" } ,-- Penance
    	{ "585" }, --Smite
    leaves out 3rd Tier (level 45) Talent Power Word: Solace - which replaces Holy Fire and triggers Attonement.
    Power Word: Solace - Spell - World of Warcraft


    Now - there was a comment that macro code
    Code:
    /cast Holy Fire
    ...would still cast Power Word: Solace, but with a follow up comment that it doesn't work in a castsequence.

    My experience is that both the original MrtheSoulz and in NP, both in solo mode and in raid healing mode, Power Word: Solace is always off CD - and I trigger it manually. No big whoop.

    I suppose I could just replace that Holy Fire line with

    Code:
    { "129250", "target" }, -- Power Word Solace
    ...removing the mana check since it costs no mana (free),
    (Can I use a colon in the lua comment? -- Power Word: Solace?)

    But I was trying to figure out a way of letting the lua figure out which one I have and using it.

    Anyone have any idea how to do that?

  7. #141
    huntedbyblizzard's Avatar Member
    Reputation
    1
    Join Date
    Oct 2013
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I used it in my old backup of MrtheSoulz...works perfectly.

    Code:
    local Attonement = {
    
    	{ "129250", { --Power Word: Solace
    		"target.spell(129250).range",
    	}, "target" },
    	{{-- not moving
    		{ "47540", "target.spell(47540).range", "target" } ,-- Penance
    		{ "585", "target.spell(585).range", "target" }, --Smite
    	}, "!player.moving" },
    
    }
    Last edited by huntedbyblizzard; 12-10-2015 at 12:45 AM. Reason: formatting

  8. #142
    kablaggio999's Avatar Member
    Reputation
    1
    Join Date
    Dec 2015
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can anyone help me unlock lua ??
    use only EWT ?
    Last edited by kablaggio999; 12-10-2015 at 02:22 AM.

  9. #143
    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)
    MTS your Overlay for ore and herbs messes up Findah from working even if the check boxes are off.
    "Shootings easy, Aimings hard!" Stinky

  10. #144
    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 huntedbyblizzard View Post
    Regarding Discipline Priest...

    I appreciate the cleanup you just pushed. Much appreciated. But I wanted to ask you or the group about this:


    Code:
    local _Attonement = {
    	{ "14914", "player.mana > 20", "target" }, -- Holy Fire
    	{ "47540" } ,-- Penance
    	{ "585" }, --Smite
    leaves out 3rd Tier (level 45) Talent Power Word: Solace - which replaces Holy Fire and triggers Attonement.
    Power Word: Solace - Spell - World of Warcraft


    Now - there was a comment that macro code
    Code:
    /cast Holy Fire
    ...would still cast Power Word: Solace, but with a follow up comment that it doesn't work in a castsequence.

    My experience is that both the original MrtheSoulz and in NP, both in solo mode and in raid healing mode, Power Word: Solace is always off CD - and I trigger it manually. No big whoop.

    I suppose I could just replace that Holy Fire line with

    Code:
    { "129250", "target" }, -- Power Word Solace
    ...removing the mana check since it costs no mana (free),
    (Can I use a colon in the lua comment? -- Power Word: Solace?)

    But I was trying to figure out a way of letting the lua figure out which one I have and using it.

    Anyone have any idea how to do that?
    I still dont have a max level priest after my ban, will get there
    Will try to do it blind.
    Those who would give up essential Liberty, to purchase a little temporary Safety, deserve neither Liberty nor Safety.

  11. #145
    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 StinkyTwitch View Post
    MTS your Overlay for ore and herbs messes up Findah from working even if the check boxes are off.
    Interesting, will investigate.
    Those who would give up essential Liberty, to purchase a little temporary Safety, deserve neither Liberty nor Safety.

  12. Thanks StinkyTwitch (1 members gave Thanks to MrTheSoulz for this useful post)
  13. #146
    markbro's Avatar Member
    Reputation
    2
    Join Date
    Jun 2009
    Posts
    17
    Thanks G/R
    3/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm trying to use the Guardian Druid rotation but all it will do is switch in and out of bear form repeatedly.
    I'm level 38, using EWT to unlock lua.

  14. #147
    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 markbro View Post
    I'm trying to use the Guardian Druid rotation but all it will do is switch in and out of bear form repeatedly.
    I'm level 38, using EWT to unlock lua.
    Should work now
    Download: https://github.com/MrTheSoulz/NerdPa...ive/master.zip
    Those who would give up essential Liberty, to purchase a little temporary Safety, deserve neither Liberty nor Safety.

  15. Thanks markbro (1 members gave Thanks to MrTheSoulz for this useful post)
  16. #148
    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)
    Theres now a skype group chat for NerdPack:
    https://join.skype.com/g5G9XZrfUYUx
    Those who would give up essential Liberty, to purchase a little temporary Safety, deserve neither Liberty nor Safety.

  17. #149
    AcidCatastrophe's Avatar Member
    Reputation
    1
    Join Date
    Jun 2014
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey there, big n00b here.
    In order to install this into my PE do I just copy all of the files that are in the NerdPack.zip into my Probably folder? (copy over everything that's in my PE folder)

  18. #150
    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 AcidCatastrophe View Post
    Hey there, big n00b here.
    In order to install this into my PE do I just copy all of the files that are in the NerdPack.zip into my Probably folder? (copy over everything that's in my PE folder)
    Hi, no.
    NerdPack is a seperate addon as such it needs to be in this own folder inside the wow/interface/addons.
    Those who would give up essential Liberty, to purchase a little temporary Safety, deserve neither Liberty nor Safety.

Page 10 of 12 FirstFirst ... 6789101112 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 08:41 AM. 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