Aye cheers Firepong ^^ Hope you and Googlebee can collaborate together to make this profile even more awesome than it is!
Aye cheers Firepong ^^ Hope you and Googlebee can collaborate together to make this profile even more awesome than it is!
Any1 still have the last revision of this kicking around they can send me?
This is version 2.9 for those having problems with it shifting out of Bear form, until GB uploads a new working version for those with problems: http://www.filedropper.com/gb-perfectbear29
Such a nice guy! That'd keep em going til next revision ^^
I hope that goog got into my private homebrew stash, and that's why pong found the errors. I would be such a proud papa bear
sorry guys, posting from work. Ill take a look at this when i get hom in a couple hours. Should have things fixed by tonight'ish.
apologies, i pushed 3.1 prematurely i know~
-GB
these things happen ... looking forward to the fix and the new features of 3.1
working on it at home now. For some unknown reason My thrash ST code was overwritten somehow. I was dead ass tired last night when I pushed 3.1 so ...i probably misclicked into that ability at some point.
Adding some other checks and such. *Should* (Knock on wood) have this done within the hour.
-GB
Get on skype google lol
Just finished. Sorry for the delay~
Version 3.2-5.4 is Live and Tested for 2.5 hours.
OK, I went through every single ability.....
You will be happy to know there are ZERO Lua errors now. (At least that I found)
Made some adjustments:
1.) to Cat:QuikBurst ability. I automated the use of Berserk and Heart of the Wild if IN Cat Form and the spells are available and off cool-down.
There *may* be the slight chance that HOTW does not trigger due to the speed (Yea i know i should have put in a throttle). I ran out of gametime (Had 2 minutes left when i logged) and don't have any desire to re-sub anytime soon. SO.... keep an eye on that if it does not trigger HOTW , you will need to manually.
2.) Fixed Frenzied Regen T15+ Ability as well as Frenzied Regen 100% ability. They will no longer cause any errors or hangups.
3.) Fixed an issue with locking up on BEAR: Healing Touch (DOC) ability. This should no longer happen. (Knock on wood)
4.) Fixed BEAR: RejuvRaid (HOTW) Ability. There should no longer be any conflicts at all. (Thanks to firepong pointing out the obvious lol -- I had quotes on my spell id...DERP!)
5.) Added Checks for all DOC and HOTW Abilities. There should no longer be any conflicts.
6.) Added a new ability: BEAR: Auto Taunt - So far this is only for Sha of Pride as requested. This however IS NOT TESTED but *Should* get the job done. It is by default NOT loaded into any of the rotations. If you wish to use this ability, open the Rotation Editor in PQR, select which rotation u wish to add it into (Example: SD), then select it from the available abilities on the left, and move it into the rotations abilities window on the right. Place it at the top under LOAD LUA!
7.) Cleaned up some other code.
On that note, unless there is a major patch that breaks this profile, I will not be resubscribing to WOW. If some of you wish to have any more custom abilities made, feel free to toss me some game time. I do not play wow anymore, and merely resubscribed in 5.4 to update this profile. I WORK TOO DAMN MUCH lol
Ill be around however, lurking about on the forums.
Enjoy and have fun!
-GB
Last edited by googlebee; 10-11-2013 at 01:21 AM.
just tried it in lfr and its still popping in and out of bear.
doesnt seem to do it when grinding normal mobs.
This was using the SD rotation. Appeared to not be an issue on trash rotation.
Last edited by Kroniq; 10-11-2013 at 01:50 AM.
sry hate to be the "bearer" of bad news :P
lol its np.
Ok so it was indeed the Unitin raid and party checks, so taking those out until i have more time to mess around.
Auto Taunt does NOT work atm. Do not use it.
Everything else seems to be ok~~
Redownload - version name is same (3.2)
Thanks for the update GB, gonna test the new version out in raid tonight and report back!
And thanks for at least looking into the taunt on Sha of Pride, hope you get it working sometime, but i know its not prio, until then i have to actually pay attention
If it is to any help, WWF's Brewmaster profile: http://www.ownedcore.com/forums/worl...-profiles.html ([PQR] WWF Windwolker and Brewmaster PvE Profiles) have an auto taunt feature for bosses in SoO, which also includes Sha of Pride which we are after, code;
Code:------------------------ AutoTaunt ------------------------- for i = 1, 4 do if UnitExists("boss"..i) and BMAT[1][2] == 1 and ValidSpell(115546) then BossID = tonumber(UnitGUID("boss"..i):sub(6,10), 16) if UnitExists("target") then TargetID = tonumber(UnitGUID("target"):sub(6,10), 16) else TargetID = 0 end if UnitExists("focus") then FocusID = tonumber(UnitGUID("focus"):sub(6,10), 16) else FocusID = 0 end -- Siege of Orgrimmar BossesAgain, im not sure if its is even to any help, but i thought it might be, or maybe you already know why it aint workingCode:elseif BossID == 71734 then -- Sha of Pride local DebuffID = 144358 -- Wounded Pride if not UnitExists("focus") or FocusID ~= BossID then if TargetID == BossID then FocusUnit("target") end end if FocusID == BossID and DebuffSituation(DebuffID) and IsTauntDistance("focus") and not AggroCheck("player", "focus") then CastSpellByName(GetSpellInfo(115546), "focus") return true end![]()