eat/drink when ooc? Minor ask and perhaps my settings are wrong but is there a way to enable eat/drink when ooc? good job on CC and thanks for reply.
HI Foolhardy. I'm at work right now but I know there are some eat/drink settings already implemented in the CC. I must admit I have them disabled because I use this primarily as a raiding tool so that feature isn't very battle tested. Please let me know if it isn't working like how you expect and I will make sure I get it working just right for you.
is it possible to add an "only mindspike" mode for questing. for example so if i?m shadow/disc or holy just mindspike/mindblast for making dailies using no dots in one situation , i had default option on "force shadow form", i used divine hymne for an emergency this was stopped and the bot chainged to shadowform interrupting the hymn. would you like to change this to force shadowform for making dmg, but if using divine hymn let this cast to the end and/or if something cast by the user he lets me cast it with higher priority with no clipping (if clipping is enabled) i checked in one rum za/zg all options for autotargeting off so i?ve seen if i target the mobs by myself he will always do singledps. if i had 15 mobs around he didnt do mindsear. so eventually an improvementoption: if all autotargeting is disabled and i target the "tank" (tank i choose in lazyraider) than use mindsear if target mob than cast normal rotation. more^^... is it possible to translate the altarboy options to german? i like to help you translating it so far this is n wonderful cc next week ill try this in raidsituation, firelands sry for my bad english^^
duh if you turn off auto targeting you gotta target ya self an it will dot each mob u target .. imo dont add 2 anything else to this cc .. or its gonna be full off 1000's lines of code .. it works perfect in lazy raider i avg around 80-90% in dps on 6/7 heroic 25man encounters with this so its by far sexy
This time tomorrow my priest will be 85. Ill be running as shadow for the simple fact that your CC looks like it will just shit on targets Once I get 359 or higher I should find a guild to join lol.
This is imposed by comparing your health value against the mobs. If the target's health is low enough and will die too quickly for DoT's to be effective, it will use the Mind Spike rotation. Please tell us what mobs you're finding that it still uses the standard rotation on and we'll look into tweaking the formula to better accommodate these situations. Please make sure you are on the latest revision. We noticed this behavior a while ago. I was under the impression that we had hotfixed this, but I'll double check when I get home. With auto-targeting off you want to manually target a friendly that is in combat (the tank). If there are enough mobs in range (specified in settings) will cast Mind Sear. Not at this time. Maybe down the road. I'm glad you're enjoying it! Let us know how that goes. Also, your English is fine. I had no trouble reading this.
Hey froggy, please be considerate of others in this thread. That also wasn't really the question that he asked. This is an ongoing project and we will continue to add to it as we feel is necessary. If performance becomes an issue, then we will try to find a viable solution ("Altarboy Light" maybe). I'd prefer to see your numbers closer to 95-99% but some of that is likely due to you rolling with a lower hit value and the issues we've had with Vampiric Touch. (If VT misses, then it will wait for another spell cast to complete before trying to apply again.) Regardless, I'm glad it's working well (enough) for you.
We've had a few mid-levels try it out (60-80) and it seemed to work well by most accounts. We just don't necessarily support levels below 85 because we haven't had a chance to thoroughly test those levels ourselves. We don't shit on targets, but we do violate them.
I cant get this to work could I have a little help please Could not compile CC from C:\Users\*******\Desktop\New folder (4)\CustomClasses\Altarboy! File: Line: 0 Error: ) expected File: Line: 0 Error: ) expected File: Line: 0 Error: ) expected File: Line: 0 Error: ; expected File: Line: 0 Error: ; expected File: Line: 0 Error: Invalid expression term ')' File: Line: 0 Error: ; expected File: Line: 0 Error: Invalid expression term ')' File: Line: 0 Error: ; expected File: Line: 0 Error: Invalid expression term ')' Initialization complete. Could not find a routine fitting for your class. Please make sure you have a proper combat class routine in your folder, and restart Honorbuddy.
Try deleting the ! in the Altarboy! folder name... I'm not sure if it is supposed to be with the ! or not, but just try it out.
Ok. Try this: Make a new HB folder, download HB (a new download) and install it in that new folder, install Altarboy! in the custom classes folder, and see if it still gives you this error. The download for the HB you need is this: http://www.thebuddyforum.com/downloads.php?do=file&id=151 It will only work on the [TEST] version, not on the release... Honorbuddy 2.0.0.5387
That's not good. I haven't worked enough with CC's for this, and I don't have my PC here to try to replicate it. Gonna have to wait for SpriestDev to get on and have a look. Sorry
same for me i have specific line for error now Could not compile CC from C:\Documents and Settings\Computer\Desktop\******\CustomClasses\AltarBoy! File: Altarboy.Shadowpriest.cs Line: 292 Error: ) expected File: Altarboy.Shadowpriest.cs Line: 292 Error: ) expected File: Altarboy.Shadowpriest.cs Line: 292 Error: ) expected File: Altarboy.Shadowpriest.cs Line: 292 Error: ; expected File: Altarboy.Shadowpriest.cs Line: 297 Error: ; expected File: Altarboy.Shadowpriest.cs Line: 300 Error: Invalid expression term ')' File: Altarboy.Shadowpriest.cs Line: 300 Error: ; expected File: Altarboy.Shadowpriest.cs Line: 300 Error: Invalid expression term ')' File: Altarboy.Shadowpriest.cs Line: 300 Error: ; expected File: Altarboy.Shadowpriest.cs Line: 302 Error: Invalid expression term ')'
Hopefully I found/fixed it... This is the file: View attachment Altarboy.Shadowpriest.cs I replaced: Code: //Mind flay when when you have nothing else to do.. Try and clip to account for lag. AltarboyComposites.CastSpell("Mind Flay", ret => ( Me.IsSafelyFacing(TargetManager.ActiveTarget) && (AuraManager.GetAuraTimeLeft("Mind Flay", TargetManager.ActiveTarget, true).TotalSeconds <= AltarboySettings.Instance.ClippingDuration) ), TargetManager.ActiveTarget) With this: Code: //Mind flay when when you have nothing else to do.. Try and clip to account for lag. AltarboyComposites.CastSpell("Mind Flay", ret => Me.IsSafelyFacing(TargetManager.ActiveTarget) && (AuraManager.GetAuraTimeLeft("Mind Flay", TargetManager.ActiveTarget, true).TotalSeconds <= AltarboySettings.Instance.ClippingDuration) ), TargetManager.ActiveTarget),