Yes it already there in the new svn update sir.Thanks for updating the PR.
Do you think you can support Lay on Hands teammate for the PR? You don't even know how many times we would have wiped if it wasn't for the bot's lay on hands on the old version.
Yes it already there in the new svn update sir.
Thank you for using my CR.
Thanks.
I know it would make the GUI look a little more complicated, but have you thought about adding another NumericUpDown for Mana requirement?
It is intended, I invent (just kidding) - I think the best setting for eternal blanket mode is to cast on 1 instead of 2 or 3 it a waste.using latest update on the SVN , and for some reason i cannot set Eternal Flame Blanket Moder higher than 1HP , last night it worked , could set it 1-2-3-4-5 , now only wants 0 or 1
Can you explain more, that the NumericUpDown for Mana requirement used for?Thanks.
I know it would make the GUI look a little more complicated, but have you thought about adding another NumericUpDown for Mana requirement?
ow oke i see , i reforged full haste now , to get the most out of the 1HP EF style , will post some reviews after tonite's raid
TBH, I want power user get everything from CR but I also don't want to intimidate new user with 200 checkboxes and buttonstuanha do you think you could add a setting on when you want him to use racials? for example arcane torrent he uses at 70% something, I would like him to use it at 90% for maximum uptime.
also do you think u could add a checkbox for not doing divine lights, holy lights or eternal flame/word of glory during divine plea cast? I only want him to stack up holy powers(holy shock), would increase my regen + hps alot.
thanks!
new Decorator(
ret =>
Me.Combat &&
THSettings.Instance.SRacial && Me.ManaPercent < 90 &&
SpellManager.HasSpell("Arcane Torrent") && SpellManager.HasSpell("Holy Insight") &&
(Me.CurrentMap.IsDungeon || Me.CurrentMap.IsRaid) &&
SpellManager.Spells["Arcane Torrent"].CooldownTimeLeft.TotalMilliseconds <= MyLatency,
new Action(delegate
{
{
Logging.Write("Arcane Torrent");
CastSpell("Arcane Torrent", Me);
}
return RunStatus.Failure;
}))
using latest update on the SVN , and for some reason i cannot set Eternal Flame Blanket Moder higher than 1HP , last night it worked , could set it 1-2-3-4-5 , now only wants 0 or 1
TBH, I want power user get everything from CR but I also don't want to intimidate new user with 200 checkboxes and buttons
The current CR use Arcane Torrent on 70% mana when you are in raid/dungeon and it work fairly reasonable. I know you can code, if you want to change it, just do
Also for divine plea, it all about save mana in PvE and please use Glyph of Mana Plea, it a 5 sec cast and CR can not cast Divine Light/FoL or anything during that timeCode:new Decorator( ret => Me.Combat && THSettings.Instance.SRacial && Me.ManaPercent < 90 && SpellManager.HasSpell("Arcane Torrent") && SpellManager.HasSpell("Holy Insight") && (Me.CurrentMap.IsDungeon || Me.CurrentMap.IsRaid) && SpellManager.Spells["Arcane Torrent"].CooldownTimeLeft.TotalMilliseconds <= MyLatency, new Action(delegate { { Logging.Write("Arcane Torrent"); CastSpell("Arcane Torrent", Me); } return RunStatus.Failure; }))
![]()
Can you explain more, that the NumericUpDown for Mana requirement used for?
Getting my ass kicked by Discipline Priests on the meters right now.
Well i think for 9 sec mana plea, just use hot key to pause the bot action... because add new logic that watch over mana plea - a spell you will only use once very 2 min - will actually slow down performance and hurt everybodyi rewrote my post abit, hope that you could give it a quick lookyou dont actually need a checkbox for the divine plea, just add a "noheal" while having buff "Divine Plea", only use holy shock for maximizing holy powers,
that glyph is mentally retarded to be honest. and yeah the arcane torrent i could change manually.
Well currently, you have a NUD for each spell to say at what health to cast the heal spell. You could add another one next to that for each spell to say when your mana is greater than that value, but now that I think about it, it would require another health NUD to override the mana one.
This would make the GUI look a little more complicated, but for people like who me that raid a lot, this kind of functionality would make the ultimate CC.
Something like this:
![]()
I think i have solution for this WITH NO GUI.Well currently, you have a NUD for each spell to say at what health to cast the heal spell. You could add another one next to that for each spell to say when your mana is greater than that value, but now that I think about it, it would require another health NUD to override the mana one.
This would make the GUI look a little more complicated, but for people like who me that raid a lot, this kind of functionality would make the ultimate CC.
Something like this:
![]()
Well i think for 9 sec mana plea, just use hot key to pause the bot action... because add new logic that watch over mana plea - a spell you will only use once very 2 min - will actually slow down performance and hurt everybody
What do you think of my suggestion?