@buba any chance you can do a holy shock pvp profile?or anyone for that matter
@buba any chance you can do a holy shock pvp profile?or anyone for that matter
What do you mean did quite ok? Can you personally do more dps without this profile? Do you have a profile that does more dps than it? You cant compare to other classes when the classes are unablanced right now, you have to make sure you are timing your cooldowns properly like pre-potting, using recklessness at start of fight if the fight is longer then 5 minutes, potting again when boss is near death and recklessness again during execute phase. If the profile is doing more dps then you personally can and if its doing more dps then other profiles that how does that not make it top dps? How does it qualify as ok? A simple rotation provides okay results, this profile preforms to the best results known. Download simcraft and simulate your character, my results are 45k, then i go dps the dummy and i get 45k (without execute, pots, recklessness, etc). PQR can handle functions better then the simcraft program and therefor you can yield better results. This program only handles your rotation. Target switching, cooldown usage, raid awareness, movement (behind target), and everything come from the player. Consider who is out dpsing you and what they are doing and when they are doing it. Most rogues pop all their cooldowns at the start of the fight, if you pre-pot and shout then charge+leap then recklessness you can keep up, also consider if they are bis and what your gear looks like. Just having heroic gear does not mean bis, even though items are same ilvl they are far better then other items. Classes are unbalanced right now, but there is many things you can do outside of pqr to boost your dps and close the gap. If you aren't happy with your dps try harder.
Last edited by knightnova1; 09-06-2012 at 11:05 PM.
No, mend pet is now an instant cast HoT. It doesn't cost any energy either. It's basically a free pet heal, that's instant. Using what Kick gave me, and placing it at the top of the rotation, I've been farming instances with absolutely no pet deaths. It's working out perfectly.
if you are using my unholy profile please take out soul reaper out of the rotation... I accidently left it in there from playing around on the beta a couple days ago
My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
https://imdasandmandeathknight.googl...com/svn/trunk/
Simulationcraft - Feral rotation discussion on The Fluid Druid forumI added Thrash on OOC procs to the T13H rotation. This was about a 600 DPS gain.
@bu_ba_911
while looking at ur code for Heart Strike
i saw that the script is casting the spell and the bot too
^^ That addon, SpellList : Data Mods : World of Warcraft AddOns
Tried it, filtered for Frost Strike and tried with all the spellID's the addon came up with and IsSpellInRange still fails.
So i reject your reality and substitute it with my own![]()
if you really wanted to fix your problem, you would stop being an ass and look at other peoples code.
I really think you are just trolling, but I will try to help anyway.
0 == false, 1 == trueCode:local HolyPower = UnitPower("player", 9) local CrusaderStrike = GetSpellInfo(35395) local FacingTarget = PQR_UnitFacing("player", "target") if HolyPower == 5 or not FacingTarget then return false end if HolyPower < 5 and IsSpellInRange(CrusaderStrike, "target") == 0 then return true end
My Svn - https://subversion.assembla.com/svn/averykeys-svn/
link: API IsSpellInRange - WoWWiki - Your guide to the World of Warcraft
some notes on this api:
You will get a 'nil' if:
1) The spell cannot be cast on the unit. i.e. attempting to check range using 'Frostbolt' on a party member will always return 'nil', similarly testing 'Heal' against an enemy target will also return nil.
2) If the unit is not 'visible' (see API UnitIsVisible) then you will get a nil, and not a '0' as you might expect.
3) The unit doesnt exist (e.g. 'target' when you have nothing targetted)
4) The current player does not know this spell (so you cannot use 'Heal' to test 40 yard range for anyone other than a priest)
5) It can be used for scanning raid members distances, but just take care what spell you use. For example scanning heal range will start throwing out 'nil' if a raid member is mind controlled.
so best use of IsSpellinRange() would be this:
Code:local inRange = 0 --sets up if target is in range of spell if UnitExists("target") and UnitIsVisible("target") and UnitIsEnemy("target") then inRange = IsSpellInRange("spellid", "target") end --if your in range then do what you want if inRange==1 then return true end
Please if someone helped you donate rep to them.
No idea what you trying to do.
If you want to check range on specific spell and is not working with IsSpellInRange just use another spell with same range to check it.
If you want to cast a new MoP spell not detected by PQR use CastSpellByName(GetSpellInfo(???),nil). If you try to cast his root spell the interface will lockout randomly.
[ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
If you like this piece of code feel free to invite me a beer making a donation.
My paypal account: [email protected]
@Sheuron
I was using your profile to raid DS last night, and I noticed that on Ultraxion and the Ship fights (as well as a couple of other bosses that I don't remember) it wasn't working. I switched to Kickmydog's profile on the fly, and it worked. Not sure why. If this is a known issue, then I apologize. I don't know if it's a range thing, or what, but on some DS bosses your profile doesn't work. It will work on trash pulls, but not on some bosses.
@Bu_ba
I downloaded the SVN snapshot of Nova profiles, copied all the data stuff into my data folder, then copied all Paladin files into Paladin folder yet it doesnt work? 2 profiles show up in PQR Holy No Mouseover and Holy Mouseover, both without any notes/info. When I activate them, my fps drops. Could you help me out pleasE?
Cheers!
I´m encountering weird problem while using Nova´s Blood tank profile and Gabbz feral.
After a while in combat (boss, dummy, trash mobs, whatever) rotation stops and whole UI (even with or without any addons) stops responding, cant click any spell (even in spellbook). Only relog helps.
Is that on PQR or client side?