Is there a working DK profile? Tried using Rubims and Imdasandmans.
They both used to work for me, not sure if it's the most recent patch or if it's just me.
I re-installed PQI, got the new Microsoft .Net Framework and made sure I had the latest Offsets.
Basically I can load profiles for every class but the DK, PQI shows [Not Loaded] when I have PQR up, and [PQR Ready] when I load any DK profile.
Thanks in advance for your help!![]()
https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017
I tried it with both BM and Srv. Did a complete LFR as BM and never went off once. Did 3 BGs as Srv and never went off.
Talents BM = Crouching tiger, silent shot, Aspect of ironhawk, dire beast, lynx, barrage
Talents Srv = Narrow escape, silent shot, Aspect of ironhawk, dire beast, blink strike, barrage
I have the focus, because I can stop the rotation and click barrage manually and it will work
I did not hold down right control.
Hai, the key for barrage is right control as KMD said. It wont do it automatically like it used to. Which is good because its very situational when you want to use it. I like the change.
Next time you try it press and hold down right control and i'm sure it will do barrage for you.
It's all good, I didn't take it as if you meant that.
The point is that I've already read all that. I'm just not sure if the tables really need optimization. Anyway, I have the weekend to test some stuff and will try to make a few optimizations here and there. Thanks for your input on updating frequency, I think that's the right place to start.
@crystal_tech
Morphing spells are giving me trouble:
1. Glyphed savage roar - I guess I will not able to use this spell with CastSpellByID, cause weak lua api
2. Cat form thrash - I cant find any WORKING spellID through wowhead...
3. Cat mangle - I can use mangle, but it causes stuck. Shred does not cause stuck.
Last edited by botirk; 07-06-2013 at 10:55 AM.
Whats the best talent for PVE both specs? As i have for BM - Posthaste, silent shot, Aspect of ironhawk, dire beast, Blink Strike, Glaive Toss
And for SV - Crouching tiger, silent shot, Aspect of ironhawk, dire beast,A Murder Of Crows, Glaive Toss
So are these the specs to have or is Glaive Toss no good anymore?
ids: thrash for cat = 106830, savage roar w/o glyph = 62071, savage roar with glyph = 127538, cat mangle = 33876
try these ids with CastSpellByName(GetSpellInfo(Id)) just to see if it fixes your problems.
and try running this in game:
it will print out spells and the ids and if its morphed it let ya know.PHP Code:
/run for i=1,200000 do local f=FindSpellBookSlotBySpellID(i,"spell") if f then local n,id=GetSpellBookItemName(f,"spell"),select(2,GetSpellBookItemInfo(f,"spell")) local s=GetSpellInfo(id) s=n==s and " " or "\124cFF4FF763"..s print(id,n,s) end end
Please if someone helped you donate rep to them.
Can anyone help me with this code, what am I doing wrong?Code:function check(sp,unit) unit = unit or "target"; spell = string.format("%s",sp) if GetSpellCooldown(spell)==0 and IsUsableSpell(spell) then if SpellHasRange(spell)==1 then if IsSpellInRange(spell,unit)~=1 then return false end end else return false end return true end
I want to use this for a rule of casting spells / abillitys!
Don't use "==" with in binary functions, which return two states (true or false, 1 or nil).
IsSpellInRange does not work with melee.
Do not cast spell by name. You just **** someone with different localization, cause they will not be able to use your work/ideas.
Last edited by botirk; 07-08-2013 at 09:50 AM.