[PQR] Mavmins PQR Profiles menu

User Tag List

Page 21 of 28 FirstFirst ... 171819202122232425 ... LastLast
Results 301 to 315 of 413
  1. #301
    Limo022's Avatar Private
    Reputation
    1
    Join Date
    Oct 2013
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi Mavmins. Sorry for my English but its very Bad.

    I use your Ele Profil and it. Workshop Great. Thank you for your good Job.

    But i search your Resto Profil and i Donau find it.

    [PQR] Mavmins PQR Profiles
  2. #302
    Mavmins's Avatar Contributor
    Reputation
    165
    Join Date
    Oct 2012
    Posts
    606
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i removed resto profile because it wasnt awesome and i didnt have time to work on it, it breaks on malorak because of the absorb shields

  3. #303
    billybuffalo's Avatar Knight-Lieutenant
    Reputation
    4
    Join Date
    Jan 2013
    Posts
    360
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there a coding way to tell your destro profile to hold on to cb's untill i have certain procs, or to only use if i am about to cap embers??? This seems to be the only flaw in the destro profile i can see. Bad timing on chaos bolts. I know i can just tell it to never cast chaos bolts by changing the timer for ds timer...and then just always fire cb's manually but would rather just code it into the profile itself to do both, watch the timer for ds AND in the meantime, watch for certain procs.

    Is thee anyone that can help me with this? Im a quick study!
    Last edited by billybuffalo; 11-16-2013 at 09:42 AM.

  4. #304
    billybuffalo's Avatar Knight-Lieutenant
    Reputation
    4
    Join Date
    Jan 2013
    Posts
    360
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by billybuffalo View Post
    Is there a coding way to tell your destro profile to hold on to cb's untill i have certain procs, or to only use if i am about to cap embers??? This seems to be the only flaw in the destro profile i can see. Bad timing on chaos bolts. I know i can just tell it to never cast chaos bolts by changing the timer for ds timer...and then just always fire cb's manually but would rather just code it into the profile itself to do both, watch the timer for ds AND in the meantime, watch for certain procs.

    Is thee anyone that can help me with this? Im a quick study!


    I think i may have figured this out on my own. However, i have run into 1 problem. I simply found the proc ID's I needed, and added them as more "If these are present" reasons to tell the profile to shoot a CB off. It works great. Problem is, it will no longer watch for the CD on Dark soul, and will never pool embers to prepare for it, as long as one of my procs comes up.


    Where do i tell it that it still needs to watch for the remaining CD on DS?




    Code:
    local Backdraft,_,_,BDStacks = UnitBuffID("player",117896)
    local SpellStart, SpellDuration = GetSpellCooldown(113858)
    local darksoul = SpellStart + SpellDuration - GetTime()
    local Targethealth = 100 * UnitHealth("target") / UnitHealthMax("target")  
    local havoc, _, _, stacks = UnitBuffID( "player", 80240)
    local SaveTime = 20
    ----------------------------------------------------------------------------
    
    if PQI_MavminsDestruction_EmberSaveChaosBolt_enable then
    	SaveTime = PQI_MavminsDestruction_EmberSaveChaosBolt_value
    else
    	SaveTime = 0
    end
    
    
    if Targethealth < 20
    	or AOE_MODE == true
    	or PQR_IsCastingSpell(116858)
    	or UnitCastingInfo("player") == GetSpellInfo(116858)
    	or PQR_IsMoving(0.3) == true
    	or darksoul <= SaveTime and UnitPower("player", 14) > 1
    	or havoc == nil and Backdraft ~= nil and BDStacks > 2 then
    	return false
    end
    
    if UnitBuffID("player",113858) ~= nil and UnitPower("player", 14) >= 1
    	or UnitBuffID("player",104993) ~= nil and UnitPower("player", 14) >= 1
    	or UnitBuffID("player",76093) ~= nil and UnitPower("player", 14) >= 1
    	or UnitBuffID("player",125487) ~= nil and UnitPower("player", 14) >= 1
    	or UnitBuffID("player",148897) ~= nil and UnitPower("player", 14) >= 1
    	or UnitBuffID("player",137590) ~= nil and UnitPower("player", 14) >= 1
    	or UnitBuffID("player",114207) ~= nil and UnitPower("player", 14) >= 1
    	or UnitBuffID("player",138786) ~= nil and UnitPower("player", 14) >= 1
    	or not PQI_MavminsDestruction_EmberSaveChaosBolt_enable and UnitPower("player", 14) > 1
    	or havoc ~= nil and stacks == 3 and UnitPower("player", 14) >= 1 then 
    	CastSpellByName(tostring(GetSpellInfo(116858))) 
    	LASTCAST = "ChaosBolt"
      	return true
    end





    And to be completely honest, i am not sure if what i added just totally makes the profile ignore any logic/rules for when to fire chaos bolts. I may have spotted it firing a cb without any of my procs.


    Thoughts?
    Last edited by billybuffalo; 11-16-2013 at 11:01 AM.

  5. #305
    Chinaboy's Avatar Active Member
    Reputation
    75
    Join Date
    Jun 2012
    Posts
    96
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Didn't nilrem just do all this with this profile? Or didn't you read that post...

  6. #306
    billybuffalo's Avatar Knight-Lieutenant
    Reputation
    4
    Join Date
    Jan 2013
    Posts
    360
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Chinaboy View Post
    Didn't nilrem just do all this with this profile? Or didn't you read that post...
    Nilrems version does nothing but spit out lua errors and stop working. Plus he doesn't fix anything.

    But hey, thanks for being a smartass. Appreciate your help.

  7. #307
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nilrems edit works fine for me, no lua errors at all so its strange you get them when I dont.

    Post the lua-errors here I think he browses this thread now and then, and maybe we can see whats wrong.

  8. #308
    Smitten's Avatar i want to believe who even plays wow anymore 🤔
    CoreCoins Purchaser Authenticator enabled
    Reputation
    3044
    Join Date
    Apr 2012
    Posts
    2,308
    Thanks G/R
    909/1036
    Trade Feedback
    5 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by billybuffalo View Post
    Nilrems version does nothing but spit out lua errors and stop working. Plus he doesn't fix anything.

    But hey, thanks for being a smartass. Appreciate your help.
    http://www.ownedcore.com/forums/worl...ml#post2880479 ([PQR] Mavmins PQR Profiles)

    I posted that awhile back when someone asked for it.

    Play around with it. Casts CB under procs w/ more than 2 embers up. Easy to change values for that though.

  9. #309
    billybuffalo's Avatar Knight-Lieutenant
    Reputation
    4
    Join Date
    Jan 2013
    Posts
    360
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ninjaderp View Post
    Nilrems edit works fine for me, no lua errors at all so its strange you get them when I dont.

    Post the lua-errors here I think he browses this thread now and then, and maybe we can see whats wrong.


    Thanks for the replies. I will post errors when I get home.


    Thanks again

  10. #310
    billybuffalo's Avatar Knight-Lieutenant
    Reputation
    4
    Join Date
    Jan 2013
    Posts
    360
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by 4096 View Post
    http://www.ownedcore.com/forums/worl...ml#post2880479 ([PQR] Mavmins PQR Profiles)

    I posted that awhile back when someone asked for it.

    Play around with it. Casts CB under procs w/ more than 2 embers up. Easy to change values for that though.
    Thanks. I'll check this out later as we'll.

  11. #311
    billybuffalo's Avatar Knight-Lieutenant
    Reputation
    4
    Join Date
    Jan 2013
    Posts
    360
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by billybuffalo View Post
    Thanks. I'll check this out later as we'll.


    Where do i go to change the values for that? I want it to utilize any int proc as long as it has 1 ember to do so, and i still want it to check the cd of ds.

  12. #312
    billybuffalo's Avatar Knight-Lieutenant
    Reputation
    4
    Join Date
    Jan 2013
    Posts
    360
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by 4096 View Post
    I'll probably write something up in the next couple of days, with a second tab on PQI to select what trinket procs you want to CB under.

    Though I'm at the fiancees house for a couple of weeks, so no promises.

    -------------------------------

    Nvm. Got it done.

    1. Chaos Bolt under Int Effects

    Disable this if you don't want CB casts under Intellect trinket effects.

    Will cast Chaos Bolt under the following trinkets' effects.



    2. Chaos Bolt under Crit Effects

    Disable this if you don't want CB casts under Critical Strike trinket effects.

    Will cast Chaos Bolt under the following trinkets' effects.



    Rotation is named differently, in-case there are any bugs.

    This is basically a beta release that I threw together during dinner.

    mavmins destro trinket edit

    All rep to Mavmins please.

    Any bugs, please let me know.

    I basically added every PvE trinket 463 and above, I saw no reason to do any others.

    If there are any trinkets you want added, I'll do that too.

    None of these new features you speak of are in the PQI interface...

  13. #313
    decaphiltrator's Avatar Member
    Reputation
    5
    Join Date
    Oct 2009
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i was using nilrems destruction edit and all it will do is start with conflag spam incinerate and spam conflag whenever it is up i am lvl 85. it will not use any other spell at all.


    i do not seem to receive any errors at all but it just wont work correctly i'm sure it has something to do with rotation settings.
    Last edited by decaphiltrator; 11-18-2013 at 08:35 AM.

  14. #314
    Kloon's Avatar Member
    Reputation
    2
    Join Date
    Apr 2009
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    OMG... I just found out, that I'm an idiot. Just tried to download the ele profile and wondered why there was no download starting xD
    looking forward for the ele profile, you just make an awesome work!

  15. #315
    Ashton187's Avatar Member
    Reputation
    7
    Join Date
    Aug 2007
    Posts
    67
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Destro lock updated profile doesn't use immolate/rain of fire? Among other things.

Page 21 of 28 FirstFirst ... 171819202122232425 ... LastLast

Similar Threads

  1. [PQRotation] Firepong's PQR Profile's Feedback - Comments - Question's?
    By firepong in forum WoW Bot Maps And Profiles
    Replies: 714
    Last Post: 08-14-2013, 03:43 AM
  2. [PQRotation] Blinded's PQR Profile's Feedback - Comments - Question's?
    By [Blinded] in forum WoW Bot Maps And Profiles
    Replies: 123
    Last Post: 08-05-2013, 07:03 AM
  3. Wtb ele sham pqr profile thats flawless at for lvl 90s
    By odano1988 in forum WoW Bot Maps And Profiles
    Replies: 7
    Last Post: 10-12-2012, 10:23 AM
  4. [Buying] Best Unholy DK PQR Profile !
    By leinadz in forum World of Warcraft Buy Sell Trade
    Replies: 0
    Last Post: 09-17-2012, 03:10 PM
  5. PQR Profiles and leveling
    By Durf in forum WoW Bots Questions & Requests
    Replies: 2
    Last Post: 02-01-2012, 08:21 PM
All times are GMT -5. The time now is 03:13 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