I'm completely new to HB and everything else about it. I've tried installing PureRotation - used the SVN and everything. However, I am not sure how to actually use PureRotation or if it is being used. Am I supposed to put the PureRotation folder under Routines in HB?
get Tyrael (as a botbase) used for raids etc. - then you put it in the bots folder, and when you load up ur bot, you select Tyrael's... once you hit that, it should come up with purerotation as a CC (combat routine). Then hit PureRotation v2, click select.. and there ya go ^^ how to get purerotation, should be on the front page. (aka. the nr. 1 page on this thread)
When I load up Tyrael, it just says that it is Starting Singular. It doesn't give me any kind of option to pick PureRotation :\ Tyrael loads up just fine. But, like I said, Singular is selected automatically with no option to pick PR. I have PR in this directory: C:\Users\Kayal\Desktop\HB\Routines\PureRotation\(all the svn here)
Ive got the following issues with Survival Hunter: - It uses Serpent Sting while the dot is up.. Example: Code: [14:03:50.708 N] [PureRotation 2.1.1]: *Serpent Sting on Iron Qon at 19.5 yds at 17.5% [14:03:50.761 D] [CGSpellBook::CastSpell] Override ID: 53301, KnownIndex: 54 [14:03:50.762 N] [PureRotation 2.1.1]: *Explosive Shot on Iron Qon at 19.5 yds at 17.5% [14:03:51.758 D] [CGSpellBook::CastSpell] Override ID: 53301, KnownIndex: 54 [14:03:51.759 N] [PureRotation 2.1.1]: *Explosive Shot on Iron Qon at 19.5 yds at 16.4% [14:03:52.722 D] [CGSpellBook::CastSpell] Override ID: 53351, KnownIndex: 60 [14:03:52.723 N] [PureRotation 2.1.1]: *Kill Shot on Iron Qon at 19.5 yds at 15.1% [14:03:53.768 D] [CGSpellBook::CastSpell] Override ID: 53351, KnownIndex: 60 [14:03:53.769 N] [PureRotation 2.1.1]: *Kill Shot on Iron Qon at 19.5 yds at 13.8% [14:03:54.706 D] [CGSpellBook::CastSpell] Override ID: 117050, KnownIndex: 58 [14:03:54.707 N] [PureRotation 2.1.1]: *Glaive Toss on Iron Qon at 19.5 yds at 12.7% [14:03:54.765 D] [CGSpellBook::CastSpell] Override ID: 117050, KnownIndex: 58 [14:03:55.780 D] [CGSpellBook::CastSpell] Override ID: 56641, KnownIndex: 46 [14:03:55.781 N] [PureRotation 2.1.1]: *Cobra Shot on Iron Qon at 19.5 yds at 11.7% [14:03:57.451 D] [CGSpellBook::CastSpell] Override ID: 1978, KnownIndex: 70 [14:03:57.451 N] [PureRotation 2.1.1]: *Serpent Sting on Iron Qon at 19.5 yds at 10.0% - It should use Arcane Shot more often.. I think there are some more issues with Survival Hunter rotation, later in the log u will see it uses Multishot on a Single Target boss :x hope someone can find the issues and fix it :> btw: Using Latest SVN REV @ Tyrael 60 TPS (locked) @ Latest HB Release EDIT: Tested older REV (1503) and there all is well, got this problems only in newer revs EDIT2: Tested 1510 now, seems to work perfect.. hope you can find the issue in latest rev ^^
<?xml version="1.0" encoding="utf-8"?> <PRSettings> <EnableWoWChatOutput>True</EnableWoWChatOutput> <ThrottleTime>0,5</ThrottleTime> <UseCooldowns>True</UseCooldowns> <UseAoEAbilities>True</UseAoEAbilities> <EnableRaidPartyBuffing>True</EnableRaidPartyBuffing> <EnableInterupts>True</EnableInterupts> <EnableFlock>False</EnableFlock> <EnableDispelNonHeals>False</EnableDispelNonHeals> <OverhealPercent>95</OverhealPercent> <IncludetotalAbsorb>35</IncludetotalAbsorb> <includeMyHeals>True</includeMyHeals> <DispelDebuffs>LowPriority</DispelDebuffs> <AoEHealCount>3</AoEHealCount> <AoEHealHP>87</AoEHealHP> <TargetTankTarget>True</TargetTankTarget> <EnableSelfHealing>True</EnableSelfHealing> <UsePotion>True</UsePotion> <Trinket1Choice>OnBoss</Trinket1Choice> <Trinket2Choice>OnBoss</Trinket2Choice> <UseGloves>True</UseGloves> <EnableGiftoftheNaaru>True</EnableGiftoftheNaaru> <GiftNaaruHp>60</GiftNaaruHp> <UseRacials>OnBoss</UseRacials> </PRSettings> This is after a crush. I see that 0.5 changed to 0,5.
well seems as if my fix to another issue, produces more problems now -.- have to think about another solution
The DK cr uses both strangle and mind freeze when interupting the first time so you have to wait until mind freeze is off cd to interupt twice in a row
*** UPDATE *** for everyone who has crashing HB with PureRotation - Delete your PureRotation settings - Update PureRotation from SVN and try again the issue should be fixed. I added a workaround for Values in ThrottleTime that makes no sense, everything >1 will be replaced by 0.5 now, i hope this will fix the general issue with the crashing AND with wrong saving of the value!
known issue, but thanks for reporting again and calling it to our minds ... we thought we can ignore it and noone will see it again ---- edit --- fix for this will be up tomorrow
I just thought I would say again cause a waste of a rune.....sorry i try not to make you guys work so much...well except for Wulf...I need him to work a bit faster lol...my heals need him!
Not working at all for me. As soon as I start up HB with PureRotation it's crashes. And it's only with PureRotation it's crash. TuanHa or Mark works fine. The strange part is that this does not happen on a fresh installation, but as soon as I restart HB from that installation for a second time, crash
Whit The last version of PR, i finish the ToT whit my alter, and i can say that atm mague fire PR are the best that i try. Feel like Pyromancer CC in Cataclysm
Thats not working. Take a look at PureRotation.Settings.Settings.PRSettings constructor. There is a call to base constructor, that seems to deserialize xml using CurrentCulture (i have ru-RU win locale and proper double format is 0,5), but somewhere else your method saving that xml with en-US or InvariantCulture, in which proper double format is 0.5. Just use proper culture to serialize values and all will be fine. Hope that would be helpful and sorry for bad english.
Fastest way to go around this is every time before starting the bot go and delete: HB\Settings\PureRotation folder. Its a pain in the ass, but this is what I do to use PR.