[PQR] Cokx - PVP Profiles menu

User Tag List

Page 2 of 5 FirstFirst 12345 LastLast
Results 16 to 30 of 63
  1. #16
    cokx's Avatar Banned
    Reputation
    92
    Join Date
    Dec 2008
    Posts
    896
    Thanks G/R
    0/0
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It wont work with the mana gem glyph :/ sry

    If there is a better way of checking buffs and debuffs I'm very open minded, since its the only thing that slows down the profile

    [PQR] Cokx - PVP Profiles
  2. #17
    CodeMyLife's Avatar Contributor
    Reputation
    272
    Join Date
    Mar 2013
    Posts
    707
    Thanks G/R
    24/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cokx View Post
    It wont work with the mana gem glyph :/ sry

    If there is a better way of checking buffs and debuffs I'm very open minded, since its the only thing that slows down the profile
    My pokerotation is using the right setup I think. Look under -- Functions the fuction IsMultiBuffed. It compare lists with pet buffs.

    If I myself am not using it right please let me know too! Lol
    Soapbox Rotations Developer

  3. #18
    vitalic's Avatar Contributor CoreCoins Purchaser
    Reputation
    182
    Join Date
    Jun 2010
    Posts
    3,527
    Thanks G/R
    8/3
    Trade Feedback
    10 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by CodeMyLife View Post
    My pokerotation is using the right setup I think. Look under -- Functions the fuction IsMultiBuffed. It compare lists with pet buffs.

    If I myself am not using it right please let me know too! Lol
    The good thing about the Pet API is it has C_PetBattles.GetNumAuras(), as far as I can tell there is no equivalent for players.

  4. #19
    vitalic's Avatar Contributor CoreCoins Purchaser
    Reputation
    182
    Join Date
    Jun 2010
    Posts
    3,527
    Thanks G/R
    8/3
    Trade Feedback
    10 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by theflounder View Post
    Maybe not, but you could easily code it...

    Code:
    function _getNumAuras(unit)
    	local n=0;
    	for i=1,40 do
    		if UnitAura(unit,i) then n=n+1; end
    	end
    	return n;
    end
    or, if you wanted you could use a while loop, instead of a for loop, really not a difference, however I do prefer a "for" loop...

    Code:
    function _getNumAuras(unit)
    	local n,i=0,1;
    	while i<=40 do
    		if UnitAura(unit,i) then n=n+1; end
    		i=i+1;
    	end
    	return n;
    end
    Yes you are right, it's not even necessary to be honest, because as soon as UnitAura() returns a nil value you know there are no more debuffs.

    Wasn't sure if that 40 maximum listed on wowpedia was accurate, I'm guessing it is.

    I just made a stab at writing a generic function to check if a unit is affected by some type of CC, check the PQR thread.

  5. #20
    Shamrockstar's Avatar Member
    Reputation
    51
    Join Date
    May 2007
    Posts
    108
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    +rep, thanks for letting me have a couple weeks of fun.

  6. #21
    cokx's Avatar Banned
    Reputation
    92
    Join Date
    Dec 2008
    Posts
    896
    Thanks G/R
    0/0
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I also tried it with UnitAura but there was no difference.
    Whatever I've found a way to massivly reduce the FPS loss without losing accuracy or speed

  7. #22
    vitalic's Avatar Contributor CoreCoins Purchaser
    Reputation
    182
    Join Date
    Jun 2010
    Posts
    3,527
    Thanks G/R
    8/3
    Trade Feedback
    10 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cokx View Post
    I also tried it with UnitAura but there was no difference.
    Whatever I've found a way to massivly reduce the FPS loss without losing accuracy or speed
    You mean you tried checking only the debuffs on the target?

    So what else was causing your FPS loss?

  8. #23
    cokx's Avatar Banned
    Reputation
    92
    Join Date
    Dec 2008
    Posts
    896
    Thanks G/R
    0/0
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Checking buffs/debuffs causing the FPS loss.
    In my old public edition the profile made too many checks so sometimes you could get a massive fps loss.
    And now in my elite version I am able to controle which target to check and how, with a better efficiency then my old system.
    So its smoother and faster

    I wont explain this in public, if you are interested pm me

  9. #24
    vitalic's Avatar Contributor CoreCoins Purchaser
    Reputation
    182
    Join Date
    Jun 2010
    Posts
    3,527
    Thanks G/R
    8/3
    Trade Feedback
    10 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cokx View Post
    Checking buffs/debuffs causing the FPS loss.
    In my old public edition the profile made too many checks so sometimes you could get a massive fps loss.
    And now in my elite version I am able to controle which target to check and how, with a better efficiency then my old system.
    So its smoother and faster

    I wont explain this in public, if you are interested pm me
    Thanks, that's all I needed to know Happy you found a solution though

  10. #25
    dmbfan1717's Avatar Member
    Reputation
    1
    Join Date
    Feb 2013
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Best profiles on the planet! I have the elite profiles and wouldnt question for a second buying them if i had to do it again..one request though..can you add the caution symbol to your profiles that tell us the hot-keys?

  11. #26
    sassypriest's Avatar Corporal
    Reputation
    2
    Join Date
    Apr 2013
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    not sure if i did something wrong with the settings/glyphs etc but the resto shaman profile spams rip tide, literally spams it until i go oom lol,

    maybe something i did wrong PQI is fine though

  12. #27
    replikatoren's Avatar Active Member
    Reputation
    53
    Join Date
    Aug 2011
    Posts
    182
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sassypriest View Post
    not sure if i did something wrong with the settings/glyphs etc but the resto shaman profile spams rip tide, literally spams it until i go oom lol,

    maybe something i did wrong PQI is fine though
    Remove the Riptide Glyph ( shitty anyways for arena ) or just add Riptide debuff to the profile

  13. #28
    irri's Avatar Corporal
    Reputation
    1
    Join Date
    Oct 2011
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Fury PVP profile should always stuck -25%heal

  14. #29
    Hoblerhans's Avatar Member
    Reputation
    9
    Join Date
    Dec 2010
    Posts
    64
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hex Cokx.
    Just downloaded your public test version for my lvl 88 boomkin...unfortunately it only casts Astrale Vereinigung (Celestial Anything) and then starfall...after that nothing. It does nothing exept anticc and casting motw. Does this profile only work with lvl 90? since it works with my mage...I am using the german client and an uptodate version of pqr.
    Thx in advance

  15. #30
    Hoblerhans's Avatar Member
    Reputation
    9
    Join Date
    Dec 2010
    Posts
    64
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nevermind redownloaded it ...it works now...dont know what changed.

Page 2 of 5 FirstFirst 12345 LastLast

Similar Threads

  1. [Trading] [PQR] Cokx - PVP Profiles
    By cokx in forum World of Warcraft Buy Sell Trade
    Replies: 1721
    Last Post: 03-31-2023, 04:28 AM
  2. [PQR] Feral PVP Profile
    By lolomo2003 in forum WoW Bot Maps And Profiles
    Replies: 69
    Last Post: 01-17-2014, 05:57 AM
  3. PQR Ret PVP profile
    By NeckWenxiao in forum WoW Bots Questions & Requests
    Replies: 2
    Last Post: 12-27-2013, 08:17 PM
  4. [Buying] PQR Destruction PVP profile
    By Frissle in forum World of Warcraft Buy Sell Trade
    Replies: 1
    Last Post: 05-11-2013, 01:53 PM
  5. [PQR] Boomkin PVP Profile
    By joboy_67 in forum WoW Bot Maps And Profiles
    Replies: 4
    Last Post: 05-01-2013, 07:33 PM
All times are GMT -5. The time now is 02:01 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