[PQR] Nova Team Profiles menu

User Tag List

Page 43 of 157 FirstFirst ... 39404142434445464793143 ... LastLast
Results 631 to 645 of 2342
  1. #631
    Ralphiuss's Avatar Active Member
    Reputation
    44
    Join Date
    Sep 2011
    Posts
    230
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mentally View Post
    @Ralphiuss: I think you have to set PQR_CustomTarget = members[1].Unit and then set the Spell Target to "Custom"
    Thanks mentally! i'll try it out when I get home!

    OH! Check your PMs again!!

    [PQR] Nova Team Profiles
  2. #632
    TheGreatRowaH's Avatar Member
    Reputation
    47
    Join Date
    May 2008
    Posts
    377
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I miss the SVN. When is it coming back?

  3. #633
    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)
    Originally Posted by TheGreatRowaH View Post
    I miss the SVN. When is it coming back?
    If you read the last page you'll see they changed svn, check back!

  4. #634
    tozededao's Avatar Member
    Reputation
    9
    Join Date
    May 2009
    Posts
    166
    Thanks G/R
    3/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Since Eternal Flame spam build has been somewhat useful heres my code for it.

    You gotta create an ability with this code :


    Code:
    if PQR_SpellAvailable(85673) then
    	for i=1, #members do
    		if not UnitBuffID(members[i].Unit, 114163)
    		and select(5, Nova_UnitInfo("player")) >= 3 
    		 and members[i].HP < 90 then
    		 	PQR_CustomTarget = members[i].Unit
    		 	CastSpellByName(GetSpellInfo(85673), members[i].Unit)
    		 	return true
    		end
    	end
    end

  5. #635
    xetti's Avatar Member
    Reputation
    1
    Join Date
    Nov 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello and Excuse my bad English,

    i use the PQR with the nova Profile and i have a questen i want to use the Zen Sphere in the profile can anyone give me a How to do this? ^^

    I have modify the profile for me it makes more dmg but in can´t make the skill in the rota =(.

  6. #636
    Kinky's Avatar Banned CoreCoins Purchaser
    Reputation
    481
    Join Date
    Nov 2008
    Posts
    500
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Alrighty - A few updates as to why I've not been so active the past few days. :P I'm getting ready for an exam next week so I've just spent the past two days trying to catch up and refresh on my subjects. Furthermore my poor baby got a hernia so I've had to spend some extra time together with him after seeing the doctors.

    My Fire Mage profile is pretty much done.. I still have some timing issues with Combustion, as in, it's disregarding my checks regardless of the coding hierarchy, which has gotten me pretty annoyed. For now, it has a few different profiles:
    - Single-Target (Auto-PoM): This will basically cast Alter Time and Presence of Mind for you, in the best possible way and scenario.
    - Single-Target (Auto-PoM - High Crit): Same as above, this profile will use Alter Time and Presence of Mind for you in the best possible way and scenario. This is designed for people with high crit levels (25-27%+) and should yield more DPS than the normal profile.
    - Single-Target (Manual): This profile will not automatically use Alter Time for you. If Presence of Mind is your selected Tier 1 talent, it will automagically use this for you.
    - Single-Target (Maual - High Crit): Again as above, slightly modified for people with high crit values. If Presence of Mind talent is your selected Tier 1 talent, it will automagically use this for you.

    All the profiles comes with a Hold Cooldown trigger, and a AoE hold trigger. (Press and hold to AoE on mouseover location.) Personally, with very crap gear (iLvl 453, 14.3% hit, 18% crit/mastery) against a Heroic Training Dummy, have managed to generate a sustainable 67k DPS without much effort. Again this is RNG based and I missed around 5% of my spells, so it solely depends on the person currently using it and his/her gear. Reforging to reach the hit cap, I managed to pull 150k something DPS on Heroic Elegon. (Will update this post with an image afterwards.)

    Furthermore, I slightly updated Shadow Priests as I noticed there were an issue with Mind Spike not casting while running, (beats me why I did that.) and mindlessly spamming Shadow Word: Pain, which it shouldn't do. The Shadow Priest update should be coming later today as well, properly casting Mind Spike while moving as well as Shadow Word: Pain when you have above 75% Mana and no Mind Spike procs.

    As always guys, don't forget that we've changed our SVN host from Google Code to Assembla. You can find our new home here, Team Nova @ Assembla.com

    @xetti: I thought Zen Sphere already were in the rotation. That's pretty strange.
    Code:
    if IsPlayerSpell(124081) then
    	if UnitBuffID("player",124081,"PLAYER")
    		and IsRightControlKeyDown()
    		and not GetCurrentKeyBoardFocus()
    	then CastSpellByName(GetSpellInfo(124081),"player") return true end
    
    	if UnitExists("target")
    		and PQR_SpellAvailable(124081)
    		and not UnitBuffID("player",124081,"PLAYER")
    	then CastSpellByName(GetSpellInfo(124081),"player") return true end
    end
    This will cast Zen Sphere on yourself if you don't have the buff already and if you press Right Control it will detonate the buff on you if you have an active Zen Sphere on you right now. I assume this is what you were looking for?

  7. #637
    xetti's Avatar Member
    Reputation
    1
    Join Date
    Nov 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yes thats it =) works fine thank you

  8. #638
    Gabbz's Avatar Contributor
    Reputation
    184
    Join Date
    Dec 2011
    Posts
    451
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I cant find any profiles for mages ?
    Are the up or im missing something ?
    Last edited by Gabbz; 11-20-2012 at 10:25 AM.
    Looking for exploiters and botters to Elder Scrolls Online.

  9. #639
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,033
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    not up gabbz, we all have been busy

    Please if someone helped you donate rep to them.

  10. #640
    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)
    ah thx for the zen sphere code...tried it for myself an faild hard^^...I am absolutely not a coding guy^^

  11. #641
    xetti's Avatar Member
    Reputation
    1
    Join Date
    Nov 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I too but littel Bit modify can i do in this profile it make on item lvl 470 with 463 2x 1 h weapons and haste mastery without cd's and buffs round about 65k now ..... ;-P

    Edit: on a Heroic Training Dummy
    Last edited by xetti; 11-21-2012 at 07:13 AM.

  12. #642
    chaos17's Avatar Corporal
    Reputation
    2
    Join Date
    Oct 2012
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I can't update profiles with SVN, I am getting errors.
    Did you change the url ?

  13. #643
    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)
    Originally Posted by chaos17 View Post
    I can't update profiles with SVN, I am getting errors.
    Did you change the url ?
    Yes they changed svn, new one is here:
    https://subversion.assembla.com/svn/nova-project/

  14. #644
    bbenhell4's Avatar Member
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Mistweaver currently doesnt cast 'Renewing Mist' at all, which is kinda screwing up the whole healing rotation for other abilities - I've looked through the code myself but cant see a problem. I know its only a rough / beta profile but thought i'd post feedback here - tyvm for all your efforts

  15. #645
    tozededao's Avatar Member
    Reputation
    9
    Join Date
    May 2009
    Posts
    166
    Thanks G/R
    3/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Where can I add healing blacklist? sometimes it tries to heal people who are MC or people with a debuff that cant be healed and I would like to blacklist those debuffs.

Similar Threads

  1. [PQR] Gabbz Mage Profiles
    By Gabbz in forum WoW Bot Maps And Profiles
    Replies: 207
    Last Post: 07-18-2016, 08:00 PM
  2. Replies: 11
    Last Post: 01-13-2013, 10:56 PM
  3. {PQR} Windwalker Raid Profile - Wanted
    By fish221171 in forum WoW Bot Maps And Profiles
    Replies: 3
    Last Post: 10-18-2012, 02:01 AM
  4. PQR - DK Blood profiles - none of them work :(
    By zambeaux in forum WoW Bot Maps And Profiles
    Replies: 4
    Last Post: 10-09-2012, 07:44 AM
  5. PQR PVP Hunter profile?
    By aLorzy91 in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 07-29-2012, 02:32 AM
All times are GMT -5. The time now is 09:51 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